{ "info": { "author": "Alin BARBATEI", "author_email": "", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3" ], "description": "# bankreader\n\nA light bank statement reader/parser. The project is oriented towards Romanian banks statements.\nInput for the reader is the `already exported data` from your bank of choice, the library will not support web interaction with bank APIs (if existing). At least not in the foreseeable future.\n\nThe project is still new and may suffer API modifications.\n\nCurrently there is support only for the *Romanian Raiffeisen .xls statements*.\n\n### Example\n\n```python\nfrom bankreader.romania import RaiffeisenStatement\nimport os\n\nstatement_xls_path = os.path.join('test', 'statements', 'Extras_de_cont_12345678_20012018_31012018.xls')\n\nstatement = RaiffeisenStatement(xls_path=statement_xls_path)\n\nprint(statement.account_number)\nprint(statement.client.iban)\nprint(statement.client.client_address)\n\nfor transaction in statement.transactions:\n print(transaction.amount)\n print(transaction.description)\n print(transaction.is_income)\n```\n\nOther examples can be seen in the tests.", "description_content_type": "text/markdown", "docs_url": null, "download_url": "https://github.com/abarbatei/bankreader/archive/0.2.2.tar.gz", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/abarbatei/bankreader", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "bankreader", "package_url": "https://pypi.org/project/bankreader/", "platform": "", "project_url": "https://pypi.org/project/bankreader/", "project_urls": { "Download": "https://github.com/abarbatei/bankreader/archive/0.2.2.tar.gz", "Homepage": "https://github.com/abarbatei/bankreader" }, "release_url": "https://pypi.org/project/bankreader/0.2.2/", "requires_dist": null, "requires_python": "", "summary": "Romanian banks statement parser", "version": "0.2.2" }, "last_serial": 4500605, "releases": { "0.2.2": [ { "comment_text": "", "digests": { "md5": "79a6a00c02479cd6f936a28adf5ccc36", "sha256": "b94dcf2ca8bbfabd73d6f8aa1841fb626b7d3e78d7dae8bcab1a43d35d742fcd" }, "downloads": -1, "filename": "bankreader-0.2.2.tar.gz", "has_sig": false, "md5_digest": "79a6a00c02479cd6f936a28adf5ccc36", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6937, "upload_time": "2018-11-18T20:16:46", "url": "https://files.pythonhosted.org/packages/7c/d4/aa86adafba1792ec931423e5c7bb00cff56169d7da2b32ba881952acf2c4/bankreader-0.2.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "79a6a00c02479cd6f936a28adf5ccc36", "sha256": "b94dcf2ca8bbfabd73d6f8aa1841fb626b7d3e78d7dae8bcab1a43d35d742fcd" }, "downloads": -1, "filename": "bankreader-0.2.2.tar.gz", "has_sig": false, "md5_digest": "79a6a00c02479cd6f936a28adf5ccc36", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6937, "upload_time": "2018-11-18T20:16:46", "url": "https://files.pythonhosted.org/packages/7c/d4/aa86adafba1792ec931423e5c7bb00cff56169d7da2b32ba881952acf2c4/bankreader-0.2.2.tar.gz" } ] }