{ "info": { "author": "Guewen Baconnier", "author_email": "guewen.baconnier@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: GNU Affero General Public License v3", "Topic :: Internet", "Topic :: Internet :: WWW/HTTP :: Site Management", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "# Prestapyt\n\nprestapyt is a library for Python to interact with the PrestaShop's Web Service API.\n\nLearn more about the PrestaShop Web Service from the [Official Prestashop Documentation].\n\nprestapyt is a direct port of the PrestaShop PHP API Client, PSWebServiceLibrary.php\n\nSimilar to PSWebServiceLibrary.php, prestapyt is a thin wrapper around the PrestaShop Web Service:\nit takes care of making the call to your PrestaShop instance's Web Service,\nsupports the Web Service's HTTP-based CRUD operations (handling any errors)\nand then returns the XML ready for you to work with in Python\n(as well as prestasac if you work with scala).\n\n\n## Installation\n\nThe easiest way to install prestapyt (needs setuptools):\n\n easy_install prestapyt\n\nOr, better, using pip:\n\n pip install prestapyt\n\nIf you do not have setuptools, download prestapyt as a .tar.gz or .zip from\n[Prestapyt Source Archives], untar it and run:\n\n python setup.py install\n\n\n## Usage\n\n\n### Message as xml\n```python\nfrom prestapyt import PrestaShopWebService\nprestashop = PrestaShopWebService('http://localhost:8080/api', WEBSERVICE_KEY)\n```\n\n### Message as dictionary\n```python\nfrom prestapyt import PrestaShopWebServiceDict\nprestashop = PrestaShopWebServiceDict('http://localhost:8080/api', WEBSERVICE_KEY)\n```\n\n### Search\n\n#### Get all addresses\n```python\nprestashop.get('addresses') # will return the same xml message than\nprestashop.search('addresses')\n```\nNote: when using PrestaShopWebServiceDict ``prestashop.search('addresses')`` will return a list of ids.\n\n\n#### Search with filters\n```python\nprestashop.search('addresses', options={'limit': 10})\nprestashop.search('addresses', options={'display': '[firstname,lastname]', 'filter[id]': '[1|5]'})\n```\nFor additional info [check reference for the options](http://doc.prestashop.com/display/PS14/Cheat+Sheet_+Concepts+Outlined+in+this+Tutorial).\n\n#### Get single address\n```python\nprestashop.get('addresses', resource_id=1) or prestashop.get('addresses/1')\n```\nreturns ElementTree (PrestaShopWebService) or dict (PrestaShopWebServiceDict).\n\nYou can use the full api URL\n\n```python\nprestashop.get('http://localhost:8080/api/addresses/1')\n```\n\n#### Head request\n\n```python\nprestashop.head('addresses')\n```\n\n### Manipulate records\n\n#### Delete\n```python\nprestashop.delete('addresses', resource_ids=4)\n```\n\n#### Delete many records at once\n```python\nprestashop.delete('addresses', resource_ids=[5,6])\n```\n\n#### Add record\n```python\nprestashop.add('addresses', xml)\n```\n\n#### Edit record\n```python\nprestashop.edit('addresses', xml)\n```\n\n#### Get model blank xml schema\n```python\nprestashop.get('addresses', options={'schema': 'blank'})\n```\n\n#### Add product image\n\n```python\nfile_name = 'sample.jpg'\nfd = io.open(file_name, \"rb\")\ncontent = fd.read()\nfd.close()\n\nprestashop.add('/images/products/123', files=[('image', file_name, content)])\n```\n\n## API Documentation\n\nDocumentation for the PrestaShop Web Service can be found on the\nPrestaShop wiki: [Using the REST webservice]\n\n\n## Credits:\n\nThanks to Prestashop SA for their PHP API Client PSWebServiceLibrary.php\n\nThanks to Alex Dean for his port of PSWebServiceLibrary.php\nto the Scala language, [prestasac] from which I also inspired my library.\n\n\n## Copyright and License\n\nprestapyt is copyright (c) 2012 Guewen Baconnier\n\nprestapyt is free software: you can redistribute it and/or modify\nit under the terms of the GNU Affero General Public License as\npublished by the Free Software Foundation, either version 3 of\nthe License, or (at your option) any later version.\n\nprestapyt is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU Affero General Public License for more details.\n\nYou should have received a copy of the GNU Affero General Public\nLicense along with prestapyt. If not, see [GNU licenses](http://www.gnu.org/licenses/).\n\n\n\n[Official Prestashop Documentation]: http://doc.prestashop.com/display/PS14/Using+the+REST+webservice\n[Using the REST webservice]: http://doc.prestashop.com/display/PS14/Using+the+REST+webservice\n[Prestapyt Source Archives]: https://github.com/guewen/prestapyt/downloads\n[prestasac]: https://github.com/orderly/prestashop-scala-client\n\n\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/guewen/prestapyt", "keywords": "prestashop api client rest", "license": "GNU AGPL-3", "maintainer": "", "maintainer_email": "", "name": "prestapyt", "package_url": "https://pypi.org/project/prestapyt/", "platform": "", "project_url": "https://pypi.org/project/prestapyt/", "project_urls": { "Homepage": "http://github.com/guewen/prestapyt" }, "release_url": "https://pypi.org/project/prestapyt/0.9.0/", "requires_dist": [ "requests" ], "requires_python": "", "summary": "A library to access Prestashop Web Service from Python.", "version": "0.9.0" }, "last_serial": 3209974, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "6794975287814d396cd83c7e1b907ed3", "sha256": "a58ad9948818cd155e57e0b247f0ae103e272397a1a501891df9c7a6f6ecfadc" }, "downloads": -1, "filename": "prestapyt-0.1.0-py2.6.egg", "has_sig": false, "md5_digest": "6794975287814d396cd83c7e1b907ed3", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 13171, "upload_time": "2012-02-01T23:01:10", "url": "https://files.pythonhosted.org/packages/2a/f2/057043e5919650fba330fc65d04249b1447a67eade156ea42a1205acfcfc/prestapyt-0.1.0-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "2acdd7fce7b5749f30cf5e1abdce9322", "sha256": "e22df95b514b67d61fad0b43c96d1c16a4f43458acc49aeb3e3fbf7dfb13d8fd" }, "downloads": -1, "filename": "prestapyt-0.1.0-py2.7.egg", "has_sig": false, "md5_digest": "2acdd7fce7b5749f30cf5e1abdce9322", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 13135, "upload_time": "2012-02-01T23:00:33", "url": "https://files.pythonhosted.org/packages/24/ac/ef681ddabdf1bd10f93ea1381def09bf89d80e2cacb3c21ea47fc604f6a1/prestapyt-0.1.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "c916e0eec7fe508e9ee4140b8b5ef94e", "sha256": "751a935231ca9b08aa1961cb985cff899e71df04a1a72b56e685bf5ea68a31e6" }, "downloads": -1, "filename": "prestapyt-0.1.0.tar.gz", "has_sig": false, "md5_digest": "c916e0eec7fe508e9ee4140b8b5ef94e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6668, "upload_time": "2012-02-01T23:00:53", "url": "https://files.pythonhosted.org/packages/00/05/5871fc3bfe44b71bced037cb5b576d471eb6ba6c6e8fe6fc93268a8effc5/prestapyt-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "39f10d33b4418d4ee13a9af9c4c337f2", "sha256": "0d9d8fc792bb897751d02a464b2ebe745ed9d6730c899fb82be443e8f2001e83" }, "downloads": -1, "filename": "prestapyt-0.1.1-py2.6.egg", "has_sig": false, "md5_digest": "39f10d33b4418d4ee13a9af9c4c337f2", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 13302, "upload_time": "2012-02-01T23:10:45", "url": "https://files.pythonhosted.org/packages/6e/16/3f242bc37d9b63400308caf59e036b6ad101e8157616128ddf6265fa3d98/prestapyt-0.1.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "2445743392d231e7859f3d4862109ce6", "sha256": "6fe801d010ff5855d64ab25489ef9d12b0531487506d6b993f43991a52493958" }, "downloads": -1, "filename": "prestapyt-0.1.1-py2.7.egg", "has_sig": false, "md5_digest": "2445743392d231e7859f3d4862109ce6", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 13266, "upload_time": "2012-02-01T23:10:31", "url": "https://files.pythonhosted.org/packages/f1/9d/7f21fa31bf516c34bb88a7536ad2ad76045151fb387be66fc3fc24bdc99b/prestapyt-0.1.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "a1ad70b7d30b6dfc7ea2b5d02cc1f461", "sha256": "3ab1f8dcb5613f145769091f3b39eefe118caa9def940b773c7f7d32e2d3d7ed" }, "downloads": -1, "filename": "prestapyt-0.1.1.tar.gz", "has_sig": false, "md5_digest": "a1ad70b7d30b6dfc7ea2b5d02cc1f461", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6683, "upload_time": "2012-02-01T23:08:42", "url": "https://files.pythonhosted.org/packages/ea/fe/8999fbfa817847a840f3f798e74b62f0af97496b43747c3f8663d31bdc9b/prestapyt-0.1.1.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "33325eb36bc22fdd9aced67b43744bba", "sha256": "a5f6541a1def4eefba035ad66afa868aeb0500a45bf1e06f02be2aa0f65fae1b" }, "downloads": -1, "filename": "prestapyt-0.2.0-py2.6.egg", "has_sig": false, "md5_digest": "33325eb36bc22fdd9aced67b43744bba", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 23460, "upload_time": "2012-02-07T23:23:07", "url": "https://files.pythonhosted.org/packages/a9/fd/aecd8666263b430e428e6399b4f720eaa39fadb0d82bc0e6719d6d8ca0c6/prestapyt-0.2.0-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "70c1b656887d3400648aa1ec1f604554", "sha256": "7166f46c150abbe4ec2bcb911320df2cb2ae1121cd7218d1827a8e74eb998ae1" }, "downloads": -1, "filename": "prestapyt-0.2.0-py2.7.egg", "has_sig": false, "md5_digest": "70c1b656887d3400648aa1ec1f604554", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 23378, "upload_time": "2012-02-07T23:24:27", "url": "https://files.pythonhosted.org/packages/d5/d5/99bfd8238558c336e0f6dcece057ba0b20f6ae74815a03303eae9f3fece9/prestapyt-0.2.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "00dbc32a89a4401f6958d2f76d1742c1", "sha256": "afd01da05ca77fb72f4e6af1d7e662a2d47ec1c2c25fe4439a6b783a118d433f" }, "downloads": -1, "filename": "prestapyt-0.2.0.tar.gz", "has_sig": false, "md5_digest": "00dbc32a89a4401f6958d2f76d1742c1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9670, "upload_time": "2012-02-07T23:23:34", "url": "https://files.pythonhosted.org/packages/bd/d6/488a2cb174dad943a378ee5de87e9f39339e3312581e27d39997ee4d2a11/prestapyt-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "73f1ead8eb570746bea3460c47e8708c", "sha256": "c235eaa3857974708a372df0f12ba3ac65dc8c01d874e60acb5a09b1fd9596b1" }, "downloads": -1, "filename": "prestapyt-0.2.1-py2.6.egg", "has_sig": false, "md5_digest": "73f1ead8eb570746bea3460c47e8708c", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 23465, "upload_time": "2012-02-08T11:15:59", "url": "https://files.pythonhosted.org/packages/03/ca/82b46e469159c6a2fe539857ef9db3f8fce943aa51d46ae3000db5b97708/prestapyt-0.2.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "9b1abc62c4adabe10d64665d39516e62", "sha256": "34b8f1fba9e3b9f4b5bdf065d168af17c53225f6f002bfd1ddb3009a91db1243" }, "downloads": -1, "filename": "prestapyt-0.2.1-py2.7.egg", "has_sig": false, "md5_digest": "9b1abc62c4adabe10d64665d39516e62", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 23465, "upload_time": "2012-02-08T10:30:57", "url": "https://files.pythonhosted.org/packages/b5/2c/2b671a137c7328a83c2a2e2ea467fcff97a741ca53193bb06778b9fddff5/prestapyt-0.2.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "c2d12f78648ddd3afdb77ceb4b9f8821", "sha256": "20a20be896e59e8acf5949e091c2506ba4614e94a088558184e00fac175ea36b" }, "downloads": -1, "filename": "prestapyt-0.2.1.tar.gz", "has_sig": false, "md5_digest": "c2d12f78648ddd3afdb77ceb4b9f8821", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9670, "upload_time": "2012-02-08T10:26:49", "url": "https://files.pythonhosted.org/packages/bc/4b/766e1a54ea0a400258acf2e29770511318533c93581682cac15959ba287c/prestapyt-0.2.1.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "f25cb4682f90403cf0a883e7504123df", "sha256": "a81acb6945e5dae71cecf006ebb2362362114c29f85a58ae81e81c92e6884c55" }, "downloads": -1, "filename": "prestapyt-0.3.0-py2.6.egg", "has_sig": false, "md5_digest": "f25cb4682f90403cf0a883e7504123df", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 23292, "upload_time": "2012-02-08T15:07:41", "url": "https://files.pythonhosted.org/packages/0e/59/9899079b098b9809ac4ace90f9445df9ec3e5a8de2ef6a95107f4c3a9e14/prestapyt-0.3.0-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "41d2149aefccecdc31a5171906f756a8", "sha256": "9513d9f17710308246643e0c46cd0f92f5031aee9fc62d7b95e6533e772c9b1c" }, "downloads": -1, "filename": "prestapyt-0.3.0-py2.7.egg", "has_sig": false, "md5_digest": "41d2149aefccecdc31a5171906f756a8", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 23213, "upload_time": "2012-02-08T15:07:43", "url": "https://files.pythonhosted.org/packages/7e/96/54cc6ade4dd892cde1b795999680eb6ff916517e539201bdfa6471cb3f73/prestapyt-0.3.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "b1a02eec008077d81ea4dbb9a198eded", "sha256": "d8c39cbebcd03e14e93e96088bc89a92331d66248e1879e26bcc81f0d572f488" }, "downloads": -1, "filename": "prestapyt-0.3.0.tar.gz", "has_sig": false, "md5_digest": "b1a02eec008077d81ea4dbb9a198eded", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9585, "upload_time": "2012-02-08T15:07:42", "url": "https://files.pythonhosted.org/packages/e1/a6/23536e8d437ba60735f34777261e1daff160b3bb5c666f20cf8068cef210/prestapyt-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "00058a95587e4a7ed22e34fd19f55466", "sha256": "941b5215f16b6fcc57b400ac554c554c1e498e94327b595077c38903e16086dd" }, "downloads": -1, "filename": "prestapyt-0.3.1-py2.6.egg", "has_sig": false, "md5_digest": "00058a95587e4a7ed22e34fd19f55466", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 23371, "upload_time": "2012-02-08T15:46:34", "url": "https://files.pythonhosted.org/packages/3f/30/4e78be751f7036c5c463d7983bfb9c17be12c31bd55f15313084ffd386cf/prestapyt-0.3.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "af5bf99b209f4a0bdb1da47082e2cfb5", "sha256": "b698a06c6fdfd2ffdd58b240f5b6ae09be0a94ad58669bbe3bc2fd18e1a3594b" }, "downloads": -1, "filename": "prestapyt-0.3.1-py2.7.egg", "has_sig": false, "md5_digest": "af5bf99b209f4a0bdb1da47082e2cfb5", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 23294, "upload_time": "2012-02-08T15:46:36", "url": "https://files.pythonhosted.org/packages/5e/89/41abcc33f7ca51d399391f19490eb939cd28baf0c7c560a8e19ffe2795b2/prestapyt-0.3.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "1920b400f043129751cbcb6e48bc93b3", "sha256": "b71e1c1d82a3827fb6902941c95450327f7105765ccf29dd17269a992e4542f0" }, "downloads": -1, "filename": "prestapyt-0.3.1.tar.gz", "has_sig": false, "md5_digest": "1920b400f043129751cbcb6e48bc93b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9649, "upload_time": "2012-02-08T15:46:35", "url": "https://files.pythonhosted.org/packages/b8/5d/dc909d9a59debccb92b289e62c764e5d8bb809020e0083eab8968f875f77/prestapyt-0.3.1.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "344358cbdcf93431c9c8a0cbddd071d4", "sha256": "d6ce09022bd6704338bfcc9d9c7a0937eba556dcae439fc141f17305e2688666" }, "downloads": -1, "filename": "prestapyt-0.4.0-py2.6.egg", "has_sig": false, "md5_digest": "344358cbdcf93431c9c8a0cbddd071d4", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 24600, "upload_time": "2012-02-10T09:29:46", "url": "https://files.pythonhosted.org/packages/21/8e/7cbc93fa7abdd8d6d2e4c812fb96ffafb4394253ac0ca41051b8bfe65852/prestapyt-0.4.0-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "b56668d23b04cf9a72d4d1032b5d460e", "sha256": "eccb94ecaa9876e210a539f996807b5e5e8ebb78ba315e03da61c2624ba08af5" }, "downloads": -1, "filename": "prestapyt-0.4.0-py2.7.egg", "has_sig": false, "md5_digest": "b56668d23b04cf9a72d4d1032b5d460e", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 24491, "upload_time": "2012-02-10T09:29:47", "url": "https://files.pythonhosted.org/packages/86/4b/1390b51639ec26d90ba89a8f9c74ddaa4819c36e7bf312973d9e1dddc673/prestapyt-0.4.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "639bb6c85d8a5093c27327b62408be3c", "sha256": "9f19d768e3073dd273d6d1f710262f8cd782608bc3de6cf9bda379aa20651f9c" }, "downloads": -1, "filename": "prestapyt-0.4.0.tar.gz", "has_sig": false, "md5_digest": "639bb6c85d8a5093c27327b62408be3c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10214, "upload_time": "2012-02-10T09:29:46", "url": "https://files.pythonhosted.org/packages/c6/aa/31c284803b8052d8700992197fdde3e6e4fcee5aa3388769d8465e977789/prestapyt-0.4.0.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "37b12e625e09e4a90b753ed34477569b", "sha256": "2e1d6a2a187c5ede9f8cdbf874cb2571ab38af45a2eada09cdf75ad052f0a4a2" }, "downloads": -1, "filename": "prestapyt-0.5.0-py2.6.egg", "has_sig": false, "md5_digest": "37b12e625e09e4a90b753ed34477569b", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 24594, "upload_time": "2012-08-23T14:51:32", "url": "https://files.pythonhosted.org/packages/bd/b5/cda236b59027fb6e40dba4c75911f95a2b06945ed0d6a8596e300ac90b15/prestapyt-0.5.0-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "9466948bfc0be9d93e1e35aee46c93ca", "sha256": "2d26bae0fe8b39e93f240b50200c7a0016f4c21863d6bbd68aa7507a5c36b359" }, "downloads": -1, "filename": "prestapyt-0.5.0.tar.gz", "has_sig": false, "md5_digest": "9466948bfc0be9d93e1e35aee46c93ca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11258, "upload_time": "2012-08-23T14:51:34", "url": "https://files.pythonhosted.org/packages/47/8b/eccf9b49bbf99f1f4475c296aa095b1bc2adecaf210fc99b624d59208157/prestapyt-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "b5fe20c207228e20826ffdd4ac079693", "sha256": "e98245b0fa9e5ddceafb026291fbeffb81cd63e275a5151029c5a3b12fae8573" }, "downloads": -1, "filename": "prestapyt-0.5.1-py2.6.egg", "has_sig": false, "md5_digest": "b5fe20c207228e20826ffdd4ac079693", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 24935, "upload_time": "2012-08-23T15:34:37", "url": "https://files.pythonhosted.org/packages/d9/9f/e5c6378556bb1c321ad56d5a5ed1dc978f8fe88a2e87d2797a5eea4e81a8/prestapyt-0.5.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "98412898d7672dd78da3c6a9585cd824", "sha256": "8151db6d1ae0798b6c229e4c887d55e22e7b69b744e17db84f40436e48380f6a" }, "downloads": -1, "filename": "prestapyt-0.5.1-py2.7.egg", "has_sig": false, "md5_digest": "98412898d7672dd78da3c6a9585cd824", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 24852, "upload_time": "2012-08-23T19:58:02", "url": "https://files.pythonhosted.org/packages/78/56/85d2c8edc8fa12f900bb7672a1dd1e528fc919a24a753bd1c826a1f5afa5/prestapyt-0.5.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "61737ed1286703b7fca0d6ea0fed5671", "sha256": "650483339c289d9df0ce0ee59c00467275cd43d6924c2749a53a71f05a886bf2" }, "downloads": -1, "filename": "prestapyt-0.5.1.tar.gz", "has_sig": false, "md5_digest": "61737ed1286703b7fca0d6ea0fed5671", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11583, "upload_time": "2012-08-23T15:34:39", "url": "https://files.pythonhosted.org/packages/fe/d4/ef7b1c4f5597cdeff24ca5059c2dee22de9de9f74b7ca4dc26e1b951ccc0/prestapyt-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "fcbe0d982b5a3dadffbf13700522637e", "sha256": "cc7ffc86fc347ef5d9a605a69848269087631ad6e1b19e00f528ffb93cb2217f" }, "downloads": -1, "filename": "prestapyt-0.5.2-py2.6.egg", "has_sig": false, "md5_digest": "fcbe0d982b5a3dadffbf13700522637e", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 24953, "upload_time": "2012-09-04T10:07:06", "url": "https://files.pythonhosted.org/packages/2f/f0/82fe788130be51a1b45c0dde06cc131a74fafbe4a63b50e0fcc76adb2b27/prestapyt-0.5.2-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "a955f3ab578651f8a10cb8d81262b616", "sha256": "c6a2e3aabe6f9adf30c134a757d6628bdaacd64b697eb12560503b1df0c125d1" }, "downloads": -1, "filename": "prestapyt-0.5.2.tar.gz", "has_sig": false, "md5_digest": "a955f3ab578651f8a10cb8d81262b616", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11973, "upload_time": "2012-09-04T10:07:07", "url": "https://files.pythonhosted.org/packages/a5/fc/1e8e3a27f9f9f81611108d11b8f2b7a008525d8e8edc7392486909436f88/prestapyt-0.5.2.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "5164528c89fa03b43939d903ab18cf1c", "sha256": "4e049ba30557329a0b5a91661785a6890d19dfd547d5ca601d090cd78a02976a" }, "downloads": -1, "filename": "prestapyt-0.5.3-py2.6.egg", "has_sig": false, "md5_digest": "5164528c89fa03b43939d903ab18cf1c", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 25119, "upload_time": "2013-08-30T19:30:12", "url": "https://files.pythonhosted.org/packages/46/3b/69f5e07a76012a01aef7866f1b8c414342bf26eba977acb2d7d616addf21/prestapyt-0.5.3-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "c8305df7bad0b53a9e96d9170f0c127e", "sha256": "bf6287ac1e48f9d3a7c045dfb9e32bb27f40e4006f6ba258452a8f6dccdbfcdb" }, "downloads": -1, "filename": "prestapyt-0.5.3-py2.7.egg", "has_sig": false, "md5_digest": "c8305df7bad0b53a9e96d9170f0c127e", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 25021, "upload_time": "2013-08-30T19:24:20", "url": "https://files.pythonhosted.org/packages/40/55/278ddbc56796721f5f62eb560c200ea752ab8267414f338c00579fae1357/prestapyt-0.5.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "649c1aed4beb88876bf881a2fde733d1", "sha256": "6a783e535c0d0ae68820d0e860ff4b9185f3543781df74991f5b6ffcac35c347" }, "downloads": -1, "filename": "prestapyt-0.5.3.tar.gz", "has_sig": false, "md5_digest": "649c1aed4beb88876bf881a2fde733d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10690, "upload_time": "2013-08-30T19:30:24", "url": "https://files.pythonhosted.org/packages/44/99/0f53b4ed7951e67db91f086fa449e7ce8f33fe30a326a9d89349efe03b33/prestapyt-0.5.3.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "cd162892982d31f007539bf2a3dcce06", "sha256": "11b64c74908e62a4ccb61c13710b3db7f28997ffeba85d5c78cca1aec56b28c2" }, "downloads": -1, "filename": "prestapyt-0.6.0-py2.6.egg", "has_sig": false, "md5_digest": "cd162892982d31f007539bf2a3dcce06", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 26499, "upload_time": "2013-10-27T13:48:02", "url": "https://files.pythonhosted.org/packages/ee/7c/8b11a2849ce2fa7bfa536ed0e8e672cd90e49cde55880d22b29596083fca/prestapyt-0.6.0-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "286fbeea05e399625ce90405a00e8d32", "sha256": "bf5ba14eed0ce9e60dd5274b926711a73c6e86121e8b024285629a879dd277ad" }, "downloads": -1, "filename": "prestapyt-0.6.0-py2.7.egg", "has_sig": false, "md5_digest": "286fbeea05e399625ce90405a00e8d32", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 26406, "upload_time": "2013-10-27T13:48:07", "url": "https://files.pythonhosted.org/packages/6f/96/1375d4890c7a78c057c4e55082d86c5b3025b7527ab4e8606bf57089c6a4/prestapyt-0.6.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "6b7856c177ec75c9f08a504484bfbfdd", "sha256": "4e2a343fc31a08f16b81c13662280e2c61d8eb768f943c27ba2c8c9864592490" }, "downloads": -1, "filename": "prestapyt-0.6.0.tar.gz", "has_sig": false, "md5_digest": "6b7856c177ec75c9f08a504484bfbfdd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11449, "upload_time": "2013-10-27T13:48:05", "url": "https://files.pythonhosted.org/packages/81/ba/8eea95144ddabdb247fbc4c9df850dab2cdb69f3eb906739486b8864beb6/prestapyt-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "c285cd16306b72a28e2cb843bfb7cd0c", "sha256": "2ca26f8326e8c51f0f8e033793103f69bfc902125145d7821b3da6e3951403d4" }, "downloads": -1, "filename": "prestapyt-0.6.1-py2.6.egg", "has_sig": false, "md5_digest": "c285cd16306b72a28e2cb843bfb7cd0c", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 26982, "upload_time": "2013-12-15T21:04:18", "url": "https://files.pythonhosted.org/packages/cd/3f/0beb97a08b7e94bfce4e65bfcf60a40024735d06a393e8f8479e8deb7697/prestapyt-0.6.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "ad01acef147f8937b0091155a2eae7b9", "sha256": "a06727ab7f617ec549360665678dede3348485c0b9ec8b52d8c905f112034c89" }, "downloads": -1, "filename": "prestapyt-0.6.1-py2.7.egg", "has_sig": false, "md5_digest": "ad01acef147f8937b0091155a2eae7b9", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 26877, "upload_time": "2013-12-15T21:04:25", "url": "https://files.pythonhosted.org/packages/55/89/510e3561e0b18ffe5460cfecc11c76024db18a7fbe9d7a4d35cc754b9935/prestapyt-0.6.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "9f72628adf2519383f214cab8b938e9d", "sha256": "fffe39dbf12074a62919c7d2a76573b38dfe3a985b7b835f6a228e17aebc7d29" }, "downloads": -1, "filename": "prestapyt-0.6.1.tar.gz", "has_sig": false, "md5_digest": "9f72628adf2519383f214cab8b938e9d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11647, "upload_time": "2013-12-15T21:04:21", "url": "https://files.pythonhosted.org/packages/51/ca/6a689b5f9c54fbb90a54dae10e46e3bc59c237e92cf9eade4d0cebd84705/prestapyt-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "a3294ccff64f494d599a6c95cb19d7b0", "sha256": "e2281e0eaf27fbda29b205279b78c31c456607c5762d013ebc1be3ac1a04a8e4" }, "downloads": -1, "filename": "prestapyt-0.6.2-py2.6.egg", "has_sig": false, "md5_digest": "a3294ccff64f494d599a6c95cb19d7b0", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 27463, "upload_time": "2015-04-28T14:48:00", "url": "https://files.pythonhosted.org/packages/8c/27/6e58b4510599a6f1c53f3263b8c5dcf42958b5789b18a17424a8bca9f19a/prestapyt-0.6.2-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "0d085400ca557733f13a83c9714aa1fb", "sha256": "a99f73e68d71fc20cdaa6710651ba127f915b622640cb72147cf183ba26e2a59" }, "downloads": -1, "filename": "prestapyt-0.6.2-py2.7.egg", "has_sig": false, "md5_digest": "0d085400ca557733f13a83c9714aa1fb", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 27347, "upload_time": "2015-04-28T13:21:24", "url": "https://files.pythonhosted.org/packages/5e/0d/fda4007c3bfd5fb7fa3ef4d2eb079237fcc1d8d12834ec90fb5f39341906/prestapyt-0.6.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "392fbfe679a057776cc27fd727007cfc", "sha256": "3671afbf146c0577089025abfe1ce71391eda70d2d38466e69c57664ae589639" }, "downloads": -1, "filename": "prestapyt-0.6.2.tar.gz", "has_sig": false, "md5_digest": "392fbfe679a057776cc27fd727007cfc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11559, "upload_time": "2015-04-28T14:48:09", "url": "https://files.pythonhosted.org/packages/55/f1/64b6eca5dc1e526f6c672f1f37c30f9806d2527833daa909c9db8d3448bd/prestapyt-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "dd40de761ecf2c74452c80b4f2dddcd4", "sha256": "5fa29ae648deaf66e6889a1c00d8e380b6cc88e0640392b825ac93f458ba1944" }, "downloads": -1, "filename": "prestapyt-0.6.3-py2.7.egg", "has_sig": false, "md5_digest": "dd40de761ecf2c74452c80b4f2dddcd4", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 27469, "upload_time": "2016-09-01T07:47:35", "url": "https://files.pythonhosted.org/packages/d9/f1/ac1917bf543579eaa7f2fa0cf2aaa7d0f933048bc975a52cf6dd0aa8b78e/prestapyt-0.6.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "5b5d1b9264501e042873a7dd1b283cfb", "sha256": "f04a46327205cea7b9f5c5be73fd2c781beabb74646908c96d94ece130807f69" }, "downloads": -1, "filename": "prestapyt-0.6.3-py2-none-any.whl", "has_sig": false, "md5_digest": "5b5d1b9264501e042873a7dd1b283cfb", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 16399, "upload_time": "2016-09-01T07:50:56", "url": "https://files.pythonhosted.org/packages/f8/b2/d4f7b2c683822f0f609000860264a87e8248b01355a86556b38067dfeaa8/prestapyt-0.6.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f8984c2e89cf81a347d971c1b020a231", "sha256": "76d712f8daaacfbfcca569c60844d7ca4709ab51f397a3468fdee62372d3eb4a" }, "downloads": -1, "filename": "prestapyt-0.6.3.tar.gz", "has_sig": false, "md5_digest": "f8984c2e89cf81a347d971c1b020a231", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11973, "upload_time": "2016-09-01T07:47:20", "url": "https://files.pythonhosted.org/packages/af/96/1a1e0dce3414ad58e9d064ad207b44b6f53b27b50d02d3aa7ee05b432e01/prestapyt-0.6.3.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "dea7db9930b0ef024a39b0e853f61728", "sha256": "42a8e11cf3349cd038be28a62ce42c41867403ed0d5bf8537bbf27a00a443ff2" }, "downloads": -1, "filename": "prestapyt-0.7.0-py2.7.egg", "has_sig": false, "md5_digest": "dea7db9930b0ef024a39b0e853f61728", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 27813, "upload_time": "2016-10-25T13:43:46", "url": "https://files.pythonhosted.org/packages/70/cd/88af11334390b79a145777ca1eaaec382262d749760d6d8da99989ba9778/prestapyt-0.7.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "33f663fa54c3764f4c4030497414e946", "sha256": "30648be316c87785e1fa258f602ee95e37d7fdf00fe262f22c9819a6ca8b2167" }, "downloads": -1, "filename": "prestapyt-0.7.0-py2-none-any.whl", "has_sig": false, "md5_digest": "33f663fa54c3764f4c4030497414e946", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 16546, "upload_time": "2016-10-25T13:44:17", "url": "https://files.pythonhosted.org/packages/8e/d6/5ceabc54435c613f098794986932a0e96aa46706a452cb7785de3e9d0873/prestapyt-0.7.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "74f6ffb35a094cc3c86a094ec5d8841e", "sha256": "1579dea1a5ff92954c0147d8a3e0ca8acccb4d24f3338db33a63569032529d74" }, "downloads": -1, "filename": "prestapyt-0.7.0.tar.gz", "has_sig": false, "md5_digest": "74f6ffb35a094cc3c86a094ec5d8841e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12034, "upload_time": "2016-10-25T13:43:44", "url": "https://files.pythonhosted.org/packages/10/96/cc8c90e88656c02dcff9ddf9110c805a7ad64ee09118e7d6e648e4d9c040/prestapyt-0.7.0.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "9af0cb72890239dbddf6b70fce83292f", "sha256": "ad204386d8425f917f83931c08bf9c0e1afa49acd152f342cbf4cade3dc0ca91" }, "downloads": -1, "filename": "prestapyt-0.8.0-py2.7.egg", "has_sig": false, "md5_digest": "9af0cb72890239dbddf6b70fce83292f", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 28287, "upload_time": "2017-05-15T09:41:13", "url": "https://files.pythonhosted.org/packages/bf/83/acbcecd399d25b43e0869754f46699a4c775e6ada90f238b31e05f6f7dc6/prestapyt-0.8.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "8a5ac0b197967e17eeb4df0e72abc3a2", "sha256": "02f7086f737a96d652c697ca9d76eccb1bb21a0bfb92a24654487cc52b685b27" }, "downloads": -1, "filename": "prestapyt-0.8.0-py2-none-any.whl", "has_sig": false, "md5_digest": "8a5ac0b197967e17eeb4df0e72abc3a2", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 16807, "upload_time": "2017-05-15T09:41:16", "url": "https://files.pythonhosted.org/packages/b2/04/3f3e0358498e592df3d7ba091ef35d6a5b15e51bb176e941636b0c9fe4c2/prestapyt-0.8.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "09c867d1edd58fb318c7c93159ad2dea", "sha256": "9af8cc0a8c64ec4315e82ca0bf4b80fbb37440e8e0ed41323feac992822074dc" }, "downloads": -1, "filename": "prestapyt-0.8.0.tar.gz", "has_sig": false, "md5_digest": "09c867d1edd58fb318c7c93159ad2dea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12393, "upload_time": "2017-05-15T09:41:11", "url": "https://files.pythonhosted.org/packages/74/13/62c2074443eaaa0e57cd4ebab8cf07eb29ff2985f1e7e65c19d032861ca4/prestapyt-0.8.0.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "f618c7cd51c4a92b249c86ce531db776", "sha256": "c5a1dc92fc96dcb20214c5207d4724cf0b2a3429c03e16194c6d765d3be1e550" }, "downloads": -1, "filename": "prestapyt-0.9.0.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "f618c7cd51c4a92b249c86ce531db776", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23309, "upload_time": "2017-09-28T12:43:20", "url": "https://files.pythonhosted.org/packages/fc/9e/139909e0ae34b92bd19d8d2a95acc84a408ae0d156109fb7b2712f7a96e8/prestapyt-0.9.0.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "e8ad3a6e1d731e2432daae01987abaf5", "sha256": "1a1cf71cfb34dd435ce5d710d674f39e2110197b131fd8ed1ba6021723858ed9" }, "downloads": -1, "filename": "prestapyt-0.9.0-py2.7.egg", "has_sig": false, "md5_digest": "e8ad3a6e1d731e2432daae01987abaf5", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 28864, "upload_time": "2017-09-28T12:43:19", "url": "https://files.pythonhosted.org/packages/b1/d9/0e4ea6b1d530c06f4eef6b4eaa128868f0f4c9cd21f14f1c2613c2045afc/prestapyt-0.9.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "46e59178f6244031f45d8db832165577", "sha256": "318adbabd0574e7346434a756f3cd26097b07f536ecf14e2e9748891f7ac1bc4" }, "downloads": -1, "filename": "prestapyt-0.9.0-py2-none-any.whl", "has_sig": false, "md5_digest": "46e59178f6244031f45d8db832165577", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 17142, "upload_time": "2017-09-28T12:43:18", "url": "https://files.pythonhosted.org/packages/a5/de/03d0afae1233f34d38352d30e45ee741d6caadb4da6b43cfe5023d974db0/prestapyt-0.9.0-py2-none-any.whl" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "f618c7cd51c4a92b249c86ce531db776", "sha256": "c5a1dc92fc96dcb20214c5207d4724cf0b2a3429c03e16194c6d765d3be1e550" }, "downloads": -1, "filename": "prestapyt-0.9.0.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "f618c7cd51c4a92b249c86ce531db776", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23309, "upload_time": "2017-09-28T12:43:20", "url": "https://files.pythonhosted.org/packages/fc/9e/139909e0ae34b92bd19d8d2a95acc84a408ae0d156109fb7b2712f7a96e8/prestapyt-0.9.0.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "e8ad3a6e1d731e2432daae01987abaf5", "sha256": "1a1cf71cfb34dd435ce5d710d674f39e2110197b131fd8ed1ba6021723858ed9" }, "downloads": -1, "filename": "prestapyt-0.9.0-py2.7.egg", "has_sig": false, "md5_digest": "e8ad3a6e1d731e2432daae01987abaf5", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 28864, "upload_time": "2017-09-28T12:43:19", "url": "https://files.pythonhosted.org/packages/b1/d9/0e4ea6b1d530c06f4eef6b4eaa128868f0f4c9cd21f14f1c2613c2045afc/prestapyt-0.9.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "46e59178f6244031f45d8db832165577", "sha256": "318adbabd0574e7346434a756f3cd26097b07f536ecf14e2e9748891f7ac1bc4" }, "downloads": -1, "filename": "prestapyt-0.9.0-py2-none-any.whl", "has_sig": false, "md5_digest": "46e59178f6244031f45d8db832165577", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 17142, "upload_time": "2017-09-28T12:43:18", "url": "https://files.pythonhosted.org/packages/a5/de/03d0afae1233f34d38352d30e45ee741d6caadb4da6b43cfe5023d974db0/prestapyt-0.9.0-py2-none-any.whl" } ] }