{"id":17343135,"url":"https://github.com/quambene/taxel","last_synced_at":"2025-04-14T19:53:55.984Z","repository":{"id":49651777,"uuid":"501450558","full_name":"quambene/taxel","owner":"quambene","description":"CLI for the electronic balance sheet (eBilanz)","archived":false,"fork":false,"pushed_at":"2024-08-26T08:57:16.000Z","size":1804,"stargazers_count":13,"open_issues_count":0,"forks_count":1,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-03-28T08:12:11.158Z","etag":null,"topics":["bindings","cli","ebilanz","elster","eric"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/quambene.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","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":"2022-06-09T00:17:55.000Z","updated_at":"2024-08-26T08:56:22.000Z","dependencies_parsed_at":"2024-08-17T23:40:06.178Z","dependency_job_id":null,"html_url":"https://github.com/quambene/taxel","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quambene%2Ftaxel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quambene%2Ftaxel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quambene%2Ftaxel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quambene%2Ftaxel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/quambene","download_url":"https://codeload.github.com/quambene/taxel/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248952018,"owners_count":21188421,"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":["bindings","cli","ebilanz","elster","eric"],"created_at":"2024-10-15T16:08:33.678Z","updated_at":"2025-04-14T19:53:55.961Z","avatar_url":"https://github.com/quambene.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Taxel\n\n[![build status](https://github.com/quambene/taxel/actions/workflows/ci.yml/badge.svg)](https://github.com/quambene/taxel/actions/workflows/ci.yml)\n\nTaxel provides a command line interface (CLI) to generate the electronic balance\nsheet (eBilanz) in the XBRL format.\n\n![Taxel mockup](/mockup.png)\n\nGenerate an XML file in the XBRL standard from a CSV file with tax and accounting\ndata; validate and send the XBRL document to tax authorities.\n\nSupported features:\n\n- [x] eBilanz\n\n---\n\n- [What is eBilanz?](#what-is-ebilanz)\n- [Install Taxel](#install-taxel)\n- [Usage](#usage)\n- [Testing](#testing)\n- [Rust bindings and SDK for the ELSTER Rich Client (ERiC)](#rust-bindings-and-sdk-for-the-elster-rich-client-eric)\n\n## What is eBilanz?\n\neBilanz (short for _Elektronische Bilanz_) is the electronic transmission of the company balance sheet and P\u0026L in a standardized format (XBRL) to the tax authorities in the context of tax declaration.\n\n## Install Taxel\n\n``` bash\ngit clone git@github.com:quambene/taxel.git\ncd taxel\n\n# Build and install taxel binary to ~/.cargo/bin\ncargo install --path ./taxel-cli\n```\n\n_Note:_ Run `cargo install --path ./taxel-cli` again to update to the latest version. Uninstall the binary with `cargo uninstall taxel`.\n\n## Usage\n\n``` bash\n# Extract values from xml file\ntaxel extract \\\n    --xml-file \"my_ebilanz.xml\" \\\n    --output-file \"my_ebilanz.csv\"\n\n# Generate xml file from csv file\ntaxel generate \\\n     --csv-file \"my_ebilanz.csv\" \\\n     --template-file \"templates/elster_v11_ebilanz_v6.5_test.xml\" \\\n     --output-file \"my_bilanz.xml\"\n\n# Validate xml file\ntaxel validate \\\n    --tax-type \"Bilanz\" \\\n    --tax-version 6.4 \\\n    --xml-file \"my_tax_data.xml\"\n\n# Validate xml file and print confirmation as pdf file\ntaxel validate \\\n    --tax-type \"Bilanz\" \\\n    --tax-version 6.4 \\\n    --xml-file \"my_tax_data.xml\" \\\n    --print \"my_eBilanz.pdf\"\n\n# Send xml file to tax authorities\ntaxel send \\\n    --tax-type \"Bilanz\" \\\n    --tax-version 6.4 \\\n    --xml-file \"my_tax_data.xml\" \\\n\n# Send xml file to tax authorities and print confirmation as pdf file\ntaxel send \\\n    --tax-type \"Bilanz\" \\\n    --tax-version 6.4 \\\n    --xml-file \"my_tax_data.xml\" \\\n    --print \"my_eBilanz.pdf\"\n```\n\n## Testing\n\n``` bash\n# Run unit tests for taxel-cli\ncargo test -p taxel-cli\n\n# Run integration tests for taxel-cli\ncargo test -p taxel-cli --test '*' --features integration-test -- --test-threads=1\n\n# Run integration tests for taxel-cli in release mode\ncargo test -p taxel-cli --release --test '*' --features integration-test -- --test-threads=1\n\n# Run unit tests for taxel-xml\ncargo test --lib -p taxel-xml\n\n# Run unit tests for taxel-py\ncd taxel-py\npytest -v -m unit\n```\n\n## Rust bindings and SDK for the ELSTER Rich Client (ERiC)\n\nRust bindings and SDK for ERiC were moved to \u003chttps://github.com/quambene/eric-rs\u003e.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquambene%2Ftaxel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fquambene%2Ftaxel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquambene%2Ftaxel/lists"}