{ "info": { "author": "Adam Talsma", "author_email": "se-adam.talsma@ccpgames.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: System Administrators", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.4", "Topic :: System :: Software Distribution", "Topic :: Utilities" ], "description": "pypicloud-tools\n===============\n\n`View this on GitHub\nPages `__\n\n|Build Status| |Coverage Status| |Version| |Download format| |Downloads\nthis month| |Development Status| |License|\n\nTools to bypass a PyPICloud installation and communicate directly with\nS3\n\nUtilities\n---------\n\nUpload\n~~~~~~\n\nUploads file(s) to the PyPICloud S3 bucket directly and performs an\nadmin API call to rebuild the PyPICloud index after.\n\nExample:\n\n.. code:: bash\n\n $ upload dist/*\n Uploading example-project/example-project-0.0.1.tar.gz ..... done!\n Uploading example-project/example_project-0.0.1-py2-none-any.whl ..... done!\n Uploading example-project/example_project-0.0.1-py2.7.egg ...... done!\n PyPICloud server at http://your.pypicloud.server/pypi updated\n\nIt's fine if the file names use altering hypens/underscores per release type\nlike you see above, they only need to match the initial part of the key before\nthe ``/`` to be considered the same package.\n\nDownload\n~~~~~~~~\n\nDownloads the latest or a specific version directly from S3. Does not\ntalk to PyPICloud and does not install the downloaded package. You can\nuse pip to do either/both of those things.\n\nAlso possible with the download command is the ``--url`` flag to only\nprint a download URL (usable for 5 minutes).\n\nBy default, if there are multiple releases of the same package+release,\ndownload will prefer wheels, then eggs, then source distributions. You\ncan override that behavior with the ``--egg`` and ``--src`` flags.\n\nExamples:\n\n.. code:: bash\n\n $ download example_project==0.0.1\n example_project-0.0.1-py2-none-any.whl\n\n.. code:: bash\n\n $ download example-project --egg\n example_project-0.0.1-py2.7.egg\n\nPipes and redirects work like you'd expect:\n\n.. code:: bash\n\n $ download example_project --src | tar -xzf -\n\nList\n~~~~\n\nLists a package's releases, or releases of a package at a specific\nversion. Again, talks straight to S3 and bypasses the PyPICloud\ninstallation.\n\nExample:\n\n.. code:: bash\n\n $ list example_project\n example-project==0.0.1 : example-project-0.0.1.tar.gz\n example-project==0.0.1 : example_project-0.0.1-py2.7.egg\n example-project==0.0.1 : example_project-0.0.1-py2-none-any.whl\n\nListing multiple packages or packages with a version specifier is also\nsupported.\n\nWhen called without any arguments, ``list`` will display all known\npackages.\n\nRehost\n~~~~~~\n\nRehosts an upstream package from PyPI into the pypicloud installation.\nThis can be handy if you have pypicloud clients which only have access\nto it and s3 but not the rest of the internet.\n\nExample:\n\n.. code:: bash\n\n $ rehost requests==1.0.0\n Collecting requests==1.0.0\n Downloading requests-1.0.0.tar.gz (335kB)\n 100% |\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588| 335kB 929kB/s\n Saved /var/folders/53/kl4v4_9509ng148kp_pwmc5h0000gn/T/tmpuj5JUJ/requests-1.0.0.tar.gz\n Successfully downloaded requests\n Uploading requests/requests-1.0.0.tar.gz ............ done!\n PyPICloud server at http://your_pypicloud_server/pypi updated\n\nIf a specific version is not provided, the latest will be used. Multiple\npackages can be used in the same command.\n\nInstallation\n------------\n\nSimple\n~~~~~~\n\n.. code:: bash\n\n $ pip install pypicloud-tools\n\n>From source\n~~~~~~~~~~~\n\n.. code:: bash\n\n $ git clone https://github.com/ccpgames/pypicloud-tools.git\n $ cd pypicloud-tools\n $ python setup.py install\n\nConfiguration\n-------------\n\nConfiguration for pypicloud-tools piggybacks on your ``~/.pypirc`` file.\nYou can specify an alternate config file with the ``--config`` flag, but\nit must be in the same syntax. That syntax is:\n\n.. code:: text\n\n [pypicloud]\n repository:http://your.pypicloud.server/pypi\n username:admin\n password:hunter7\n bucket:your_bucket\n access:some_key\n secret:other_key\n acl:optional_acl\n region:optional_region\n\nThe key **must** be ``pypicloud``, it is the only key pypicloud-tools\nwill look at. The username/password combination should have admin\ncredentials on the PyPICloud installation as it needs to call\n``/admin/rebuild`` after a succesful upload.\n\nCopyright and License\n=====================\n\npypicloud-tools was written by Adam Talsma\n\nCopyright (c) 2015 CCP hf.\n\nPermission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be included\nin all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n.. |Build Status| image:: https://travis-ci.org/ccpgames/pypicloud-tools.png?branch=master\n :target: https://travis-ci.org/ccpgames/pypicloud-tools\n.. |Coverage Status| image:: https://coveralls.io/repos/ccpgames/pypicloud-tools/badge.svg?branch=master\n :target: https://coveralls.io/r/ccpgames/pypicloud-tools?branch=master\n.. |Version| image:: https://img.shields.io/pypi/v/pypicloud-tools.svg\n :target: https://pypi.python.org/pypi/pypicloud-tools/\n.. |Download format| image:: https://img.shields.io/badge/format-wheel-green.svg?\n :target: https://pypi.python.org/pypi/pypicloud-tools/\n.. |Downloads this month| image:: https://img.shields.io/pypi/dm/pypicloud-tools.svg\n :target: https://pypi.python.org/pypi/pypicloud-tools/\n.. |Development Status| image:: https://img.shields.io/badge/status-beta-orange.svg\n :target: https://pypi.python.org/pypi/pypicloud-tools/\n.. |License| image:: https://img.shields.io/github/license/ccpgames/pypicloud-tools.svg\n :target: https://pypi.python.org/pypi/pypicloud-tools/", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "pypicloud-tools", "package_url": "https://pypi.org/project/pypicloud-tools/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/pypicloud-tools/", "project_urls": null, "release_url": "https://pypi.org/project/pypicloud-tools/0.1.3/", "requires_dist": [ "boto (>=2.38.0)", "filechunkio (>=1.6)", "futures (>=2.2.0,<3.0.0)", "pip (>=7.0)", "requests (>=2.6.2)", "setuptools (>=15.0)" ], "requires_python": "", "summary": "Tools to bypass PyPICloud and work with S3 directly", "version": "0.1.3" }, "last_serial": 1852840, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "6df35bc44e543b92c711bcbcb80da5f4", "sha256": "e33c23338bf6c61a45e2e3f8f8488a65272d63c7a86d293c964bd9541bee9d43" }, "downloads": -1, "filename": "pypicloud_tools-0.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6df35bc44e543b92c711bcbcb80da5f4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9762, "upload_time": "2015-05-06T15:46:14", "url": "https://files.pythonhosted.org/packages/79/f3/fd41f062fb9decf06e8d677247484f2b4dc08e3bbdedc3a64d4fd30e77a4/pypicloud_tools-0.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "175b68b31b7236c37b2cc5fc8d6e811c", "sha256": "a6b6a424a517a76b66f46d8c20a8336c588ba6131f52621f18bb9387df73a221" }, "downloads": -1, "filename": "pypicloud-tools-0.0.1.tar.gz", "has_sig": false, "md5_digest": "175b68b31b7236c37b2cc5fc8d6e811c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6294, "upload_time": "2015-05-06T15:46:18", "url": "https://files.pythonhosted.org/packages/02/59/d99d08344e8f91be2f8c603f160ffb4e692c2931e8ec3080c6a33748e260/pypicloud-tools-0.0.1.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "4a5a56ee71b2db1ace271e08ec8df1d6", "sha256": "0da72659238eb5665f210f4482b35521c62e314dd2dbef17f0ce0c3d0bc77d7d" }, "downloads": -1, "filename": "pypicloud_tools-0.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4a5a56ee71b2db1ace271e08ec8df1d6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10019, "upload_time": "2015-05-06T18:42:49", "url": "https://files.pythonhosted.org/packages/53/dc/4009a4b9e4e34d97a4e62eeccc9a2668b893dbc180cef729291c001abe9b/pypicloud_tools-0.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7568d0167172ad847222847a5abd4761", "sha256": "6cefa58b3200555690cd30c0a59d1c9bc4f8b8b0e20c418ab18c36ec28920bcb" }, "downloads": -1, "filename": "pypicloud-tools-0.0.2.tar.gz", "has_sig": false, "md5_digest": "7568d0167172ad847222847a5abd4761", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6514, "upload_time": "2015-05-06T18:42:53", "url": "https://files.pythonhosted.org/packages/90/b1/ea088041f176a8281e440c80ad93d890d7ffcade8d2e780fa4e4d0cab3bf/pypicloud-tools-0.0.2.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "27a1c824e44911edde47a67d00259dc0", "sha256": "5dbf083e5bc72f565944d0ac28179bceea09703d989f72872f856144c14f5f60" }, "downloads": -1, "filename": "pypicloud_tools-0.0.3-py2-none-any.whl", "has_sig": false, "md5_digest": "27a1c824e44911edde47a67d00259dc0", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 10015, "upload_time": "2015-05-08T22:52:43", "url": "https://files.pythonhosted.org/packages/31/be/523e18e321dd383394cc782e15f142f0368dad37a2ad4196544dae1bebcb/pypicloud_tools-0.0.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "aed38499cc47a888dc8743ffc5b47fe3", "sha256": "77370dc9a436c14077c7f180c7f857c940f666195698759cb9e5df4c08822970" }, "downloads": -1, "filename": "pypicloud-tools-0.0.3.tar.gz", "has_sig": false, "md5_digest": "aed38499cc47a888dc8743ffc5b47fe3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11880, "upload_time": "2015-05-08T22:52:46", "url": "https://files.pythonhosted.org/packages/f3/f8/4d073b1aa1f2e7b202162293a7e940f853472e24d729016d6f15917b82fe/pypicloud-tools-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "e22bdda1fdac67aeac8c513e48169154", "sha256": "2868cd9bf1925a87724a9743d012925f62c68ac27fcdafee900b9042d4e414d7" }, "downloads": -1, "filename": "pypicloud_tools-0.0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e22bdda1fdac67aeac8c513e48169154", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10084, "upload_time": "2015-05-11T14:20:59", "url": "https://files.pythonhosted.org/packages/0b/dc/c3bf0ec47bacaebac09cc3970b0dfaf3c8399fd69e9a233dcc7aed04e1ee/pypicloud_tools-0.0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "18651a6c778b48c0343fdfb846498083", "sha256": "8b277ce1357309f0d93dce25f2c68782ab89bef22943d1337e9cf0e6542497a0" }, "downloads": -1, "filename": "pypicloud-tools-0.0.4.tar.gz", "has_sig": false, "md5_digest": "18651a6c778b48c0343fdfb846498083", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11942, "upload_time": "2015-05-11T14:20:55", "url": "https://files.pythonhosted.org/packages/ca/81/4c6e05b8bc804ed820aa72a40afc90ef703507a6029b738aa5b2543d4a42/pypicloud-tools-0.0.4.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "d7e6812f241012ff063954761d9c2e7f", "sha256": "9210790a58675faaea6c2825dfae9685895c2edc0ea3e299d85ddf446bca9605" }, "downloads": -1, "filename": "pypicloud_tools-0.0.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d7e6812f241012ff063954761d9c2e7f", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 10832, "upload_time": "2015-05-21T19:59:47", "url": "https://files.pythonhosted.org/packages/56/37/00d3f5aebf8104740f3251befdedec4b871a843ce4286e2ff7fff69a74b0/pypicloud_tools-0.0.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "631ddb3a5ac4e9e570b90cedd71bafbb", "sha256": "c591f792fc11d9c30eac71ea139ab0941a46912d41c353b53e45356d87329128" }, "downloads": -1, "filename": "pypicloud-tools-0.0.5.tar.gz", "has_sig": false, "md5_digest": "631ddb3a5ac4e9e570b90cedd71bafbb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13111, "upload_time": "2015-05-21T19:59:44", "url": "https://files.pythonhosted.org/packages/7d/0b/3254b66d26b83d726d91d2c474514ca3213632908bfc860bf9597d4a1e20/pypicloud-tools-0.0.5.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "02f851224d272b3556fb99ad84205f39", "sha256": "317fef29c78365d14eecb421904ee8802d3511a53d8167595dbe2cce9680a488" }, "downloads": -1, "filename": "pypicloud_tools-0.0.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "02f851224d272b3556fb99ad84205f39", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 15910, "upload_time": "2015-05-21T20:39:38", "url": "https://files.pythonhosted.org/packages/a5/f5/bf914f9b8762b0fa0fc6333b177046711b4258f23f4ea90e0e4540c982d1/pypicloud_tools-0.0.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c59d2dd7f1f863ea35b2166ddc68ab8d", "sha256": "a99dfae8ae56c32a62b0460c1241c749652bb12af3135505cb094be3abf4246d" }, "downloads": -1, "filename": "pypicloud-tools-0.0.6.tar.gz", "has_sig": false, "md5_digest": "c59d2dd7f1f863ea35b2166ddc68ab8d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18695, "upload_time": "2015-05-21T20:39:34", "url": "https://files.pythonhosted.org/packages/a7/ed/77fecbc53f31189472a244589880854bd83b19a33e0fd50293768865f5a0/pypicloud-tools-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "dc6e5d41d6c48de98b667eee3538fe03", "sha256": "bc85df5b400cceb3ea29918b31f41ad0ba25b750d5f5a6423f0efb88eaea76b9" }, "downloads": -1, "filename": "pypicloud_tools-0.0.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "dc6e5d41d6c48de98b667eee3538fe03", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 15916, "upload_time": "2015-05-21T20:47:31", "url": "https://files.pythonhosted.org/packages/6e/d5/88e075bae55d1f2ce9af98b9c803ff4e9ebb2ab47cd99c62baa3a2b22b31/pypicloud_tools-0.0.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "443b2815651edb1a32803bf961becc77", "sha256": "f2a4e86b0f0efa1fc66a3d668db9bbef3e637033c173bca789984f5acb462282" }, "downloads": -1, "filename": "pypicloud-tools-0.0.7.tar.gz", "has_sig": false, "md5_digest": "443b2815651edb1a32803bf961becc77", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18692, "upload_time": "2015-05-21T20:47:25", "url": "https://files.pythonhosted.org/packages/84/b4/aff8527baafc879e3d5c29f5b556207d8b82822ee7a31b8ea6e204bce9d2/pypicloud-tools-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "94909df1cb19a3c6ab29af37094d6d7d", "sha256": "0ec61744fb0809dfc4cfe89548555fe4b4467b04d747751e87a7b2df718e18aa" }, "downloads": -1, "filename": "pypicloud_tools-0.0.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "94909df1cb19a3c6ab29af37094d6d7d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 15825, "upload_time": "2015-05-26T17:08:56", "url": "https://files.pythonhosted.org/packages/36/ab/ecd3aa14790b935a422433963ff2eb33758d1dad03b6f04bf60610762c7e/pypicloud_tools-0.0.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dfafb23ec628bdc34dc488be19e5a832", "sha256": "4f73590deddbfbb04fb799a7f6ce0ed878654e271064fe2d793d72e8ae92a8e4" }, "downloads": -1, "filename": "pypicloud-tools-0.0.8.tar.gz", "has_sig": false, "md5_digest": "dfafb23ec628bdc34dc488be19e5a832", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18600, "upload_time": "2015-05-26T17:08:53", "url": "https://files.pythonhosted.org/packages/cc/cf/10aed841df4d1bde07ca794fe17ffa64e58b0d4a324e642eb6aa323c6a3f/pypicloud-tools-0.0.8.tar.gz" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "47d1552889868286842909fd6b723d60", "sha256": "c6523b38ace8527fc2e6ad200d1f53b5b528f0f127c55bd9d698175ce371a77d" }, "downloads": -1, "filename": "pypicloud_tools-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "47d1552889868286842909fd6b723d60", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 17434, "upload_time": "2015-05-29T15:15:15", "url": "https://files.pythonhosted.org/packages/ef/56/dfd3a8cd4ed1ef0af1aef8615fb7670a5d52e1f480a3308b024e73ffbce4/pypicloud_tools-0.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a4627c717fc5040396b8e67bd72856a0", "sha256": "42d580e8dec354bf26739e559bb25d799fc0c462f2e5c26983fbc873cfc3f0a5" }, "downloads": -1, "filename": "pypicloud-tools-0.1.0.tar.gz", "has_sig": false, "md5_digest": "a4627c717fc5040396b8e67bd72856a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20755, "upload_time": "2015-05-29T15:15:11", "url": "https://files.pythonhosted.org/packages/d6/dd/85300c4c2ca49528cab43d6544292b2e5b5ea4b69c0d21ab2f2b286cb78d/pypicloud-tools-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "f45e45292d627268c7257fbccdd6d93c", "sha256": "1e5f052c479d9327e643926870b6432e22c9293e401edda5bf15e4e6369c1fac" }, "downloads": -1, "filename": "pypicloud_tools-0.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f45e45292d627268c7257fbccdd6d93c", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 17474, "upload_time": "2015-05-29T15:29:45", "url": "https://files.pythonhosted.org/packages/c0/e8/3f93f58adc7ed2b5083b6d4f5430768c9dda6269f45a53b73af836f579b5/pypicloud_tools-0.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "63e6d42335ee95778ea95f9b5f546c51", "sha256": "f3a95e357909b5271d1cf31d00fa29281f19785b0a919e7027f17874a47e91eb" }, "downloads": -1, "filename": "pypicloud-tools-0.1.1.tar.gz", "has_sig": false, "md5_digest": "63e6d42335ee95778ea95f9b5f546c51", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20820, "upload_time": "2015-05-29T15:29:43", "url": "https://files.pythonhosted.org/packages/01/24/2104a42d50e2b7c7a1fce860f625d5301c0639c7eac3427432c04e39e9b9/pypicloud-tools-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "ec116b4be5bd5dba66dba605451e1a31", "sha256": "cf20c11549a944849fc304e485d776b590286af92929db2d554327834d83e1f9" }, "downloads": -1, "filename": "pypicloud_tools-0.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ec116b4be5bd5dba66dba605451e1a31", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 17384, "upload_time": "2015-05-29T18:56:58", "url": "https://files.pythonhosted.org/packages/36/36/f28828a595ca6db406ee16e641177aefe71c3da9ee6ada946e3317a6194d/pypicloud_tools-0.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dcef1fab408b9b2590a985826fcac1f7", "sha256": "eafecfd3702f5221f6762b1a4fc09b044bb8be444bb7ab736bfe6f5b273e28da" }, "downloads": -1, "filename": "pypicloud-tools-0.1.2.tar.gz", "has_sig": false, "md5_digest": "dcef1fab408b9b2590a985826fcac1f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20928, "upload_time": "2015-05-29T18:56:55", "url": "https://files.pythonhosted.org/packages/35/06/32db741d3861afd958b54bfbd35153f98a63ca59572620d635a3276f9448/pypicloud-tools-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "f504018624f76f887edc702244f0bb77", "sha256": "e0ac7cef60ab46165216514c2a714926ede362e312f57bd556f9259a0d3e86d0" }, "downloads": -1, "filename": "pypicloud_tools-0.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f504018624f76f887edc702244f0bb77", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17699, "upload_time": "2015-12-08T21:34:16", "url": "https://files.pythonhosted.org/packages/7f/8b/d3dc13cfa6f32581aa8e0a44c23630a3a467e69123fbd5d5e84f3985de5c/pypicloud_tools-0.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a73c8e1871d30b7902b8abcbedb16cc4", "sha256": "0131af75d115480504db1999fde0fde1b6a1ea1a0061f29830f28d6a5022140c" }, "downloads": -1, "filename": "pypicloud-tools-0.1.3.tar.gz", "has_sig": false, "md5_digest": "a73c8e1871d30b7902b8abcbedb16cc4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21454, "upload_time": "2015-12-08T21:34:23", "url": "https://files.pythonhosted.org/packages/08/ca/aaabc040b0cba362f1e6450078a0e1e1eee1f150418d21d8233d3da85302/pypicloud-tools-0.1.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "f504018624f76f887edc702244f0bb77", "sha256": "e0ac7cef60ab46165216514c2a714926ede362e312f57bd556f9259a0d3e86d0" }, "downloads": -1, "filename": "pypicloud_tools-0.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f504018624f76f887edc702244f0bb77", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17699, "upload_time": "2015-12-08T21:34:16", "url": "https://files.pythonhosted.org/packages/7f/8b/d3dc13cfa6f32581aa8e0a44c23630a3a467e69123fbd5d5e84f3985de5c/pypicloud_tools-0.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a73c8e1871d30b7902b8abcbedb16cc4", "sha256": "0131af75d115480504db1999fde0fde1b6a1ea1a0061f29830f28d6a5022140c" }, "downloads": -1, "filename": "pypicloud-tools-0.1.3.tar.gz", "has_sig": false, "md5_digest": "a73c8e1871d30b7902b8abcbedb16cc4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21454, "upload_time": "2015-12-08T21:34:23", "url": "https://files.pythonhosted.org/packages/08/ca/aaabc040b0cba362f1e6450078a0e1e1eee1f150418d21d8233d3da85302/pypicloud-tools-0.1.3.tar.gz" } ] }