{ "info": { "author": "Javier Novoa C.", "author_email": "jstitch@gmail.com", "bugtrack_url": null, "classifiers": [], "description": "\n.. image:: https://travis-ci.org/jstitch/MambuPy.svg?branch=master\n :target: https://travis-ci.org/jstitch/MambuPy\n :alt: Build Status\n\n\nMambuPy\n=======\n\nA python API for using Mambu.\n-----------------------------\n\nAllows accessing Mambu via its REST API. Also includes SQLAlchemy\nmappings to a backup of its DataBase.\n\nMambu is a cloud platform which lets you rapidly build, integrate,\nlaunch and service any lending portfolio into any market\n(https://www.mambu.com).\n\nMambu REST API\n^^^^^^^^^^^^^^\n\nMambu allows communicating via a RESTful API (documented at\nhttps://developer.mambu.com/).\n\nMambuPy includes a set of classes whose purpose is connecting to this\nREST Api and work with Mambu entities on your python scripts.\n\nYou must configure your Mambu account for allowing an API user to\nconnect with it for this functionality to work.\n\nFor more information, look at the MambuStruct class and all the\nclasses inheriting from it. MambuPy implements this at all the scripts\nnamed ``mambu*.py``\n\nMambu Database Backup\n^^^^^^^^^^^^^^^^^^^^^\n\nMambu also allows their users to download a dump of its database. It\nis a MySQL schema, documented at https://developer.mambu.com.\n\nMambuPy includes a set of SQLAlchemy mappings that can connect to\nthe Mambu database dump.\n\nYou must download a valid dump of your Mambu database, and then\nextract and restore on a local MySQL server of your own for this\nfunctionality to work.\n\nFor more information, look at the scripts named ``schema*.py``\n\nInstallation\n^^^^^^^^^^^^\n\nCurrently MambuPy works on Python 2.7 and Python 3.6\n\nYou may install MambuPy by git-cloning this repository on your local\nenvironment and making it available anywhere on your ``PYTHONPATH``.\n\nYou may also use ``pip install mambupy`` but please consider that you\nmust configure your installation before using it.\n\nConfiguration\n^^^^^^^^^^^^^\n\nYou must configure your local MambuPy environment first so you can\ncorrectly use this module.\n\nLook at ``mambuconfig.py`` for more information.\n\nWork in progress\n^^^^^^^^^^^^^^^^\n\nMambuPy is a work in progress, on a very early stage of its\ndevelopment.\n\nCurrently it allows a limited connection to some of the more important\nMambu entitites accessible via its REST API.\n\nAlso, not all of the Mambu Database schema is currently mapped.\n\nFinally, also note that Mambu itself delivers changes on a regular\nbasis that may include new functionality on its REST API, and changes\non its database tables. Currently MambuPy works with the last version\nof Mambu but NOT ALL of its functionality is implemented. Making a\ncomplete implementation of the REST API and the mapping of the\nDatabase, and keeping them up to date with the last version of Mambu,\nis one of the main objectives of the MambuPy project.\n\nPlease consider supporting the project by forking, improving and\npull-requesting it.\n\nTODOs\n~~~~~\n\nTODO comments for hackers are included at:\n\n\n* TODO file\n* pydoc string at ``__init__.py``\n* pydoc strings all around the code\n\nRelease Notes\n~~~~~~~~~~~~~\n\n\n* v0.8 first release notes 2018-04-20\n\n * implementation of PATCH request method on MambuStruct\n * implementation of MambuTask entity and MambuTasks iterable\n * v0.8.1 and v0.8.2 are identical to v0.8.1\n\n* v0.8.3 2018-05-22\n\n * MambuStruct convertDict2Attrs constantFields added 'email'\n * mambuuser unittests\n * mamburoles module\n * MambuUser setRoles() method\n * MambuTask close() method\n\n* v0.8.4 2018-07-18\n\n * Sphinx documentation and ReadTheDocs site\n\n* v0.9.0 2018-08-06\n\n * reallocation of modules in packages according to functionality\n\n* v1.0.0 2018-08-31\n\n * support for Python 3 ready!\n\n* v1.1.0 2018-12-16\n\n * config parsers for a better configuration of MambuPy\n\n* v1.1.1 2018-12-17\n\n * argparse to override configuration of MambuPy from command line\n\n* v1.2.0 2019-01-21\n\n * MambuStruct now holds a copy of the args and kwargs originally\n passed to the constructor, so they may be reused on future calls\n of connect() method\n\n* v1.2.1 2019-02-18\n\n * MambuStruct catches correctly requests errors and throws\n MambuCommError only on that cases. Any other exception is\n re-raised again.\n\n* v1.2.2 2019-02-19\n\n * gettasksurl now support limit and offset params\n\n* v1.3.0 2019-03-06\n\n * orm schema_tasks script added.\n * rest added properties to each Mambmu entity to support\n instantiation of attributes with a default related-entity class,\n allowing overriding this with your own related-entity classes.\n\n* v1.3.1 2019-03-15\n\n * bugfix on MambuStruct.\\ **init**\\ , urlfunc parameter should be\n treated almost at the end\n\n* v1.3.2 2019-03-27\n\n * get method for dict-like MambuStructs\n\n* v1.3.3 2019-05-01\n\n * AllMambuProducts singleton py3 compatibility\n\n* v1.3.4 2019-05-16\n\n * add support for DELETE method on MambuStruct connect()\n\n* v1.3.5 2019-05-28\n\n * add Mambu Savings related entities (unit test still TODO)\n\n* v1.3.6 2019-06-11\n\n * MambuStruct convertDict2Attrs constantFields added 'description'\n\n* v1.3.7 2019-07-30\n\n * Auth paramos for backup_db func were incorrectly set\n\n* v1.3.8 2019-08-26\n\n * change import builtins for unicode to a more generic way of\n importing it\n\nAuthor\n^^^^^^\n\nJNC\njstitch@gmail.com\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://mambupydocs.readthedocs.io", "keywords": "mambu", "license": "GPLv3", "maintainer": "", "maintainer_email": "", "name": "MambuPy", "package_url": "https://pypi.org/project/MambuPy/", "platform": "", "project_url": "https://pypi.org/project/MambuPy/", "project_urls": { "Homepage": "https://mambupydocs.readthedocs.io" }, "release_url": "https://pypi.org/project/MambuPy/1.3.8/", "requires_dist": null, "requires_python": ">=2.7", "summary": "A python lib for using Mambu APIs.", "version": "1.3.8" }, "last_serial": 5733700, "releases": { "0.2": [ { "comment_text": "", "digests": { "md5": "889d9f186f0dee138140229e37aaafd7", "sha256": "ea74e93423a735356b3ff24c37a00cc4d52ff93df21314118b449c47697d2f90" }, "downloads": -1, "filename": "MambuPy-0.2-py2-none-any.whl", "has_sig": false, "md5_digest": "889d9f186f0dee138140229e37aaafd7", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 40628, "upload_time": "2015-07-13T03:59:55", "url": "https://files.pythonhosted.org/packages/48/3b/514f9353c89e0474ca6325027b05b0914fcc1ab1e56c59ebbbf9d489f12b/MambuPy-0.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b3282bbf2f38aca6caeebffc3e48737d", "sha256": "dbf2fdf41390fc568d7d406022bf32853c7ea7f69ff8b698a9dfcb291f7c403f" }, "downloads": -1, "filename": "MambuPy-0.2.tar.gz", "has_sig": false, "md5_digest": "b3282bbf2f38aca6caeebffc3e48737d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29440, "upload_time": "2015-07-13T03:39:18", "url": "https://files.pythonhosted.org/packages/db/65/e215afda745030e6d98e6f51ff49edceddeace86003e2f474e7ba427b07e/MambuPy-0.2.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "090a8351025d8f0b105308be1d8211ea", "sha256": "49ccc220d269917d4418c992ba410ead4abb23c757323f939b13ae496cf1db37" }, "downloads": -1, "filename": "MambuPy-0.2.1-py2-none-any.whl", "has_sig": false, "md5_digest": "090a8351025d8f0b105308be1d8211ea", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 40692, "upload_time": "2015-07-23T23:56:11", "url": "https://files.pythonhosted.org/packages/8f/de/2ce5133b2b75f5439b9fceee2a87509d0a7a5878fae022f300fd923a6528/MambuPy-0.2.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8bed60b24f437ae04312ec1e1918ada5", "sha256": "91cb7d294a3a48ab2d65d45dc059a328ec7fc3707795e0b4bec2d78a3ceedfe3" }, "downloads": -1, "filename": "MambuPy-0.2.1.tar.gz", "has_sig": false, "md5_digest": "8bed60b24f437ae04312ec1e1918ada5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29495, "upload_time": "2015-07-23T23:55:51", "url": "https://files.pythonhosted.org/packages/5f/19/aa6fc026bad5c9f7d89eab2d142593bdf21319711b7c84cd63332c053f59/MambuPy-0.2.1.tar.gz" } ], "0.2.1.post1": [ { "comment_text": "", "digests": { "md5": "23bf62abeb5d94dda43eda5226111a1d", "sha256": "2dedd0b8c0057616d5edaa5da577ed01acdc4bb38194db5fa7575194ca3442ef" }, "downloads": -1, "filename": "MambuPy-0.2.1.post1-py2-none-any.whl", "has_sig": false, "md5_digest": "23bf62abeb5d94dda43eda5226111a1d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 40821, "upload_time": "2015-07-27T22:03:24", "url": "https://files.pythonhosted.org/packages/40/23/3a9c1b329349f461cd2ba390b1756e80d4dfb52976e352acfe80df765358/MambuPy-0.2.1.post1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8ed4b0243779327f3acac95775bb8763", "sha256": "f6047e7d2b4379b8870fb6aadb4ff5d70e7f5432606528a52db434202d6eded9" }, "downloads": -1, "filename": "MambuPy-0.2.1.post1.tar.gz", "has_sig": false, "md5_digest": "8ed4b0243779327f3acac95775bb8763", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29548, "upload_time": "2015-07-27T22:02:57", "url": "https://files.pythonhosted.org/packages/8b/b9/d4183284a14b6abb8d67f0ec11c4caff80725beb86666069dee313b20263/MambuPy-0.2.1.post1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "6a058aaf4b8281d87b693b9f497690c8", "sha256": "ae6926b883008762ce4dd2139af5079effe40ca387ae2b02c514ad97c8a6cfa4" }, "downloads": -1, "filename": "MambuPy-0.2.2-py2-none-any.whl", "has_sig": false, "md5_digest": "6a058aaf4b8281d87b693b9f497690c8", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 40918, "upload_time": "2015-08-05T15:45:04", "url": "https://files.pythonhosted.org/packages/aa/a9/b79e2557f6279ddb3dc56fd691408d175aea7e00bc8c325283e72d0e540c/MambuPy-0.2.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6e1f528bd0fd5d5c8d847223e1dffae5", "sha256": "ccbfd18c5a62a6fcc3791272afe3774083f713a82775642893292c5d9850739b" }, "downloads": -1, "filename": "MambuPy-0.2.2.tar.gz", "has_sig": false, "md5_digest": "6e1f528bd0fd5d5c8d847223e1dffae5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29765, "upload_time": "2015-08-05T15:44:53", "url": "https://files.pythonhosted.org/packages/88/71/2784a6d264eaa367c9f8b63ed5d0ebc8851de6941176c508f3f1f01b4385/MambuPy-0.2.2.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "b51f452bf2a090cb07bb174f69738774", "sha256": "804dcb37bf81e49bcef8e2b6e66d522cf6af792ec8dbaeaea89d054c1e394bc7" }, "downloads": -1, "filename": "MambuPy-0.4-py2-none-any.whl", "has_sig": false, "md5_digest": "b51f452bf2a090cb07bb174f69738774", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 44370, "upload_time": "2016-01-29T23:02:21", "url": "https://files.pythonhosted.org/packages/1f/1c/62d91791c50808b57a5558289dba461e532e14e54cdc97bb2b609d87c8b8/MambuPy-0.4-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "70c73884817760714a2bf009c209f657", "sha256": "847c8349360e765ed9dd19dc955916724b8dd03d8ff3b5e359dd92fe10e5f4c5" }, "downloads": -1, "filename": "MambuPy-0.4.tar.gz", "has_sig": false, "md5_digest": "70c73884817760714a2bf009c209f657", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32250, "upload_time": "2016-01-29T23:01:29", "url": "https://files.pythonhosted.org/packages/ee/a0/81bf0a5ec3db3fb5ce81178bee45d6125c823ded90f2ff6bfe08b429d23c/MambuPy-0.4.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "b10921e669c9a9f49585862a8b876765", "sha256": "540e89f3900baee10210196bb70754599bba4474163d3785c0ff521d9b848ebc" }, "downloads": -1, "filename": "MambuPy-0.5-py2-none-any.whl", "has_sig": false, "md5_digest": "b10921e669c9a9f49585862a8b876765", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 46680, "upload_time": "2016-04-08T21:44:33", "url": "https://files.pythonhosted.org/packages/a7/2b/515fcde02a06bcb8ddbd5acc53679f776b1c130350e042dbc9477e6fe0b7/MambuPy-0.5-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cd91a83a256cba7d5532488bbdb5f465", "sha256": "5eee2d07a7f9541ee33c8fc422ff55f52decf76552a64bf95cd1fdd9ba915560" }, "downloads": -1, "filename": "MambuPy-0.5.tar.gz", "has_sig": false, "md5_digest": "cd91a83a256cba7d5532488bbdb5f465", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33609, "upload_time": "2016-04-08T21:43:18", "url": "https://files.pythonhosted.org/packages/ed/e9/c26b32c90a2f25151fa96e5610f6ff3ac9595288bb0310f4512c57a1db88/MambuPy-0.5.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "ffbc5ffbc368e9f764a1ebbff5d8bfc0", "sha256": "de598dc3adc620a3d011f8ef1a4f66fcc7401d7effd8c7c686b85d9cd3b9f66e" }, "downloads": -1, "filename": "MambuPy-0.6-py2-none-any.whl", "has_sig": false, "md5_digest": "ffbc5ffbc368e9f764a1ebbff5d8bfc0", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 63459, "upload_time": "2017-11-21T22:45:36", "url": "https://files.pythonhosted.org/packages/9c/ca/2010a51b72d2581be15a509dfd294cfc8b23d07de4b8247cbeb33ff2e587/MambuPy-0.6-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "eb6e9c59ff3f18065d16d0ea81347166", "sha256": "c125cfaf3ef0fc78d660aca6b9ba59315f9b57c4077448bc0d9e9d7e1965de81" }, "downloads": -1, "filename": "MambuPy-0.6.tar.gz", "has_sig": false, "md5_digest": "eb6e9c59ff3f18065d16d0ea81347166", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48250, "upload_time": "2017-11-21T22:45:25", "url": "https://files.pythonhosted.org/packages/a6/05/16c9fd2a612e7bb08cec834df0cccbcdc2dba29ebafb0ac49515dc62c8df/MambuPy-0.6.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "08900d93e53a0e62186219a920901311", "sha256": "9d31a16d639e83944057a236429837a2f67c7d12159311d333507c7d577c506e" }, "downloads": -1, "filename": "MambuPy-0.6.1-py2-none-any.whl", "has_sig": false, "md5_digest": "08900d93e53a0e62186219a920901311", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 64034, "upload_time": "2017-12-12T00:28:06", "url": "https://files.pythonhosted.org/packages/08/79/732aeeb701d0011206793978a7af33c3eb895cfa1afcbb9d960ad26308c5/MambuPy-0.6.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0dab5de9073aab79fd2c33318f04d9e1", "sha256": "2617470ec110127adcff15e48210b48b2d62c968b12108b1c638c87fbc4baac8" }, "downloads": -1, "filename": "MambuPy-0.6.1.tar.gz", "has_sig": false, "md5_digest": "0dab5de9073aab79fd2c33318f04d9e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49434, "upload_time": "2017-12-12T00:27:59", "url": "https://files.pythonhosted.org/packages/0d/3a/31ad276ee9b5560cc2bbca787e8083eecad0bb6600d2377a81455f9c7cc9/MambuPy-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "fb0a8dfb1908bf295e0ee5b3859deaaa", "sha256": "452fecd3a861015560025b26cf5719a2bc2a9fb519febd84968fbd6f9f7e42e5" }, "downloads": -1, "filename": "MambuPy-0.6.2-py2-none-any.whl", "has_sig": false, "md5_digest": "fb0a8dfb1908bf295e0ee5b3859deaaa", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 64037, "upload_time": "2017-12-12T00:33:44", "url": "https://files.pythonhosted.org/packages/6c/b3/4c7a4e84ec1dc20b8927e2114d20d49653ca039ea692727d7412b8766a9a/MambuPy-0.6.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "55caff909dbf4a650cc6f264a1074386", "sha256": "b2142e1b668f533402d55c7bcda760fb3a3261510ecd4faddeac578f686a7764" }, "downloads": -1, "filename": "MambuPy-0.6.2.tar.gz", "has_sig": false, "md5_digest": "55caff909dbf4a650cc6f264a1074386", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49437, "upload_time": "2017-12-12T00:33:35", "url": "https://files.pythonhosted.org/packages/b9/d8/f12f78ca006ee2fb5f2d1fff4bcb874b5184e12174d66e47ba72b12c5fd1/MambuPy-0.6.2.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "cdcf185e2f07e9a0c53405da4bc14636", "sha256": "ac2608994384b63ba14c66b979f4cca9e4f30a08da542230c55f9bcbd95e8cd9" }, "downloads": -1, "filename": "MambuPy-0.7.1-py2-none-any.whl", "has_sig": false, "md5_digest": "cdcf185e2f07e9a0c53405da4bc14636", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 62700, "upload_time": "2017-12-18T21:36:40", "url": "https://files.pythonhosted.org/packages/27/8c/57104d1edecc373e0c15b06817cd2e25afa7564c8f0ae624f213860a1dcc/MambuPy-0.7.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f0dfa51715ecf28f2a73efbd0fd49245", "sha256": "2bcfb07a259d35e9c01ac92bc66c3f144e953982f2e1677f340627efd299efae" }, "downloads": -1, "filename": "MambuPy-0.7.1.tar.gz", "has_sig": false, "md5_digest": "f0dfa51715ecf28f2a73efbd0fd49245", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48276, "upload_time": "2017-12-18T21:36:33", "url": "https://files.pythonhosted.org/packages/1b/a9/c3586124847943c1e0976246c46e67572c8ef08feb9baeeb9092be8bbf1e/MambuPy-0.7.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "d03628db292877af2ece7a58346c41fc", "sha256": "d4cfce63c6cff968db8783697e970ad18716fed91794fec4c75f09bcc3634f78" }, "downloads": -1, "filename": "MambuPy-0.8.2-py2.7.egg", "has_sig": false, "md5_digest": "d03628db292877af2ece7a58346c41fc", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 315370, "upload_time": "2018-04-20T01:01:15", "url": "https://files.pythonhosted.org/packages/97/17/7edc266d5160bf607691249f71bc07c2034cabcc49d0723e4c8618de7003/MambuPy-0.8.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "d86b8693d2dfc858b24fd2b567350617", "sha256": "c8e48c256d8ddbcf875ba8841b8ea3f95d465e232a6a0ea53d268555a759c29b" }, "downloads": -1, "filename": "MambuPy-0.8.2-py2-none-any.whl", "has_sig": false, "md5_digest": "d86b8693d2dfc858b24fd2b567350617", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 138939, "upload_time": "2018-04-20T01:01:12", "url": "https://files.pythonhosted.org/packages/f3/03/b9c99cd771412e091f26af84609e560f929b26d17ed041abcca61938d148/MambuPy-0.8.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "28d9a5010eb26be2f71b4cd1b6d0213f", "sha256": "2f70944882e637df97f218b6ad3bd7eee14c89be55b464b7d8d711ec77f97c07" }, "downloads": -1, "filename": "MambuPy-0.8.2.tar.gz", "has_sig": false, "md5_digest": "28d9a5010eb26be2f71b4cd1b6d0213f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55598, "upload_time": "2018-04-20T01:01:18", "url": "https://files.pythonhosted.org/packages/d3/5c/c29ba1107945a02593187fba003b8eff2ad6f8de696bb3585ed99a0fc3a7/MambuPy-0.8.2.tar.gz" } ], "0.8.3.7": [ { "comment_text": "", "digests": { "md5": "799fd2a57ae3432d97dad35ec0057961", "sha256": "ec524420e772b68f04829a5d29fcb52aaecc124b2663c54f00192209be6133de" }, "downloads": -1, "filename": "MambuPy-0.8.3.7-py2.7.egg", "has_sig": false, "md5_digest": "799fd2a57ae3432d97dad35ec0057961", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": ">=2.7", "size": 139887, "upload_time": "2018-06-06T17:05:06", "url": "https://files.pythonhosted.org/packages/6c/75/03309d3cfc874cc729a39cbff0d931ae345e477d5d0c55bef815b6e692dc/MambuPy-0.8.3.7-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "f4152262372bd28688349800472481d4", "sha256": "5cc1b1538f884333824fda5650a266c9c776186aeee279d091147337d5d10cc9" }, "downloads": -1, "filename": "MambuPy-0.8.3.7-py2-none-any.whl", "has_sig": false, "md5_digest": "f4152262372bd28688349800472481d4", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": ">=2.7", "size": 144062, "upload_time": "2018-06-06T17:05:04", "url": "https://files.pythonhosted.org/packages/6f/38/46ef38178963c9b92cb0f92a418be844c79acdef5aff3d209b1b9b474b3b/MambuPy-0.8.3.7-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f32d0160f6611b241d4d3ec00f08cb0b", "sha256": "cf25f02ba55cded9acdfc0fba8b5582fccf4c023c538998742bc87ce087dc13a" }, "downloads": -1, "filename": "MambuPy-0.8.3.7.tar.gz", "has_sig": false, "md5_digest": "f32d0160f6611b241d4d3ec00f08cb0b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 58186, "upload_time": "2018-06-06T17:05:08", "url": "https://files.pythonhosted.org/packages/e0/38/bcd9a2d17468edbdc183d38257a26dfb0898d0b327b4ea4e9125e6147a42/MambuPy-0.8.3.7.tar.gz" } ], "0.8.4.1": [ { "comment_text": "", "digests": { "md5": "06ee8b20213c37ac823ac1b3d63b22d4", "sha256": "7810848b53c15386bb8c5bb3ece5df6a25ea30542cdd7cfde917ec986fbed593" }, "downloads": -1, "filename": "MambuPy-0.8.4.1-py2.7.egg", "has_sig": false, "md5_digest": "06ee8b20213c37ac823ac1b3d63b22d4", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": ">=2.7", "size": 69372, "upload_time": "2018-07-20T23:43:12", "url": "https://files.pythonhosted.org/packages/a7/c3/d9b65a80e3dc4d9a6a1e0ef3ca85af44f68680de3655cda492738ca086f0/MambuPy-0.8.4.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "8b1c73317f29d37501c06fa5187d86c7", "sha256": "1c97e101bf7748ef1cef05f11def9f4d612f9d315285fae54222e8d9a8342fe1" }, "downloads": -1, "filename": "MambuPy-0.8.4.1-py2-none-any.whl", "has_sig": false, "md5_digest": "8b1c73317f29d37501c06fa5187d86c7", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": ">=2.7", "size": 73117, "upload_time": "2018-07-20T23:43:11", "url": "https://files.pythonhosted.org/packages/9a/4f/81fc3a2def612eac328b581d0bd6ec002a93b35bf38d6a8608fa123a77ca/MambuPy-0.8.4.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0fa8c8f8e3356ec4558c40b4ef87b1b3", "sha256": "d63b0bd5646f8dc3265c6050617b4d8f1bd07c9b97de1ccd826d9e6c3c11ae55" }, "downloads": -1, "filename": "MambuPy-0.8.4.1.tar.gz", "has_sig": false, "md5_digest": "0fa8c8f8e3356ec4558c40b4ef87b1b3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 53955, "upload_time": "2018-07-20T23:43:14", "url": "https://files.pythonhosted.org/packages/09/ff/84795b6f1c20eabb54a3c3b76cc5aa2f5de7e979020da3a33a27ce343d9c/MambuPy-0.8.4.1.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "94a8f350a8e091d1e6d4654b8c179bcb", "sha256": "62f5dec46a3313254d47174d198737f2bdc98660780391bb87abcb429cffa182" }, "downloads": -1, "filename": "MambuPy-0.9.0-py2.7.egg", "has_sig": false, "md5_digest": "94a8f350a8e091d1e6d4654b8c179bcb", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": ">=2.7", "size": 68210, "upload_time": "2018-08-08T16:32:12", "url": "https://files.pythonhosted.org/packages/31/31/7637d59c5aea62740ce0209011879230380272121fd234ac1a5d4f64f718/MambuPy-0.9.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "caab0e265ebff59c73befbfe78a52372", "sha256": "d6d57dce1fdffa6bce9f61e239c1b02a2e79855796413d56b9df165a23dfb3e2" }, "downloads": -1, "filename": "MambuPy-0.9.0-py2-none-any.whl", "has_sig": false, "md5_digest": "caab0e265ebff59c73befbfe78a52372", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": ">=2.7", "size": 72111, "upload_time": "2018-08-08T16:32:09", "url": "https://files.pythonhosted.org/packages/87/2f/d3a72a6deae0788b2e239f1f36c8a9bab732abcdd84cf706b0f1646bc02e/MambuPy-0.9.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "483b01d998053fb8020aaac866d31cba", "sha256": "33f0039fd41589c88b9c4f27f29a27841f721c8faad71ad73b38b1d752001897" }, "downloads": -1, "filename": "MambuPy-0.9.0.tar.gz", "has_sig": false, "md5_digest": "483b01d998053fb8020aaac866d31cba", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 10165, "upload_time": "2018-08-08T16:32:14", "url": "https://files.pythonhosted.org/packages/47/f0/7183c7facf330b7dc9070a287bb0c426f02ec3f4d66637d1f69b34ae4a8e/MambuPy-0.9.0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "ba01e0e3a39221ea5455470994deba26", "sha256": "b087ef4dc04ceea517154404a45e1a23fca0f2c3fc19b556a7ecce62b8b6bffe" }, "downloads": -1, "filename": "MambuPy-1.1.0-py2.7.egg", "has_sig": false, "md5_digest": "ba01e0e3a39221ea5455470994deba26", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": ">=2.7", "size": 69500, "upload_time": "2018-12-17T18:36:23", "url": "https://files.pythonhosted.org/packages/05/0c/8a9a28741f227bebe6b683d694e7f93dabf074bc16bd69bf714f6c0f179b/MambuPy-1.1.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "366a3bcfb44c96d597798e155dc95ee3", "sha256": "de3b0120cfecb1bc9560cad440830627a24721615c4a6a7dc56191ed1b4070f9" }, "downloads": -1, "filename": "MambuPy-1.1.0-py2-none-any.whl", "has_sig": false, "md5_digest": "366a3bcfb44c96d597798e155dc95ee3", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": ">=2.7", "size": 73454, "upload_time": "2018-12-17T18:36:20", "url": "https://files.pythonhosted.org/packages/28/99/fc0c4dad27a231c9c7339efc10c74e11fb5c01b1a0067af69fcb46ccca10/MambuPy-1.1.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5f74560292fc2db7c6f31fda04fe21c0", "sha256": "137124b923f963c5d6f23336cd7f371857105bf65fe31b09eb2efc0648ebb0d7" }, "downloads": -1, "filename": "MambuPy-1.1.0.tar.gz", "has_sig": false, "md5_digest": "5f74560292fc2db7c6f31fda04fe21c0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 11455, "upload_time": "2018-12-17T18:36:24", "url": "https://files.pythonhosted.org/packages/9f/26/6508ae8c418e942fead7e63b8c622042c93bcbaf4e280b3d05ed58666a9f/MambuPy-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "6dd9e8737613aced4eed83b477e18452", "sha256": "3537b473076f071400237b870697cbef30a2e2b4dbaa516ed076f6a0aca66947" }, "downloads": -1, "filename": "MambuPy-1.1.1-py2.7.egg", "has_sig": false, "md5_digest": "6dd9e8737613aced4eed83b477e18452", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": ">=2.7", "size": 70071, "upload_time": "2018-12-18T18:40:40", "url": "https://files.pythonhosted.org/packages/7b/9b/9fca30eca48d353c852490fc92e57558385adfc936843e456f8a08d6f955/MambuPy-1.1.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "a44ac3890cd5f66a6976fdc94df86065", "sha256": "1cf34894ea7719cf3ddffa00dc60ab1c947459753fc57f72983f4cef8fbfc436" }, "downloads": -1, "filename": "MambuPy-1.1.1-py2-none-any.whl", "has_sig": false, "md5_digest": "a44ac3890cd5f66a6976fdc94df86065", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": ">=2.7", "size": 74034, "upload_time": "2018-12-18T18:40:38", "url": "https://files.pythonhosted.org/packages/bc/0d/5159bc74de62bb265bbd84588acc5ab2668aa05af4a41aed931670f97594/MambuPy-1.1.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4b07fdc72f91c7d1423dd9423f2bc435", "sha256": "a0104863944f223b9bd5436a1d7d092814e4d94b4d30d0f6963cb7174e7b69ee" }, "downloads": -1, "filename": "MambuPy-1.1.1.tar.gz", "has_sig": false, "md5_digest": "4b07fdc72f91c7d1423dd9423f2bc435", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 12003, "upload_time": "2018-12-18T18:40:41", "url": "https://files.pythonhosted.org/packages/55/b1/883062d58406937bcab4c30acecc3aaa08eaa76a2fbd9570574ae5e9edc9/MambuPy-1.1.1.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "df89c62697030afb85189cdfc282cbe9", "sha256": "340de5071236715495c0ca66df4bbb161017e1b4febd03e3e0811b8b71cac9d8" }, "downloads": -1, "filename": "MambuPy-1.3.1-py2.7.egg", "has_sig": false, "md5_digest": "df89c62697030afb85189cdfc282cbe9", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": ">=2.7", "size": 70493, "upload_time": "2019-03-16T00:36:53", "url": "https://files.pythonhosted.org/packages/56/70/81e63b1abe248285990c14efb72b960c135ff75bf0c71b8232ed3252a3a6/MambuPy-1.3.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "122a2cb992c177156e7bb7a8176eb9d4", "sha256": "37a4a3dc84bacd17c234431b2dc8f65656a4febffd9637476d82f5705ddcde28" }, "downloads": -1, "filename": "MambuPy-1.3.1-py2-none-any.whl", "has_sig": false, "md5_digest": "122a2cb992c177156e7bb7a8176eb9d4", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": ">=2.7", "size": 74788, "upload_time": "2019-03-16T00:36:51", "url": "https://files.pythonhosted.org/packages/cd/ba/687bf9071352a69794df3be851e87c5147c453045f716eb45ac8f20827fa/MambuPy-1.3.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "67d1f4a4819463478dbd7abfca45b05f", "sha256": "476f2738a71ad957899e51c77d7e9a4d3db46674537314a0ee4a9c1e7fc5d029" }, "downloads": -1, "filename": "MambuPy-1.3.1.tar.gz", "has_sig": false, "md5_digest": "67d1f4a4819463478dbd7abfca45b05f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 12461, "upload_time": "2019-03-16T00:36:54", "url": "https://files.pythonhosted.org/packages/41/de/2e42f1a7fe0d45d9712c8277d491a91debdec06f9e04764594e2914a6c36/MambuPy-1.3.1.tar.gz" } ], "1.3.8": [ { "comment_text": "", "digests": { "md5": "d945f0085adfd49e340c693fb5fe346c", "sha256": "e27dfc185a89dfd27aa078d313fc648a82f38dbfd071a05e96cd0346cd492d3e" }, "downloads": -1, "filename": "MambuPy-1.3.8-py2.7.egg", "has_sig": false, "md5_digest": "d945f0085adfd49e340c693fb5fe346c", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": ">=2.7", "size": 70998, "upload_time": "2019-08-26T23:41:35", "url": "https://files.pythonhosted.org/packages/0e/24/ba67f569cdb673b25e48501732322ee9d24e66a7e3247556e168b4f43412/MambuPy-1.3.8-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "0495a35b782af81152bc482bae3ea795", "sha256": "da7e661b443266d95d7fbc4de52bfa0bdbfe538d4f9b307a1d6540ae96451fa7" }, "downloads": -1, "filename": "MambuPy-1.3.8-py2-none-any.whl", "has_sig": false, "md5_digest": "0495a35b782af81152bc482bae3ea795", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": ">=2.7", "size": 75487, "upload_time": "2019-08-26T23:41:33", "url": "https://files.pythonhosted.org/packages/cb/4c/d2b077f75339edcd84cdd1268066221987c85d4faf51c5cbabd34e34481f/MambuPy-1.3.8-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4833da55e1a1e749a81fe63b7f8b73ec", "sha256": "427173a20bd86d70a5f4373d3a55f9029b1575fcb05a0192d2a390e9972c1e4e" }, "downloads": -1, "filename": "MambuPy-1.3.8.tar.gz", "has_sig": false, "md5_digest": "4833da55e1a1e749a81fe63b7f8b73ec", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 13080, "upload_time": "2019-08-26T23:41:37", "url": "https://files.pythonhosted.org/packages/c8/89/ca49df7f723a63bbcec952c626fc80dbe7deb8bfe8098a06d8845aeda2e3/MambuPy-1.3.8.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "d945f0085adfd49e340c693fb5fe346c", "sha256": "e27dfc185a89dfd27aa078d313fc648a82f38dbfd071a05e96cd0346cd492d3e" }, "downloads": -1, "filename": "MambuPy-1.3.8-py2.7.egg", "has_sig": false, "md5_digest": "d945f0085adfd49e340c693fb5fe346c", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": ">=2.7", "size": 70998, "upload_time": "2019-08-26T23:41:35", "url": "https://files.pythonhosted.org/packages/0e/24/ba67f569cdb673b25e48501732322ee9d24e66a7e3247556e168b4f43412/MambuPy-1.3.8-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "0495a35b782af81152bc482bae3ea795", "sha256": "da7e661b443266d95d7fbc4de52bfa0bdbfe538d4f9b307a1d6540ae96451fa7" }, "downloads": -1, "filename": "MambuPy-1.3.8-py2-none-any.whl", "has_sig": false, "md5_digest": "0495a35b782af81152bc482bae3ea795", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": ">=2.7", "size": 75487, "upload_time": "2019-08-26T23:41:33", "url": "https://files.pythonhosted.org/packages/cb/4c/d2b077f75339edcd84cdd1268066221987c85d4faf51c5cbabd34e34481f/MambuPy-1.3.8-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4833da55e1a1e749a81fe63b7f8b73ec", "sha256": "427173a20bd86d70a5f4373d3a55f9029b1575fcb05a0192d2a390e9972c1e4e" }, "downloads": -1, "filename": "MambuPy-1.3.8.tar.gz", "has_sig": false, "md5_digest": "4833da55e1a1e749a81fe63b7f8b73ec", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 13080, "upload_time": "2019-08-26T23:41:37", "url": "https://files.pythonhosted.org/packages/c8/89/ca49df7f723a63bbcec952c626fc80dbe7deb8bfe8098a06d8845aeda2e3/MambuPy-1.3.8.tar.gz" } ] }