Hi,
pipx is useful if you just want to install beancount and fava as
standalone, isolated apps. However, if you want to implement your own
importers or plugins (e.g. using frameworks like beangulp or
beancount_reds_importers), then you need to install beancount, beangulp
etc. as libraries (to be a
I'm not sure what you mean by a "parser" but when you install Beancount
using pip it should install a `bean-check` tool which you can use to
validate your input file. You can then use beanquery and/or Fava to get
reports out of it.
On Mon, Oct 28, 2024 at 8:27 PM Jason Crews (the1gofer) <
jason.c
At this point I think it's wiser to just write a script on my own
Jason Crews
On Tue, Oct 29 2024 at 11:52 AM, Petr Beránek < petrberanekm...@gmail.com >
wrote:
>
> Hi,
>
>
> pipx is useful if you just want to install beancount and fava as
> standalone, isolated apps. However, if you want to
+1 to that
On Tue, Oct 29, 2024 at 3:05 PM Jason Crews (the1gofer) <
jason.cr...@gmail.com> wrote:
> At this point I think it's wiser to just write a script on my own
>
> Jason Crews
>
> On Tue, Oct 29 2024 at 11:52 AM, Petr Beránek
> wrote:
>
>> Hi,
>>
>> pipx is useful if you just want to ins
Parser… a way tool to parse csv.
Jason Crews
On Tue, Oct 29 2024 at 8:26 AM, Martin Blais < bl...@furius.ca > wrote:
>
> I'm not sure what you mean by a "parser" but when you install Beancount
> using pip it should install a `bean-check` tool which you can use to
> validate your input file. You
Well I was instructed to use pipx for bean count and fava so I assumed.
Jason Crews
On Tue, Oct 29 2024 at 8:50 AM, Jason Crews < jason.cr...@gmail.com > wrote:
>
> Parser… a way tool to parse csv.
>
>
> Jason Crews
>
> On Tue, Oct 29 2024 at 8:26 AM, Martin Blais < bl...@furius.ca > wrote:
Oh I see you mean the importers.
Here is an example setup:
https://github.com/beancount/beangulp/tree/master/examples
On Tue, Oct 29, 2024 at 11:50 AM Jason Crews (the1gofer) <
jason.cr...@gmail.com> wrote:
> Parser… a way tool to parse csv.
>
> Jason Crews
>
> On Tue, Oct 29 2024 at 8:26 AM, M
Hi Jason,
I haven't used `pipx` much, but for my setup, running `pip install .`
from the root directory worked without issues. I also tried `pipx
install .`, and that worked fine as well.
The installation process might vary depending on your distro, as Python
environments can be a bit tricky some
Hi Jason,
I'm not very familiar with pipx, but on my setup, I simply used
`pip install .` from the root directory, which worked fine. However, the
installation method may vary depending on your distribution.
(E.g., on Arch I need `--break-system-packages`).
There are some example files in beang