{"id":13522653,"url":"https://github.com/siddhantgoel/beancount-ing","last_synced_at":"2025-04-10T13:30:52.887Z","repository":{"id":38429524,"uuid":"142293785","full_name":"siddhantgoel/beancount-ing","owner":"siddhantgoel","description":" Beancount Importers for ING (Germany) CSV Exports","archived":false,"fork":false,"pushed_at":"2024-04-29T12:44:06.000Z","size":712,"stargazers_count":18,"open_issues_count":2,"forks_count":9,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-05-02T02:15:28.789Z","etag":null,"topics":["accounting","banking","beancount","beancount-importers","finance","germany","ing","personal-finance","plaintext-accounting","python3"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/siddhantgoel.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-07-25T11:59:52.000Z","updated_at":"2024-05-12T17:37:53.273Z","dependencies_parsed_at":"2023-10-11T17:51:24.876Z","dependency_job_id":"e58f89c1-559e-48bb-93c5-3ac82e09df61","html_url":"https://github.com/siddhantgoel/beancount-ing","commit_stats":{"total_commits":240,"total_committers":7,"mean_commits":"34.285714285714285","dds":0.6791666666666667,"last_synced_commit":"3c38f2a8e1c996acd694fe80a0e90a17a148739c"},"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siddhantgoel%2Fbeancount-ing","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siddhantgoel%2Fbeancount-ing/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siddhantgoel%2Fbeancount-ing/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siddhantgoel%2Fbeancount-ing/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/siddhantgoel","download_url":"https://codeload.github.com/siddhantgoel/beancount-ing/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248225707,"owners_count":21068078,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["accounting","banking","beancount","beancount-importers","finance","germany","ing","personal-finance","plaintext-accounting","python3"],"created_at":"2024-08-01T06:00:50.711Z","updated_at":"2025-04-10T13:30:52.872Z","avatar_url":"https://github.com/siddhantgoel.png","language":"Python","funding_links":[],"categories":["Importers"],"sub_categories":["Germany"],"readme":"# Beancount ING Importer\n\n[![image](https://github.com/siddhantgoel/beancount-ing/workflows/beancount-ing/badge.svg)](https://github.com/siddhantgoel/beancount-ing/workflows/beancount-ing/badge.svg)\n\n[![image](https://img.shields.io/pypi/v/beancount-ing.svg)](https://pypi.python.org/pypi/beancount-ing)\n\n[![image](https://img.shields.io/pypi/pyversions/beancount-ing.svg)](https://pypi.python.org/pypi/beancount-ing)\n\n[![image](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n\n`beancount-ing` provides an Importer for converting CSV exports of\n[ING] (Germany) account summaries to the [Beancount] format.\n\n## Installation\n\n```sh\n$ pip install beancount-ing\n```\n\nIn case you prefer installing from the Github repository, please note that\n`main` is the development branch so `stable` is what you should be installing\nfrom.\n\n## Usage\n\nIf you're not familiar with how to import external data into Beancount, please\nread [this guide] first.\n\n### Beancount 3.x\n\nBeancount 3.x has replaced the `config.py` file based workflow in favor of having a\nscript based workflow, as per the [changes documented here]. The `beangulp` examples\nsuggest using a Python script based on `beangulp.Ingest`. Here's an example of how that\nmight work:\n\n\nAdd an `import.py` script in your project root with the following contents:\n\n```python\nfrom beancount_ing import ECImporter\nfrom beangulp import Ingest\n\nimporters = (\n    ECImporter(\n        IBAN_NUMBER,\n        \"Assets:ING:EC\",\n        \"Erika Mustermann\",\n        file_encoding=\"ISO-8859-1\",\n    ),\n)\n\nif __name__ == \"__main__\":\n    ingest = Ingest(importer)\n    ingest()\n```\n\n... and run it directly using `python import.py extract`.\n\n### Beancount 2.x\n\nAdjust your [config file] to include the provided `ECImporter`. A sample configuration\nmight look like the following:\n\n```python\nfrom beancount_ing import ECImporter\n\nCONFIG = [\n    # ...\n\n    ECImporter(\n        IBAN_NUMBER,\n        \"Assets:ING:EC\",\n        \"Erika Mustermann\",\n        file_encoding=\"ISO-8859-1\",\n    ),\n\n    # ...\n]\n```\n\nOnce this is in place, you should be able to run `bean-extract` on the command\nline to extract the transactions and pipe all of them into your Beancount file.\n\n```sh\n$ bean-extract /path/to/config.py transaction.csv \u003e\u003e you.beancount\n```\n\n## Contributing\n\nContributions are most welcome!\n\nPlease make sure you have Python 3.9+ and [Poetry] installed.\n\n1. Clone the repository: `git clone https://github.com/siddhantgoel/beancount-ing`\n2. Install the packages required for development: `poetry install`\n3. That's basically it. You should now be able to run the test suite: `poetry\n   run pytest tests/`.\n\n[Beancount]: http://furius.ca/beancount/\n[ING]: https://www.ing.de/\n[Poetry]: https://python-poetry.org/\n[changes documented here]: https://docs.google.com/document/d/1O42HgYQBQEna6YpobTqszSgTGnbRX7RdjmzR2xumfjs/edit#heading=h.hjzt0c6v8pfs\n[config file]: https://beancount.github.io/docs/importing_external_data.html#configuration\n[this guide]: https://beancount.github.io/docs/importing_external_data.html\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsiddhantgoel%2Fbeancount-ing","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsiddhantgoel%2Fbeancount-ing","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsiddhantgoel%2Fbeancount-ing/lists"}