Re: bean-identify, bean-extract, bean-file

2024-10-29 Thread Petr Beránek
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

Re: bean-identify, bean-extract, bean-file

2024-10-29 Thread Martin Blais
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

Re: bean-identify, bean-extract, bean-file

2024-10-29 Thread Jason Crews (the1gofer)
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

Re: bean-identify, bean-extract, bean-file

2024-10-29 Thread Martin Blais
+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

Re: bean-identify, bean-extract, bean-file

2024-10-29 Thread Jason Crews (the1gofer)
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

Re: bean-identify, bean-extract, bean-file

2024-10-29 Thread Jason Crews (the1gofer)
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:

Re: bean-identify, bean-extract, bean-file

2024-10-29 Thread Martin Blais
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

Re: bean-identify, bean-extract, bean-file

2024-10-29 Thread 'Xiaowen Hu' via Beancount
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

Re: bean-identify, bean-extract, bean-file

2024-10-29 Thread Xiaowen Hu
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