{ "info": { "author": "Amatino", "author_email": "hugh@amatino.io", "bugtrack_url": null, "classifiers": [ "Development Status :: 2 - Pre-Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3 :: Only", "Topic :: Office/Business :: Financial :: Accounting", "Topic :: Software Development :: Libraries" ], "description": "# Amatino Python\n\nAmatino is a double-entry accounting system. It provides double entry accounting as a service via an HTTP API. Amatino Python is a library for interacting with the Amatino API from within a Python application. By using Amatino Python, a Python developer can utilise Amatino services without needing to deal with raw HTTP requests.\n\n## About Amatino\n\nAmatino gives you a full set of tools to store, organise and retrieve financial information. You don't need to set up databases or write any of your own double-entry accounting logic. All you need is this library, an [Amatino account (Try free for two weeks!)](https://amatino.io/subscribe), and you are off and running.\n\n## Under construction\n\nRight now, the Amatino API offers a full range of accounting services via HTTP requests. However, this Amatino Python library is in an 'Alpha' state. Its capabilities are limited. A subset of full Amatino features are available.\n\nTo see what proportion of Amatino features are ready in Amatino Python, check out the [Documentation](https://github.com/amatino-code/amatino-python/wiki/Documentation) page. Linked classes are available, un-linked ones are still under construction.\n\n## Installation\n\nAmatino Python may be installed via [PIP](https://pypi.org/project/amatino/).\n\n````bash\n$ pip install amatino\n````\n\nTo use Amatino Python, you will need an active Amatino subscription. You can start a free trial at [https://amatino.io/subscribe](https://amatino.io/subscribe).\n\n## Example Usage\n\nThe first step is to login to Amatino by creating a [Session](https://github.com/amatino-code/amatino-python/wiki/Session) instance. That Session then becomes your key to using Amatino classes.\n\n```python\nfrom amatino import Session\n\nsession = Session.create_with_email(\n email='clever@cookie.com',\n secret='uncrackable epic passphrase!'\n)\n```\n\nAmatino stores financial data inside discrete [Entities](https://github.com/amatino-code/amatino-python/wiki/Entity). An Entity might describe a person, project, company, or some other entity which you wish to describe with financial data.\n\n```python\nfrom amatino import Entity\n\nmega_corporation = Entity.create(\n session=session, # Created above\n name='Mega Corporation'\n)\n```\n\nEntities are structured as a hierarchical tree of [Accounts](https://github.com/amatino-code/amatino-python/wiki/Account). You might wish to create a chart of Accounts that mirror the real-world structure of the Entity you are describing.\n\n```python\nfrom amatino import Account\n\nrevenue = Account.create(\n entity=mega_corporation, # Created above\n description='Revenue from world domination',\n am_type=AMType.revenue, # An AMType enumeration option\n denomination=USD # A GlobalUnit\n)\n```\n\nThe real fun begins with [Transactions](https://github.com/amatino-code/amatino-python/wiki/Transaction), where debits and credits come into play\n\n```python\nfrom amatino import Transaction, Entry, Side\nfrom datetime import datetime\nfrom decimal import Decimal\n\nrevenue_recognition = Transaction.create(\n entity=mega_corporation,\n time=datetime.utcnow(),\n entries=[\n Entry(Side.debit, Decimal(10), cash),\n Entry(Side.credit, Decimal(5), revenue),\n Entry(Side.credit, Decimal(5), customer_deposits)\n ]\n denomination=USD\n)\n```\n\nCheck out the full range of available classes, including Ledgers, in the [Amatino Python documentation](https://github.com/amatino-code/amatino-python/wiki/Documentation)\n\n## API stability & versioning\n\nAmatino Python obeys the [Semantic Version](https://semver.org) convention. Until v1.0.0, the Python API (not to be confused with the Amatino HTTP API) should be considered unstable and liable to change at any time.\n\n>**Watch out! API currently unstable!**\n\nYou can see available versions [in GitHub's releases section](https://github.com/amatino-code/amatino-python/releases) or [in PyPi's release history section](https://pypi.org/project/amatino/#history).\n\n## Tell us what your think/want/like/hate\n\nPlease join us on the [Amatino discussion forums](https://amatino.io/discussion) and give us your feedback. We would love to hear from you. Amatino is in its earliest stages of development, and your feedback will influence the direction it moves in.\n\nPull requests, comments, issues, forking, and so on are also [most welcome on Github](https://github.com/amatino-code/amatino-python)!\n\n## Useful links\n\n - [Amatino home](https://amatino.io)\n - [Development blog](https://amatino.io/blog)\n - [Development newsletter](https://amatino.io/newsletter)\n - [Discussion forum](https://amatino.io/discussion) \n - [More Amatino client libraries](https://github.com/amatino-code)\n - [HTTP Documentation](https://amatino.io/documentation)\n - [Python Documentation](https://github.com/amatino-code/amatino-python/wiki/Documentation)\n - [Billing and account management](https://amatino.io/billing)\n - [About Amatino Pty Ltd](https://amatino.io/about)\n\n## Get in contact\n\nTo quickly speak to a human about Amatino, [email hugh@amatino.io](mailto:hugh@amatino.io) or [yell at him on Twitter (@hugh_jeremy)](https://twitter.com/hugh_jeremy).\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://amatino.io", "keywords": "amatino api bindings accounting double-entry accounts library", "license": "", "maintainer": "", "maintainer_email": "", "name": "amatino", "package_url": "https://pypi.org/project/amatino/", "platform": "", "project_url": "https://pypi.org/project/amatino/", "project_urls": { "Development Newsletter": "https://amatino.io/newsletter", "Discuss": "https://amatino.io/discussion", "Getting Started Guide": "https://amatino.io/articles/getting-started", "Github Repository": "https://github.com/amatino-code/amatino-python", "Homepage": "https://amatino.io", "Subscribe": "https://amatino.io/subscribe", "Twitter": "https://twitter.com/amatinoapi" }, "release_url": "https://pypi.org/project/amatino/0.0.13/", "requires_dist": [ "typing" ], "requires_python": ">=3", "summary": "Bindings for the Amatino API, an accounting & financial data engine", "version": "0.0.13" }, "last_serial": 4993505, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "3fbe93c6e0a7997595ebe71e74bb2f2d", "sha256": "1de6c65d01262e18b4127b12a71ed52e2646a525ac5c60842d1e6675925607fe" }, "downloads": -1, "filename": "amatino-0.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "3fbe93c6e0a7997595ebe71e74bb2f2d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 15806, "upload_time": "2018-03-18T00:43:35", "url": "https://files.pythonhosted.org/packages/f6/6a/eeda288f70d07d0aaaefd3a5d87b962f4782a06168911fc9792e7e384d89/amatino-0.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b602e36e29ebedd5f5a6c746e65f55fb", "sha256": "d69056c9659b8bad112b4888a69ec154310983bea72f3d9aee783d4fa1477f80" }, "downloads": -1, "filename": "amatino-0.0.1.tar.gz", "has_sig": false, "md5_digest": "b602e36e29ebedd5f5a6c746e65f55fb", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 8937, "upload_time": "2018-03-18T00:43:37", "url": "https://files.pythonhosted.org/packages/b5/a9/31805adba942a550ab175b23775ee8e1cba2d6d7483e608be7230bb4489c/amatino-0.0.1.tar.gz" } ], "0.0.10": [ { "comment_text": "", "digests": { "md5": "f010ba564b421ed0b11675f1b33a1464", "sha256": "d8f411151c6d7751a1881c4e78316405c78f7e5946bd9bf2f9b32a596d95e865" }, "downloads": -1, "filename": "amatino-0.0.10-py3-none-any.whl", "has_sig": false, "md5_digest": "f010ba564b421ed0b11675f1b33a1464", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 74351, "upload_time": "2019-01-18T22:23:57", "url": "https://files.pythonhosted.org/packages/da/0b/ce68c15b8b5c958a799d48533a3874451bdcc3c3071259bda2ad6b7a87fc/amatino-0.0.10-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "81a465fd6bec3acc0822c60fda340880", "sha256": "7d0018b56adf9dc4f7c995e443d1f42e1db6fdae9df07a22b55622a466e3126f" }, "downloads": -1, "filename": "amatino-0.0.10.tar.gz", "has_sig": false, "md5_digest": "81a465fd6bec3acc0822c60fda340880", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 34519, "upload_time": "2019-01-18T22:24:01", "url": "https://files.pythonhosted.org/packages/f9/12/33fb44fb8536d935ea90b2b48388cee838b300d4ae26e80592f1932b3274/amatino-0.0.10.tar.gz" } ], "0.0.11": [ { "comment_text": "", "digests": { "md5": "bd1a29b116c6cde05431573ebb7d15c1", "sha256": "daa579997f6020d8d20f2c0af2476ec0c9cf51604ad15cd427a586b43cf376a1" }, "downloads": -1, "filename": "amatino-0.0.11-py3-none-any.whl", "has_sig": false, "md5_digest": "bd1a29b116c6cde05431573ebb7d15c1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 86270, "upload_time": "2019-03-18T07:00:55", "url": "https://files.pythonhosted.org/packages/ee/b9/2bed09043c111608bcb990341fa37760638c0dde9ccd4910a0356faae182/amatino-0.0.11-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "677e5569f565095f9c28a195fac8e40f", "sha256": "d45a55d9b2696ff033c184aecf3572b834aca9c1ccebe93231712acc16a0d452" }, "downloads": -1, "filename": "amatino-0.0.11.tar.gz", "has_sig": false, "md5_digest": "677e5569f565095f9c28a195fac8e40f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 41364, "upload_time": "2019-03-18T07:00:59", "url": "https://files.pythonhosted.org/packages/1d/7a/f4030e00d81f128862d378f394dce7a3757c2ff795806365755e87333561/amatino-0.0.11.tar.gz" } ], "0.0.12": [ { "comment_text": "", "digests": { "md5": "5d71700666524c19559162690e6ea958", "sha256": "3d133279d72e32fc84267faabefec96bc7f930332e3f53d8e5eb15e32cb580ff" }, "downloads": -1, "filename": "amatino-0.0.12-py3-none-any.whl", "has_sig": false, "md5_digest": "5d71700666524c19559162690e6ea958", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 88605, "upload_time": "2019-03-20T07:28:11", "url": "https://files.pythonhosted.org/packages/18/a5/c7d4b63f60cf28104fd2bb4cbd503388dc80a1c163c64b4ffee7b6172824/amatino-0.0.12-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3c588f9138c0ca5fd45e0fdd4fe81228", "sha256": "a603f72382f22c5a488a35c24a27544b32ef61399925f7b811caf591e01c60ae" }, "downloads": -1, "filename": "amatino-0.0.12.tar.gz", "has_sig": false, "md5_digest": "3c588f9138c0ca5fd45e0fdd4fe81228", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 42613, "upload_time": "2019-03-20T07:28:16", "url": "https://files.pythonhosted.org/packages/ac/93/844435b7fd511a06f5ed76469f04daf0691408449261acf5ab11b5e8657e/amatino-0.0.12.tar.gz" } ], "0.0.13": [ { "comment_text": "", "digests": { "md5": "d3781abb03e7dd64c36590dbf461889e", "sha256": "1a25ad0a644892f2d26937ba607b001abd7d3eb1d22831debdc3178319b905df" }, "downloads": -1, "filename": "amatino-0.0.13-py3-none-any.whl", "has_sig": false, "md5_digest": "d3781abb03e7dd64c36590dbf461889e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 94087, "upload_time": "2019-03-27T15:41:51", "url": "https://files.pythonhosted.org/packages/4f/67/fb16e6d041febf262256c381c22bd9a20611dc9ce10f478062a1c0e75b1c/amatino-0.0.13-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e0c97dfb35bac78e0fae3bdd0770f50e", "sha256": "eebe3d9c1bef56be57cfcdcc5c1d8a7fe435ad0b7d26a769637a75440d2cddb3" }, "downloads": -1, "filename": "amatino-0.0.13.tar.gz", "has_sig": false, "md5_digest": "e0c97dfb35bac78e0fae3bdd0770f50e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 45400, "upload_time": "2019-03-27T15:41:58", "url": "https://files.pythonhosted.org/packages/b1/0c/7121f89c1fb17cd6bdbadfee0d1597d136055663f7081266001ea0c3c152/amatino-0.0.13.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "1a04b1b07c8133d25e6da13bae9e18f6", "sha256": "5b4af2974c245b094101e5b5420b582d9ee04fa32775efb76c4a442c7822b3e4" }, "downloads": -1, "filename": "amatino-0.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "1a04b1b07c8133d25e6da13bae9e18f6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 20259, "upload_time": "2018-06-19T03:48:23", "url": "https://files.pythonhosted.org/packages/60/ab/8c4b73dbcfd5e877c0c11555e89a2d58913cc654f087a3ba670fecc32c9d/amatino-0.0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dd094550c1bff2346c9fbf5662d06c45", "sha256": "ce1f06b15500d14d5c1fb0ff68a41eaebfade37be6fe905d2878293338ca8bd5" }, "downloads": -1, "filename": "amatino-0.0.2.tar.gz", "has_sig": false, "md5_digest": "dd094550c1bff2346c9fbf5662d06c45", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 12673, "upload_time": "2018-06-19T03:48:25", "url": "https://files.pythonhosted.org/packages/56/e3/7241b7b91e57d642093012aa6e625a49c6934d79477260734cd96b4ae9ff/amatino-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "446425d0d7e43e200a0c3a27affb6ece", "sha256": "74b9580ddadda8078a73e0d6daaf4e6d03a2f2e4224aeefe64ac84304d48dc35" }, "downloads": -1, "filename": "amatino-0.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "446425d0d7e43e200a0c3a27affb6ece", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 19019, "upload_time": "2018-07-08T01:00:43", "url": "https://files.pythonhosted.org/packages/39/f6/7abe56c11c252b8e0ebf5d8d68fe4e7703cc102cd344130995de833ce34d/amatino-0.0.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1074437fd556d1aa1ac57e32555dcf82", "sha256": "d742cdad86f3e9981c1b704cdad9a2c7f3f17ce6212cd9ca42d753f7c2954085" }, "downloads": -1, "filename": "amatino-0.0.3.tar.gz", "has_sig": false, "md5_digest": "1074437fd556d1aa1ac57e32555dcf82", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 14053, "upload_time": "2018-07-08T01:00:45", "url": "https://files.pythonhosted.org/packages/7e/c2/d398923030ce0aa11139b9e2e4d0f7aa6b41513bbe2d17ca4b42bfaff91f/amatino-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "60d5a104d23641239abea9e9269039af", "sha256": "0f97325f1b6c06f41d5222810d1e13bbe65b5375e381961be784d1a690e83947" }, "downloads": -1, "filename": "amatino-0.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "60d5a104d23641239abea9e9269039af", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 19056, "upload_time": "2018-07-08T04:07:37", "url": "https://files.pythonhosted.org/packages/93/e9/18430e7f26d45c82be4d11e440a190288333ebda2e763f9852d60df85268/amatino-0.0.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4a594b4823eea2297b509f761004bcc8", "sha256": "b9ca0bf5f2be201d7cbd861c8040f49462498d0ade9f2548465d5efe2b9c9019" }, "downloads": -1, "filename": "amatino-0.0.4.tar.gz", "has_sig": false, "md5_digest": "4a594b4823eea2297b509f761004bcc8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 14117, "upload_time": "2018-07-08T04:07:40", "url": "https://files.pythonhosted.org/packages/76/77/73ded187d4038e8c804060f33f8c942f145b04f0004c3841062f5c30010e/amatino-0.0.4.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "d00ad321e64b71a4c44b5d45047bb6ff", "sha256": "a6d605136860f0ec6fb385cf422aa22ef864eae639246808bf91fdf967b848bb" }, "downloads": -1, "filename": "amatino-0.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "d00ad321e64b71a4c44b5d45047bb6ff", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 27975, "upload_time": "2018-07-08T04:47:20", "url": "https://files.pythonhosted.org/packages/d7/88/6e5a3735852edfd0a04866b138434f7f882fce59435d63ca1cf9a0d79482/amatino-0.0.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6fe1fda424ff5b3194b7d4f6350ac57c", "sha256": "eb59086071b58bb688ec9693cfc7f87f8a78a15b4443c66574d2938ad82d3770" }, "downloads": -1, "filename": "amatino-0.0.5.tar.gz", "has_sig": false, "md5_digest": "6fe1fda424ff5b3194b7d4f6350ac57c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 18115, "upload_time": "2018-07-08T04:47:23", "url": "https://files.pythonhosted.org/packages/a6/f7/68763e79e3b98287494c8a4ebf0d918efd5151e2db13c9e2be25eca1fba8/amatino-0.0.5.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "bd22f2758c256f44d351d6baeb5265ca", "sha256": "19c184ab8c806162f20dff4ec5653f4305e1ba1a89bff0bea873b8d718937ded" }, "downloads": -1, "filename": "amatino-0.0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "bd22f2758c256f44d351d6baeb5265ca", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 29628, "upload_time": "2018-07-08T07:14:03", "url": "https://files.pythonhosted.org/packages/44/c8/4ca05930ba57470583f591b4760f7c1ba316881efba6c9be6d4041f1f6b0/amatino-0.0.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "659be9fca0575a819acdec3d8835acc4", "sha256": "946768d9bd665bf9d217c684b8259f672a8b9a01c6d8b3a525fb97cbaa16c89e" }, "downloads": -1, "filename": "amatino-0.0.6.tar.gz", "has_sig": false, "md5_digest": "659be9fca0575a819acdec3d8835acc4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 18795, "upload_time": "2018-07-08T07:14:05", "url": "https://files.pythonhosted.org/packages/89/96/6d6aeabf7028910189fb18e09f35df5885a0d6d8640aea378f073bdedb29/amatino-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "5d557e63cfc08828a1d925cffa8fe377", "sha256": "a63bf593b79b5dbb994b2ccaf550b88af1f06086d3493271c2038036e30705a0" }, "downloads": -1, "filename": "amatino-0.0.7-py3-none-any.whl", "has_sig": false, "md5_digest": "5d557e63cfc08828a1d925cffa8fe377", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 69416, "upload_time": "2018-10-05T00:07:23", "url": "https://files.pythonhosted.org/packages/e7/77/c55f26810159821adeb98fea635d03afccd2e75fca9a6b3037d3f2980402/amatino-0.0.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cff9238095da6969c80c5cf34693c0ae", "sha256": "941ad7c82888fd386826c00b23c4feb0586980d81d015ec33b8757d04fffcba5" }, "downloads": -1, "filename": "amatino-0.0.7.tar.gz", "has_sig": false, "md5_digest": "cff9238095da6969c80c5cf34693c0ae", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 32247, "upload_time": "2018-10-05T00:07:24", "url": "https://files.pythonhosted.org/packages/4d/35/fb99088168250a71fff6fa7b2a1e1aabce859196b18dce9f6cbb88fd565d/amatino-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "f591dbb5c736b4f420c7f2992a205923", "sha256": "30f0ba3a500a570d2f48b584c618d9ae64ae81293b3b2b493469d408229f801d" }, "downloads": -1, "filename": "amatino-0.0.8-py3-none-any.whl", "has_sig": false, "md5_digest": "f591dbb5c736b4f420c7f2992a205923", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 74193, "upload_time": "2019-01-18T21:00:53", "url": "https://files.pythonhosted.org/packages/87/eb/e6cb74aa9980bde085b29726fd0395b0531fe68bfafceed4a42ad9c02542/amatino-0.0.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ab38135c6c2ef4591b8614fd030bd511", "sha256": "5a37b63961ecdd860675bd3e39a5349d7c29d7fae80714606fd39e10bb8b56ed" }, "downloads": -1, "filename": "amatino-0.0.8.tar.gz", "has_sig": false, "md5_digest": "ab38135c6c2ef4591b8614fd030bd511", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 34284, "upload_time": "2019-01-18T21:00:55", "url": "https://files.pythonhosted.org/packages/7e/75/ab8073e049e584ca08ed212effe9b180d66a9d5be158bea645a7deb44bac/amatino-0.0.8.tar.gz" } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "b225276dc18656bc86828fc14fbd7964", "sha256": "45adb51615246a828e3ad139d37b7174ebae74b7e5f6ae8a7a822b414f9fae45" }, "downloads": -1, "filename": "amatino-0.0.9-py3-none-any.whl", "has_sig": false, "md5_digest": "b225276dc18656bc86828fc14fbd7964", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 74243, "upload_time": "2019-01-18T21:13:30", "url": "https://files.pythonhosted.org/packages/34/74/435a59f28419e8a2a5aa6ff854b188da06b8b074a5da0e49aac6e4ac544f/amatino-0.0.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4b278976ba657aa930c1087281f42ed4", "sha256": "a4c93377a650f72bfd54112da8ef12276330bd1237419b077fa4d26aae209842" }, "downloads": -1, "filename": "amatino-0.0.9.tar.gz", "has_sig": false, "md5_digest": "4b278976ba657aa930c1087281f42ed4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 34419, "upload_time": "2019-01-18T21:13:33", "url": "https://files.pythonhosted.org/packages/60/be/ca003ff6383152eca778ba8e33299a56dde79b7de69f8accb58d999fa378/amatino-0.0.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "d3781abb03e7dd64c36590dbf461889e", "sha256": "1a25ad0a644892f2d26937ba607b001abd7d3eb1d22831debdc3178319b905df" }, "downloads": -1, "filename": "amatino-0.0.13-py3-none-any.whl", "has_sig": false, "md5_digest": "d3781abb03e7dd64c36590dbf461889e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 94087, "upload_time": "2019-03-27T15:41:51", "url": "https://files.pythonhosted.org/packages/4f/67/fb16e6d041febf262256c381c22bd9a20611dc9ce10f478062a1c0e75b1c/amatino-0.0.13-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e0c97dfb35bac78e0fae3bdd0770f50e", "sha256": "eebe3d9c1bef56be57cfcdcc5c1d8a7fe435ad0b7d26a769637a75440d2cddb3" }, "downloads": -1, "filename": "amatino-0.0.13.tar.gz", "has_sig": false, "md5_digest": "e0c97dfb35bac78e0fae3bdd0770f50e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 45400, "upload_time": "2019-03-27T15:41:58", "url": "https://files.pythonhosted.org/packages/b1/0c/7121f89c1fb17cd6bdbadfee0d1597d136055663f7081266001ea0c3c152/amatino-0.0.13.tar.gz" } ] }