{ "info": { "author": "Uploadcare LLC", "author_email": "hello@uploadcare.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Framework :: Django", "Framework :: Django :: 1.11", "Framework :: Django :: 2.0", "Framework :: Django :: 2.1", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": ".. image:: https://ucarecdn.com/2f4864b7-ed0e-4411-965b-8148623aa680/-/inline/yes/uploadcare-logo-mark.svg\n :target: https://uploadcare.com/?utm_source=github&utm_campaign=pyuploadcare\n :height: 64 px\n :width: 64 px\n :align: left\n\n=============================================\nPyUploadcare: a Python library for Uploadcare\n=============================================\n\n.. image:: https://badge.fury.io/py/pyuploadcare.svg\n :target: https://badge.fury.io/py/pyuploadcare\n.. image:: https://travis-ci.org/uploadcare/pyuploadcare.png?branch=master\n :target: https://travis-ci.org/uploadcare/pyuploadcare\n :alt: Build Status\n.. image:: https://readthedocs.org/projects/pyuploadcare/badge/?version=latest\n :target: https://readthedocs.org/projects/pyuploadcare/?badge=latest\n :alt: Documentation Status\n.. image:: https://coveralls.io/repos/github/uploadcare/pyuploadcare/badge.svg?branch=master\n :target: https://coveralls.io/github/uploadcare/pyuploadcare?branch=master\n :alt: Coverage\n.. image:: https://landscape.io/github/uploadcare/pyuploadcare/master/landscape.svg?style=flat\n :target: https://landscape.io/github/uploadcare/pyuploadcare/master\n :alt: Code Health\n.. image:: https://img.shields.io/badge/tech-stack-0690fa.svg?style=flat\n :target: https://stackshare.io/uploadcare/stacks/\n :alt: Uploadcare tech stack\n\nSimple file uploads for the web are of most importance\nfor us at `Uploadcare`_. Today, everyone is used to the routine of\nallowing users to upload their pics or attach resumes. The routine\ncovers it all: installing image processing libraries, adjusting permissions,\nensuring servers never go down, and enabling CDN.\nFeatures like uploading from Facebook or manual crop are weighty,\nhence rare.\nOur goal is to change the status quo.\n\nThis library consists of the `Uploadcare`_ API interface and a couple\nof Django goodies. You might also want to check out this `guide`_ as\na starting point.\n\nSimple as that, Uploadcare ``ImageField`` can be added to an\nexisting Django project in just a couple of `simple steps`_.\nThis will enable your users to see the upload progress, pick files\nfrom Google Drive or Instagram, and edit a form while files are\nbeing uploaded asynchronously.\n\n.. code-block:: python\n\n from django import forms\n from django.db import models\n\n from pyuploadcare.dj.models import ImageField\n from pyuploadcare.dj.forms import FileWidget\n\n\n class Candidate(models.Model):\n photo = ImageField(blank=True, manual_crop=\"\")\n\n\n # optional. provide advanced widget options: https://uploadcare.com/docs/uploads/widget/config/#options\n class CandidateForm(forms.Form):\n photo = ImageField(widget=FileWidget(attrs={\n 'data-cdn-base': 'https://cdn.super-candidates.com',\n 'data-image-shrink': '1024x1024',\n }))\n\n.. image:: https://ucarecdn.com/dbb4021e-b20e-40fa-907b-3da0a4f8ed70/-/resize/800/manual_crop.png\n\nFeatures\n--------\n\n- Python wrapper for Uploadcare `REST`_ and `Upload`_ APIs.\n- Django widget with useful manual crop and multi-upload.\n- *ucare* console utility.\n- hosted assets (Kudos to `S\u0142awek Ehlert`_!).\n\nRequirements\n------------\n\n``pyuploadcare`` requires Python 2.7, 3.4, 3.5, 3.6, 3.7.\n\nIf you're using ``pyuploadcare`` with Django, check ``.travis.yml`` for supported\nPython-Django combinations.\n\nObsolete versions of Python and Django are officially not supported, but chances\nare everything still works. If you have to use those, modify tox.ini, test and\nrun at your own risk ;) Or, you may use older versions of the library.\n\nInstallation\n------------\n\nIn order to install ``pyuploadcare``, simply run:\n\n.. code-block:: console\n\n $ pip install pyuploadcare\n\nor, if you prefer it the old way:\n\n.. code-block:: console\n\n $ easy_install pyuploadcare\n\nTesting\n-------\n\nBesides the `Travis CI`_ we use tox. In order to run tests just:\n\n.. code-block:: console\n\n $ pip install tox\n $ tox\n\nSecurity issues\n---------------\n\nIf you think you ran into something in Uploadcare libraries which might have\nsecurity implications, please hit us up at `bugbounty@uploadcare.com`_\nor Hackerone.\n\nWe'll contact you personally in a short time to fix an issue through co-op and\nprior to any public disclosure.\n\nFeedback\n--------\n\nIssues and PRs are welcome. You can provide your feedback or drop us a support\nrequest at `hello@uploadcare.com`_.\n\nContributors\n------------\n\n- `@marselester`_\n- `@dmitry-mukhin`_\n- `@zerc`_\n- `@homm`_\n- `@va1en0k`_\n- `@andreshkovskii`_\n\n\n\n.. _Uploadcare: https://uploadcare.com/?utm_source=github&utm_campaign=pyuploadcare\n.. _guide: https://uploadcare.com/docs/guides/django/?utm_source=github&utm_campaign=pyuploadcare\n.. _simple steps: https://pyuploadcare.readthedocs.org/en/latest/quickstart.html\n.. _S\u0142awek Ehlert: https://github.com/slafs\n.. _Travis CI: https://travis-ci.org/uploadcare/pyuploadcare\n.. _REST: https://uploadcare.com/docs/api_reference/rest/?utm_source=github&utm_campaign=pyuploadcare\n.. _Upload: https://uploadcare.com/docs/api_reference/upload/?utm_source=github&utm_campaign=pyuploadcare\n.. _@marselester: https://github.com/marselester\n.. _@dmitry-mukhin: https://github.com/dmitry-mukhin\n.. _@zerc: https://github.com/zerc\n.. _@homm: https://github.com/homm\n.. _@va1en0k: https://github.com/va1en0k\n.. _@andreshkovskii: https://github.com/andrewshkovskii/\n\n.. _bugbounty@uploadcare.com: mailto:bugbounty@uploadcare.com\n.. _hello@uploadcare.com: mailto:hello@uploadcare.com\n\n\n.. :changelog:\n\nHistory\n-------\n\nAll notable changes to this project will be documented in this file.\n\nThe format is based on `Keep a Changelog`_,\nand this project adheres to `Semantic Versioning`_.\n\n\n\n`2.6.0`_ - 2018-11-29\n~~~~~~~~~~~~~~~~~~~~~\n\nChanged\n+++++++\n\n- Improved error logging.\n- Update bundled widget to version ``3.6.1``. See `widget changelog`_.\n\nFixed\n+++++\n\n- `FileWidget.render()` now works in Django 2.1.\n- Obsolete widget setting `data-upload-base-url` replaced with `data-url-base`\n\n\n2.5.0\n~~~~~\n\n- Update bundled widget to version ``3.3.0``. See `widget changelog`_.\n- Update links to the Uploadcare site\n- Expand data format in 'User-Agent' request header.\n\n2.4.0\n~~~~~\n\n- Change data format in 'User-Agent' request header.\n\n2.3.1\n~~~~~\n\n- Update default widget version to ``3.x``\n- Update bundled widget to version ``3.2.3``. See `widget changelog`_.\n\n2.3.0\n~~~~~\n\n- Add support for Django versions 1.11 and ~2.0\n- Miscellaneous updates (version, year in a license file, tox configuration and etc.)\n- Drop official support for obsolete Python and Django versions.\n Chances are that everything still works. If you have to use those, modify `tox.ini`,\n run tests and use at your own risk ;) Or, you may use older versions of the library.\n\n2.2.1\n~~~~~\n\n- Add ``file.create_local_copy`` and ``file.create_remote_copy`` methods.\n- Add new ``make_public`` and ``pattern`` parameters to file.create_remote_copy method.\n- Add new ``store`` parameter to file.create_local_copy methods.\n- Update CDN link to the widget.\n- Use wildcard ``2.x`` to always get the latest\n patch or minor version of widget version ``2``. See `widget changelog`_.\n- Update bundled widget to version ``2.10.3``. See `widget changelog`_.\n\n2.1.0\n~~~~~\n\n- Support auto storing in upload requests\n- Updated widget to version 2.10.0 (see `widget changelog`_).\n- Drop support for Python 3.2\n- Simplify and reduce test matrix in ``.travis.yml``\n\n2.0.1\n~~~~~\n\n- Fixed issue with missing ``ucare_cli`` package.\n\n2.0\n~~~\n\n- Added support for version 0.5 of REST API.\n- Updated widget to version 2.8.1 (see `widget changelog`_).\n- Added the ``ucare list_groups`` command.\n- Removed deprecated entities.\n\n**NB**: There are backward incompatible changes. For detailed information about the upgrade process see `update to version 2.0`_.\n\n1.3.6\n~~~~~\n\n- Fixed ZeroDivision error when trying to sync files with no size\n\n1.3.5\n~~~~~\n\n- Added support of Django 1.9\n- Removed indication of Unicode strings from output of `ucare`\n- Fixed a group representation for `ucare create_group` command\n- Fixed error with `ucare sync` when trying to processing of not image files\n\n1.3.4\n~~~~~\n\n- Added storage operations\n- Added request_limit to ucare_cli\n\n1.3.3\n~~~~~\n\n- Expanded User-Agent\n\n1.3.2\n~~~~~\n\n- Added sync command to ucare_cli\n- Autogenerated documentation for ucare_cli\n- update widget to 2.5.5 (see `widget changelog`_)\n\n1.3.1\n~~~~~\n\n- Default CDN base to https://ucarecdn.com\n- Allow changing CDN base via Django settings\n- update widget to 2.5.0 (see `widget changelog`_)\n\n1.3.0\n~~~~~\n\n- API version was updated up to *0.4*.\n- update widget to 2.4.0 (see `widget changelog`_)\n\n1.2.15\n~~~~~~\n\n- update widget to 2.3.1 (see `widget changelog`_)\n\n\n1.2.14\n~~~~~~\n\n- update widget to 1.5.5 (see `widget changelog`_)\n\n\n1.2.13\n~~~~~~\n\n- improve synchronous upload API\n- fix encoding issues with pip3\n- update widget to 1.5.4 (see `widget changelog`_)\n- add AUTHORS.txt\n\n\n1.2.12\n~~~~~~\n\n- add synchronous upload from URL method to `File`\n- UploadcareExceptions are `__repr__`'ed properly\n- update widget to 1.5.3 (see `widget changelog`_)\n\n\n1.2.11\n~~~~~~\n\n- fix \"source\" composition for copy requests\n- let configure default throttle retry count via `conf.retry_throttled`\n\n\n1.2.10\n~~~~~~\n\n- handle responses for HEAD and OPTION requests\n- update widget to 1.4.6\n\n\n1.2.9\n~~~~~\n\n- compatibility with Django 1.7\n\n\n1.2.8\n~~~~~\n\n- update widget to 1.4.0\n\n\n1.2.7\n~~~~~\n\n- handle rest api throttling\n\n\n1.2.6\n~~~~~\n\n- update widget to 1.2.3\n- fixed compatibility with six library version 1.7.0 and above\n\n\n1.2.5\n~~~~~\n\n- fixed setup script\n\n\n1.2.4\n~~~~~\n\n- update widget to 1.0.1\n- fixed logging when response contains unicode chars\n\n\n1.2.3\n~~~~~\n\n- update widget to 0.17.1\n\n\n1.2.2\n~~~~~\n\n- add File.copy()\n- add data attribute to UploadcareException\n- update widget to 0.13.2\n- update pyuploadcare.dj.models.ImageField crop validation\n\n\n1.2.1\n~~~~~\n\n``https://ucarecdn.com/`` URL was returned to serve widget's assets.\n\n\n1.2\n~~~\n\n- CDN URL has been changed to ``http://www.ucarecdn.com/``. Previous URL\n ``https://ucarecdn.com/`` is depricated.\n- Widget was updated up to *0.10.1*.\n\n1.1\n~~~\n\n- Widget was updated up to *0.10*.\n- Default API version was updated up to *0.3*.\n- Django settings were merged into UPLOADCARE dictionary.\n- Performance was improved by reusing requests' session.\n\n1.0.2\n~~~~~\n\n``UnicodeDecodeError`` was fixed. This bug appears when\n`request `_'s ``method``\nparam is unicode and ``requests.request()`` got ``files`` argument, e.g.:\n\n.. code-block:: python\n\n >>> requests.request(u'post', u'http://httpbin.org/post',\n ... files={u'file': open('README.rst', 'rb')})\n UnicodeDecodeError: 'ascii' codec can't decode byte 0xc5 ...\n\n1.0.1\n~~~~~\n\n- Widget was updated up to *0.8.1.2*.\n- It was invoking ``File.store()``, ``FileGroup.store()`` methods on every\n model instance saving, e.g.:\n\n .. code-block:: python\n\n photo.title = 'new title'\n photo.save()\n\n Now it happens while saving by form, namely by calling\n ``your_model_form.is_valid()``. There is other thing that can trigger\n storing -- calling ``photo.full_clean()`` directly.\n\n1.0\n~~~\n\n- Python 3.2, 3.3 support were added.\n- File Group creating was added.\n- Methods per API field for File, FileGroup were added.\n- Deprecated things were deleted. This version is not backward compatible.\n For detailed information see\n https://pyuploadcare.readthedocs.org/en/v0.19/deprecated.html\n\n0.19\n~~~~\n\n- Multiupload support was added.\n- ``argparse`` was added into ``setup.py`` requirements.\n- Documentation was added and published on https://pyuploadcare.readthedocs.org\n\n0.18\n~~~~\n\n- Widget was updated up to *0.6.9.1*.\n\n0.17\n~~~~\n\n- ``ImageField`` was added. It provides uploading only image files. Moreover,\n you can activate manual crop, e.g. ``ImageField(manual_crop='2:3')``.\n- More appropriate exceptions were added.\n- Tests were separated from library and were restructured.\n- Widget was updated up to *0.6.7*.\n- Issue of ``FileField``'s ``blank``, ``null`` attributes was fixed.\n\n0.14\n~~~~\n\n- Replace accept header for old api version\n\n0.13\n~~~~\n\n- Fix unicode issue on field render\n\n0.12\n~~~~\n\n- Add new widget to pyuploadcare.dj\n- Remove old widget\n- Use https for all requests\n\n0.11\n~~~~\n\n- Add cdn_base to Ucare.__init__\n- Get rid of api v.0.1 support\n- Add File.ensure_on_s3 and File.ensure_on_cdn helpers\n- Add File properties is_on_s3, is_removed, is_stored\n- Fix url construction\n- Add and correct waiting to upload and upload_from_url\n\n0.10\n~~~~\n\n- Add console log handler to ucare\n- Add wait argument to ucare store and delete commands\n- Fix ucare arg handling\n\n0.9\n~~~\n\n- Add bunch of arguments to ucare upload and upload_via_url commands\n- Fix UploadedFile.wait()\n\n0.8\n~~~\n\n- Fix file storing for old API\n- Replaced Authentication header with Authorization\n- Log warnings found in HTTP headers\n- Replace old resizer with new CDN\n- Add verify_api_ssl, verify_upload_ssl options\n- Add custom HTTP headers to API and upload API requests\n\n0.7\n~~~\n\n- Added __version__\n- Added 'User-Agent' request header\n- Added 'Accept' request header\n- Added ucare config file parsing\n- Added pyuploadcare/tests.py\n- Replaced upload API\n- Replaced File.keep with File.store, File.keep is deprecated\n- File.store uses new PUT request\n- Added timeouts to File.store, File.delete\n- Added upload and upload_from_url to ucare\n- Added tests during setup\n- Replaced httplib with requests, support https (certificates for api requests are verified)\n- Added api_version arg to UploadCare, default is 0.2\n\n0.6\n~~~\n\n- Added ucare cli utility\n- Added PYUPLOADCARE_UPLOAD_BASE_URL setting\n- Added PYUPLOADCARE_WIDGET_URL\n- Updated widget assets to version 0.0.1\n- Made properties out of following pyuploadcare.file.File's methods:\n\n - api_uri()\n - url()\n - filename()\n- Changed pyuploadcare.UploadCareException.__init__\n\n\n.. _widget changelog: https://github.com/uploadcare/uploadcare-widget/blob/master/HISTORY.markdown\n.. _update to version 2.0: https://pyuploadcare.readthedocs.io/en/stable/install.html#update-to-version-2-0\n.. _Keep a Changelog: https://keepachangelog.com/en/1.0.0/\n.. _Semantic Versioning: https://semver.org/spec/v2.0.0.html\n\n.. _Unreleased: https://github.com/uploadcare/pyuploadcare/compare/v2.6.0...HEAD\n.. _2.6.0: https://github.com/uploadcare/pyuploadcare/compare/v2.5.0...v2.6.0", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/uploadcare/pyuploadcare", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "pyuploadcare", "package_url": "https://pypi.org/project/pyuploadcare/", "platform": "", "project_url": "https://pypi.org/project/pyuploadcare/", "project_urls": { "Homepage": "https://github.com/uploadcare/pyuploadcare" }, "release_url": "https://pypi.org/project/pyuploadcare/2.6.0/", "requires_dist": null, "requires_python": "", "summary": "Python library for Uploadcare.com", "version": "2.6.0" }, "last_serial": 4543337, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "d5b5861347cf73789cc3ce441ecb2091", "sha256": "dbf169cffdf311993a47076ca4734334373f431ff3c7fd928368a8311a50d241" }, "downloads": -1, "filename": "pyuploadcare-0.1.tar.gz", "has_sig": false, "md5_digest": "d5b5861347cf73789cc3ce441ecb2091", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3378, "upload_time": "2011-11-09T18:37:15", "url": "https://files.pythonhosted.org/packages/57/79/a63122451f15e4faf6454584d14a3ea0a6819af24a16446ab13eea753ca5/pyuploadcare-0.1.tar.gz" } ], "0.10": [ { "comment_text": "", "digests": { "md5": "18a2d7d00a2258f7ba48c0aff1f3c3e4", "sha256": "fae99338cd40be33661ed486b141e12ce36a7e93b333077ef30f48b21a3e5df0" }, "downloads": -1, "filename": "pyuploadcare-0.10.tar.gz", "has_sig": false, "md5_digest": "18a2d7d00a2258f7ba48c0aff1f3c3e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52966, "upload_time": "2012-10-17T13:08:16", "url": "https://files.pythonhosted.org/packages/cf/11/65d52f8997759499cce791d955614b8cef115d946d0f497878c436b459be/pyuploadcare-0.10.tar.gz" } ], "0.11": [ { "comment_text": "", "digests": { "md5": "e0754cd42d84a56dd6cdf8834973ac3a", "sha256": "b0580719147119d512a3eb90a93996c830dc791450391cd844be9bd38818cec8" }, "downloads": -1, "filename": "pyuploadcare-0.11.tar.gz", "has_sig": false, "md5_digest": "e0754cd42d84a56dd6cdf8834973ac3a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 53266, "upload_time": "2012-11-15T16:54:25", "url": "https://files.pythonhosted.org/packages/ee/64/079c2a71f5c78512c2614c70e889938f9a2745ed4e0c5dae6bbba83587f3/pyuploadcare-0.11.tar.gz" } ], "0.12": [ { "comment_text": "", "digests": { "md5": "a737c7cac3fcd7aff6b606249d6bd378", "sha256": "3e899fd7e220bfad3e1e7e8db9cf2195c2cd8bf05fcf5a40ede57a676efc8405" }, "downloads": -1, "filename": "pyuploadcare-0.12.tar.gz", "has_sig": false, "md5_digest": "a737c7cac3fcd7aff6b606249d6bd378", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 70318, "upload_time": "2012-11-16T14:33:23", "url": "https://files.pythonhosted.org/packages/e9/a3/539828156d17cec6cde16e279d24f87f3f4145c2dc30e87f13cf63688b50/pyuploadcare-0.12.tar.gz" } ], "0.13": [ { "comment_text": "", "digests": { "md5": "e5ef58ea5ae435e3e11968ec82f3dd2a", "sha256": "5532294ce9ae009db807bdf7ad35a33c1e5c1c7f2ed8b7ff742b501ebbba72ae" }, "downloads": -1, "filename": "pyuploadcare-0.13.tar.gz", "has_sig": false, "md5_digest": "e5ef58ea5ae435e3e11968ec82f3dd2a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69908, "upload_time": "2012-11-23T01:25:35", "url": "https://files.pythonhosted.org/packages/a3/c7/b00f450668c0bc02250f13f05dbfc30fa1b5caa168fa1bce315e84e99a7c/pyuploadcare-0.13.tar.gz" } ], "0.14": [ { "comment_text": "", "digests": { "md5": "d025f861f8989f24d83f0ab9900aa44a", "sha256": "d9c00ae9a75607804685d98b4974bfd50f7a4376033d3c230368ef6f08a1a392" }, "downloads": -1, "filename": "pyuploadcare-0.14.tar.gz", "has_sig": false, "md5_digest": "d025f861f8989f24d83f0ab9900aa44a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69915, "upload_time": "2012-12-04T19:01:17", "url": "https://files.pythonhosted.org/packages/f7/88/fb2cf2e9fe591b5c5454de485efa903f5f565020484cf7f984737c419ba4/pyuploadcare-0.14.tar.gz" } ], "0.16": [ { "comment_text": "", "digests": { "md5": "0b26864757638adc212852089ad757e0", "sha256": "52499832223d825a33cc2cda4c0f2400879598758e4da838c08e12cb7d2e1a68" }, "downloads": -1, "filename": "pyuploadcare-0.16.tar.gz", "has_sig": false, "md5_digest": "0b26864757638adc212852089ad757e0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80694, "upload_time": "2013-02-05T15:41:52", "url": "https://files.pythonhosted.org/packages/5d/d3/054c6480ab46f31f3131c8ace2a9667a1cffef539bab7ddeb17958479ef9/pyuploadcare-0.16.tar.gz" } ], "0.17": [ { "comment_text": "", "digests": { "md5": "37dcac4c90b60595af192c5d9f291606", "sha256": "8b281061256c583f33d9a67e98bde4f87f94a7ceaf38a8268ee6ea7b45647c13" }, "downloads": -1, "filename": "pyuploadcare-0.17.tar.gz", "has_sig": false, "md5_digest": "37dcac4c90b60595af192c5d9f291606", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 133992, "upload_time": "2013-04-02T05:38:28", "url": "https://files.pythonhosted.org/packages/10/9d/b209f4265b5161854696bdab42c47776785d7bbda3e2ffe1924a420923ba/pyuploadcare-0.17.tar.gz" } ], "0.18": [ { "comment_text": "", "digests": { "md5": "8c34227f828e2aff1dace9f3daeb6700", "sha256": "677de0f32b9197c167e1cc1dd88f6c3032cd44fe8b440120aa97c721fd373267" }, "downloads": -1, "filename": "pyuploadcare-0.18.tar.gz", "has_sig": false, "md5_digest": "8c34227f828e2aff1dace9f3daeb6700", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 136232, "upload_time": "2013-04-05T15:23:27", "url": "https://files.pythonhosted.org/packages/16/3e/265ff9b332be7a3b91a77a94c90a877ae2ed6b352e225bdbe55ec2a7285b/pyuploadcare-0.18.tar.gz" } ], "0.19": [ { "comment_text": "", "digests": { "md5": "509efb0401ec45680a3c55413121a440", "sha256": "decb805f8bd35fb9fa858756fb2c9abb76500e6add527fed4ae9c865da41bafd" }, "downloads": -1, "filename": "pyuploadcare-0.19.tar.gz", "has_sig": false, "md5_digest": "509efb0401ec45680a3c55413121a440", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 149429, "upload_time": "2013-04-19T12:09:05", "url": "https://files.pythonhosted.org/packages/27/c0/88d032557bcd3883426c37290a01726304eec980737e3587f147d392c4f2/pyuploadcare-0.19.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "5a1b71dfcb697e007bb669cf47a9ad7c", "sha256": "738edff62117234d6eafb0c3a9455f14539728f2655e8c5e8b1f50d7322dbd1e" }, "downloads": -1, "filename": "pyuploadcare-0.2.tar.gz", "has_sig": false, "md5_digest": "5a1b71dfcb697e007bb669cf47a9ad7c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3626, "upload_time": "2011-11-09T18:58:39", "url": "https://files.pythonhosted.org/packages/f7/d5/9ee58ddc3fcca16121c100b3be0a46c9aae0e1e563fb8eb9ac2258f723b9/pyuploadcare-0.2.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "7890b48374f2471217f527637b8747ae", "sha256": "29f521c53b67cb0cccf4238b04f2846b02730970b8499efbbb28003ce994e868" }, "downloads": -1, "filename": "pyuploadcare-0.3.tar.gz", "has_sig": false, "md5_digest": "7890b48374f2471217f527637b8747ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3711, "upload_time": "2011-11-30T18:37:41", "url": "https://files.pythonhosted.org/packages/0f/8c/6962de59d3fbd0fcf21bf4a32730036628b1bba782a783d54596bac595df/pyuploadcare-0.3.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "bf7643b162cd5d547d7c43e0f15a5710", "sha256": "3b6dd50ab78492f4afe0f2a8c78026efd06fe6280f5d3a7da9038d0d26cc28ff" }, "downloads": -1, "filename": "pyuploadcare-0.4.tar.gz", "has_sig": false, "md5_digest": "bf7643b162cd5d547d7c43e0f15a5710", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46697, "upload_time": "2012-02-05T02:21:43", "url": "https://files.pythonhosted.org/packages/31/a7/a6e52e8ca4562cabc3832693ad528c07adb22381c88cdf5b6f17af7543a6/pyuploadcare-0.4.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "43d78ba6ca1163acbc2e16d2061dfbbf", "sha256": "aad6e45996ce9f86269fbeb76654533dcd8ef960cd4b5d24b8b59108d90cbfe6" }, "downloads": -1, "filename": "pyuploadcare-0.5.tar.gz", "has_sig": false, "md5_digest": "43d78ba6ca1163acbc2e16d2061dfbbf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46883, "upload_time": "2012-04-13T18:46:11", "url": "https://files.pythonhosted.org/packages/db/0c/df30835eba07e5d2f9802cc166dd1448bc75c41405f12fa07053ca216c92/pyuploadcare-0.5.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "c5de293dd127ebdce48d42b49881bb7c", "sha256": "92aa7ef2b8061d4540b1a2a0f2506f6ebce752412305e43b924009c50a7d091d" }, "downloads": -1, "filename": "pyuploadcare-0.6.tar.gz", "has_sig": false, "md5_digest": "c5de293dd127ebdce48d42b49881bb7c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47534, "upload_time": "2012-06-04T19:20:34", "url": "https://files.pythonhosted.org/packages/ae/f5/242300cdfbcbf2d8d5699161004a376173e8c4a07c6b90a514786435b03a/pyuploadcare-0.6.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "cb7ce4447839487fc8b7ed8ce252ce36", "sha256": "521f1eff596508f49438be9aef2d6d8481d3591fc680b85142ea96d2da42814c" }, "downloads": -1, "filename": "pyuploadcare-0.7.tar.gz", "has_sig": false, "md5_digest": "cb7ce4447839487fc8b7ed8ce252ce36", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50895, "upload_time": "2012-09-03T14:27:57", "url": "https://files.pythonhosted.org/packages/14/09/44bc2fed723532458e389a687234c6f4eb88a5fc617b6bde0255aa2c9121/pyuploadcare-0.7.tar.gz" } ], "0.8": [ { "comment_text": "", "digests": { "md5": "4d8da469e312cd5df25aee89540cffa0", "sha256": "be74d9e9b34398f2bcb601cfde58b1214172b015599b44440d5669a8b752489c" }, "downloads": -1, "filename": "pyuploadcare-0.8.tar.gz", "has_sig": false, "md5_digest": "4d8da469e312cd5df25aee89540cffa0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51683, "upload_time": "2012-10-03T16:32:01", "url": "https://files.pythonhosted.org/packages/cd/f4/f43d9984282f5529ceaf269346e1aeee1f12aa575e18f15bc843028f517e/pyuploadcare-0.8.tar.gz" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "09769bb9142e851c456346391079c656", "sha256": "2d34cf3e9f0f17bae0170614ad1bdd18470b886b523cbb57927deeaf985db3dd" }, "downloads": -1, "filename": "pyuploadcare-0.9.tar.gz", "has_sig": false, "md5_digest": "09769bb9142e851c456346391079c656", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52123, "upload_time": "2012-10-09T16:47:23", "url": "https://files.pythonhosted.org/packages/ec/0b/c0950894ff796e4e49fbb5665e1dc392d9fa559f04d681c6f01531b1652e/pyuploadcare-0.9.tar.gz" } ], "1.0": [ { "comment_text": "", "digests": { "md5": "f475fcb02e126fa5bc4af105ebbcc615", "sha256": "aade9b4e188aedbfe79202d27f8c4b07b33d470acfce17679e98c56bf4289583" }, "downloads": -1, "filename": "pyuploadcare-1.0.tar.gz", "has_sig": false, "md5_digest": "f475fcb02e126fa5bc4af105ebbcc615", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 152509, "upload_time": "2013-05-12T09:16:40", "url": "https://files.pythonhosted.org/packages/60/18/be0fa261c878a2927a57ecf608411e9af361497fefb615744c867bdce2e9/pyuploadcare-1.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "dad0e349b2197cabfff35176cc6ead58", "sha256": "78066bebc67074ee562a21a8c96b45e21116d9e42e2649ec7b6afb01cb8f03ea" }, "downloads": -1, "filename": "pyuploadcare-1.0.1.tar.gz", "has_sig": false, "md5_digest": "dad0e349b2197cabfff35176cc6ead58", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 164853, "upload_time": "2013-05-13T14:15:56", "url": "https://files.pythonhosted.org/packages/90/f2/b2baa1dbda286b2301f3bbea6807f0e7e0510777c08310cda29fd9e244fa/pyuploadcare-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "ba282c2ac4eb4a995954c46c8f1b58b2", "sha256": "bc09ad68ba290d11ae8cf56d68e0a0878f28234bd623ddcc88420ae99bc6d84a" }, "downloads": -1, "filename": "pyuploadcare-1.0.2.tar.gz", "has_sig": false, "md5_digest": "ba282c2ac4eb4a995954c46c8f1b58b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 165207, "upload_time": "2013-05-14T13:31:08", "url": "https://files.pythonhosted.org/packages/b4/21/3257d2161a2a022dce255b38f1d4aa535f963a29cc9ccda9824b0ff430c5/pyuploadcare-1.0.2.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "63eb5d499a945ccc7928dde244c9600c", "sha256": "b495a7d0a7eb49887d35b601bafaf2fd76259c0c367f563686cdc888ee23980f" }, "downloads": -1, "filename": "pyuploadcare-1.1.tar.gz", "has_sig": false, "md5_digest": "63eb5d499a945ccc7928dde244c9600c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 139371, "upload_time": "2013-07-06T06:28:24", "url": "https://files.pythonhosted.org/packages/89/eb/ebb7475ed28a3c48efae0766e015e411593a8ae36e0035d004993115fe6e/pyuploadcare-1.1.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "12d7565a31da78a81e18d13228d0e227", "sha256": "0cdee95e9b6eb865afaa086439423271c4982b20cc64769c94ba3e38d6870635" }, "downloads": -1, "filename": "pyuploadcare-1.2.tar.gz", "has_sig": false, "md5_digest": "12d7565a31da78a81e18d13228d0e227", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 139537, "upload_time": "2013-07-31T11:19:21", "url": "https://files.pythonhosted.org/packages/f5/7b/251afc6cb4005d457e598d41b2d78e3c103165fbc0e95718dd6da4e5090b/pyuploadcare-1.2.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "e78a8643d22feacac6ba6b45403226fb", "sha256": "493f9aca3ee0b61537a24a8605720fcdd5fdfce2a2f5cc3dbeef7a3d02393faa" }, "downloads": -1, "filename": "pyuploadcare-1.2.1.tar.gz", "has_sig": false, "md5_digest": "e78a8643d22feacac6ba6b45403226fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 139621, "upload_time": "2013-08-02T07:59:02", "url": "https://files.pythonhosted.org/packages/79/50/50b30d24070da36c72e17a63edba156e397995dac29a3b53230491ac7b55/pyuploadcare-1.2.1.tar.gz" } ], "1.2.10": [ { "comment_text": "", "digests": { "md5": "437d35bde35db5ec90578fd780df6433", "sha256": "fe1fd64427936ae2f1832a91dde0de3d6d49eb50eee4ccf200e4f784a51de517" }, "downloads": -1, "filename": "pyuploadcare-1.2.10.tar.gz", "has_sig": false, "md5_digest": "437d35bde35db5ec90578fd780df6433", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 109986, "upload_time": "2014-12-04T13:37:20", "url": "https://files.pythonhosted.org/packages/29/cf/b08bfcf984f0f62522e37f754fdf0d793d7cd294188ee45b3439393e2142/pyuploadcare-1.2.10.tar.gz" } ], "1.2.11": [ { "comment_text": "", "digests": { "md5": "7649946b75df10bb07ae2019bbf74dd2", "sha256": "c548a47003c8d38203b2537ab3cd1657b42071e1e887ed8937462199cbf5f105" }, "downloads": -1, "filename": "pyuploadcare-1.2.11.tar.gz", "has_sig": false, "md5_digest": "7649946b75df10bb07ae2019bbf74dd2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 110155, "upload_time": "2014-12-29T12:05:23", "url": "https://files.pythonhosted.org/packages/54/a4/151d82040448a03eff633934e9e4165244b9f6ce3ffb4091df9bcbf48878/pyuploadcare-1.2.11.tar.gz" } ], "1.2.12": [ { "comment_text": "", "digests": { "md5": "1bb46be6ad3f3c7346802e1bb20650d8", "sha256": "1c5a640a229f0123e115ace5d933a4207b03e1217bd01c02f04d6897ff5e62d0" }, "downloads": -1, "filename": "pyuploadcare-1.2.12.tar.gz", "has_sig": false, "md5_digest": "1bb46be6ad3f3c7346802e1bb20650d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 114139, "upload_time": "2014-12-30T13:27:06", "url": "https://files.pythonhosted.org/packages/5a/08/06df9ac4813ca90a25c80600f86390e63ef6286fe4a563f08d55aef291d5/pyuploadcare-1.2.12.tar.gz" } ], "1.2.13": [ { "comment_text": "", "digests": { "md5": "d3aa647212df311727c1fb7938293f1f", "sha256": "266623a69921082df3c8a741631ed631f3003d84e650a52f9f2c7a783fe5b1cd" }, "downloads": -1, "filename": "pyuploadcare-1.2.13.tar.gz", "has_sig": false, "md5_digest": "d3aa647212df311727c1fb7938293f1f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 114477, "upload_time": "2015-01-28T14:26:57", "url": "https://files.pythonhosted.org/packages/40/ee/103cfb8b900b5b02ada7c2afc00d54b76ca713f46af1975bce3ab0db5661/pyuploadcare-1.2.13.tar.gz" } ], "1.2.14": [ { "comment_text": "", "digests": { "md5": "c9634f867b63afd46045bd9aa7e08388", "sha256": "15ff221f010f16077188c0d47967141813331bc2effe8d53e09f37311dc7e974" }, "downloads": -1, "filename": "pyuploadcare-1.2.14.tar.gz", "has_sig": false, "md5_digest": "c9634f867b63afd46045bd9aa7e08388", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 114608, "upload_time": "2015-01-28T16:25:15", "url": "https://files.pythonhosted.org/packages/eb/e5/b8f4e18843c956532a26a54e8d11cabede4530265b5f4d7330e1a3077d09/pyuploadcare-1.2.14.tar.gz" } ], "1.2.15": [ { "comment_text": "", "digests": { "md5": "b32b2c93de0cbbd2bcae81b6d7182810", "sha256": "049fe91a77dba431d7c3ab9da3e47ad5ee25088f34234f46e8b4eb0c5b714a62" }, "downloads": -1, "filename": "pyuploadcare-1.2.15.tar.gz", "has_sig": false, "md5_digest": "b32b2c93de0cbbd2bcae81b6d7182810", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 186916, "upload_time": "2015-06-14T15:01:33", "url": "https://files.pythonhosted.org/packages/3e/1b/78ce368df576139cadb0fd8eae45f425cf923a2d3d0c1f10be36447635ae/pyuploadcare-1.2.15.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "eff1b094d475b39d7b8f685579e77668", "sha256": "05e27cbda57af6b1940f595191d7586990a63294c3eafc5fa664f83eee279c22" }, "downloads": -1, "filename": "pyuploadcare-1.2.2.tar.gz", "has_sig": false, "md5_digest": "eff1b094d475b39d7b8f685579e77668", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96705, "upload_time": "2013-10-03T12:38:39", "url": "https://files.pythonhosted.org/packages/cb/05/9eb4983c25680a8a6bf8452ee6943ac71955b2b10d942ab6f05fdf2e130b/pyuploadcare-1.2.2.tar.gz" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "cd846f768e2f9221a8ebd1cd3f6b3e78", "sha256": "10456150cdae07ab605e7b83c4ae576d30f64c6994e95f60627037802fb8b493" }, "downloads": -1, "filename": "pyuploadcare-1.2.3.tar.gz", "has_sig": false, "md5_digest": "cd846f768e2f9221a8ebd1cd3f6b3e78", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 101745, "upload_time": "2014-01-17T08:32:18", "url": "https://files.pythonhosted.org/packages/f5/c8/8b1c22c0f1ef5d78222e0bf92109b9598e9822f185e1a2a695fad08459c1/pyuploadcare-1.2.3.tar.gz" } ], "1.2.4": [ { "comment_text": "", "digests": { "md5": "325c7127033f9fd014de753be1b38edd", "sha256": "c8c0a7a129f4da94468f1a700be4e8947e7706a6f3a2d3532be16f083a9aa053" }, "downloads": -1, "filename": "pyuploadcare-1.2.4.tar.gz", "has_sig": false, "md5_digest": "325c7127033f9fd014de753be1b38edd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 104181, "upload_time": "2014-03-31T09:44:43", "url": "https://files.pythonhosted.org/packages/b3/ab/fa16a8fa621330ff951f8ea360d9404e3221d031c4d1456b4434580ef2ad/pyuploadcare-1.2.4.tar.gz" } ], "1.2.5": [ { "comment_text": "", "digests": { "md5": "857172f5ec07ff7d0f7002f93caa6a5f", "sha256": "cc8fa042ff6bb22e47748227314f1bd28242047d507be6957d7ab62e00cfbedf" }, "downloads": -1, "filename": "pyuploadcare-1.2.5.tar.gz", "has_sig": false, "md5_digest": "857172f5ec07ff7d0f7002f93caa6a5f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 103632, "upload_time": "2014-06-09T16:25:45", "url": "https://files.pythonhosted.org/packages/2d/b9/0329b792083b9ef92b48c0fa321822519f86c0c4189f51bc37554edacf85/pyuploadcare-1.2.5.tar.gz" } ], "1.2.6": [ { "comment_text": "", "digests": { "md5": "a5179ecf1414c7f1cc16dc71d5cc8f4b", "sha256": "efd3775ceb399ea328e2404afc11faa103ae82b2b28fab294b885dc23e962d3d" }, "downloads": -1, "filename": "pyuploadcare-1.2.6.tar.gz", "has_sig": false, "md5_digest": "a5179ecf1414c7f1cc16dc71d5cc8f4b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 105988, "upload_time": "2014-06-11T14:06:47", "url": "https://files.pythonhosted.org/packages/cd/56/eb92d0828e12c430a633ed9c71b3dfbdfde4e99a13213987101e298773f3/pyuploadcare-1.2.6.tar.gz" } ], "1.2.7": [ { "comment_text": "", "digests": { "md5": "4b2b3c1d7b31c4dd821c3bdde2c5e945", "sha256": "d4449254194b8aab5a2f0f3eb5bdb24aaa70bd68255f7dbb7d7a295a7175adf0" }, "downloads": -1, "filename": "pyuploadcare-1.2.7.tar.gz", "has_sig": false, "md5_digest": "4b2b3c1d7b31c4dd821c3bdde2c5e945", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 105685, "upload_time": "2014-06-13T04:52:37", "url": "https://files.pythonhosted.org/packages/e9/49/99a19c52b40a189502b90f1675fcb5730c724c8575866e9d6ede41a92f4b/pyuploadcare-1.2.7.tar.gz" } ], "1.2.8": [ { "comment_text": "", "digests": { "md5": "7400009ff3ad114f031c4f805e98729b", "sha256": "295f280ed7df2d289c8adaeafc7e79a7b52d90fac644630acbb786c0fc7e8f8a" }, "downloads": -1, "filename": "pyuploadcare-1.2.8.tar.gz", "has_sig": false, "md5_digest": "7400009ff3ad114f031c4f805e98729b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108602, "upload_time": "2014-07-31T13:35:01", "url": "https://files.pythonhosted.org/packages/f8/92/049b229b406eb63096b389a3e069b6d27d699bf8db0fce622d732bbdfdee/pyuploadcare-1.2.8.tar.gz" } ], "1.2.9": [ { "comment_text": "", "digests": { "md5": "917324d3c965883a96caf1c4fadec7bb", "sha256": "ea02e3d50b4295d826f36490461862685dfa69bd1e82edf83f026bea87f3ebef" }, "downloads": -1, "filename": "pyuploadcare-1.2.9.tar.gz", "has_sig": false, "md5_digest": "917324d3c965883a96caf1c4fadec7bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108661, "upload_time": "2014-07-31T14:47:49", "url": "https://files.pythonhosted.org/packages/50/c8/4ededb3159bec385837bb9ee27d1c29c281d88bf57d73852d30a1658c8be/pyuploadcare-1.2.9.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "954f27263f59978b5388655e3abe140a", "sha256": "2c62caa45de4c6cf763f3065e1d9fe3d2f7d805eb2b9beffd5b25174ae028a1b" }, "downloads": -1, "filename": "pyuploadcare-1.3.0.tar.gz", "has_sig": false, "md5_digest": "954f27263f59978b5388655e3abe140a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 187551, "upload_time": "2015-07-24T17:01:38", "url": "https://files.pythonhosted.org/packages/5c/9f/d3f6adee27d1feb885f869e32ed1893a7cce11c941197cc746e8f6ffb3a8/pyuploadcare-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "fbffeace70b029215399487572f937ba", "sha256": "abc22d255be34483bdcbe15a0b6e0222381146c60f629b48336bfc632fb1a917" }, "downloads": -1, "filename": "pyuploadcare-1.3.1.tar.gz", "has_sig": false, "md5_digest": "fbffeace70b029215399487572f937ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 186731, "upload_time": "2015-08-24T17:05:27", "url": "https://files.pythonhosted.org/packages/43/02/390262b6bf451e400e65599fa42f3352162b248a7d7be386c710063afc1b/pyuploadcare-1.3.1.tar.gz" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "b64c43e92e69eedf7cb3617692a18056", "sha256": "a88f4bda1f3d8735064c55d4d8cf0b626576e68cc689a56f4ee467180ca8763a" }, "downloads": -1, "filename": "pyuploadcare-1.3.2.tar.gz", "has_sig": false, "md5_digest": "b64c43e92e69eedf7cb3617692a18056", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 188096, "upload_time": "2015-11-05T21:13:39", "url": "https://files.pythonhosted.org/packages/22/5a/7807674f819d855d565f6ca6b43d6b0ec409ff4dcf707a1b18eafdbc8823/pyuploadcare-1.3.2.tar.gz" } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "b416b972c3a139fff790e5725b6c56d9", "sha256": "82a253d2cf5258ca0e42576a6162170cd058b5dbd1c4a4fab710170ba8279b51" }, "downloads": -1, "filename": "pyuploadcare-1.3.3.tar.gz", "has_sig": false, "md5_digest": "b416b972c3a139fff790e5725b6c56d9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 188145, "upload_time": "2015-11-09T13:15:50", "url": "https://files.pythonhosted.org/packages/23/63/e16a41056a7cc62c38011e2f8a9786a4f39d48601a71be146729ec9dbf44/pyuploadcare-1.3.3.tar.gz" } ], "1.3.4": [ { "comment_text": "", "digests": { "md5": "e586998177387cfef4efefcd09f0ad34", "sha256": "43e6118f00718aa7c3d74266d62ea233ab65c024a1db5c63a21c9063f146ae5e" }, "downloads": -1, "filename": "pyuploadcare-1.3.4.tar.gz", "has_sig": false, "md5_digest": "e586998177387cfef4efefcd09f0ad34", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 188703, "upload_time": "2016-01-13T12:00:58", "url": "https://files.pythonhosted.org/packages/66/a2/10bf5b7b6e1f95976178ff235ae87bee2835547a16ab11bf0a84ec05af78/pyuploadcare-1.3.4.tar.gz" } ], "1.3.5": [ { "comment_text": "", "digests": { "md5": "15bc0f6df7974724e6ff7a4642c4d82e", "sha256": "e6dcde3988c8126cf7f332ad48eef921ea729650d929bc0421839083ae525838" }, "downloads": -1, "filename": "pyuploadcare-1.3.5.tar.gz", "has_sig": false, "md5_digest": "15bc0f6df7974724e6ff7a4642c4d82e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 189743, "upload_time": "2016-02-10T12:09:10", "url": "https://files.pythonhosted.org/packages/00/1d/49ba0704c453a0efa526e2c07daeb1928d445490cd7a30dd260e4b03e69a/pyuploadcare-1.3.5.tar.gz" } ], "1.3.6": [ { "comment_text": "", "digests": { "md5": "247f08fd26ba5173a101e9a13ce5e361", "sha256": "9a216d522d0d6e47f47661ce393cb22ce17fe06b816781308c62affd5cf7b8a7" }, "downloads": -1, "filename": "pyuploadcare-1.3.6.tar.gz", "has_sig": false, "md5_digest": "247f08fd26ba5173a101e9a13ce5e361", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 189803, "upload_time": "2016-02-10T13:40:44", "url": "https://files.pythonhosted.org/packages/18/68/78b837cbee640aa383b2d7554344f99d1b31b21cbc45077f5c030e016d38/pyuploadcare-1.3.6.tar.gz" } ], "2.0": [ { "comment_text": "", "digests": { "md5": "f8cb8ef70f63cd9660ade36a0ce272e5", "sha256": "69ebe9e0ed9bd33d6ad78848e47f5f2e138c526575d14a5b75c61dbadc184601" }, "downloads": -1, "filename": "pyuploadcare-2.0.tar.gz", "has_sig": false, "md5_digest": "f8cb8ef70f63cd9660ade36a0ce272e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 186635, "upload_time": "2016-04-01T13:48:40", "url": "https://files.pythonhosted.org/packages/8d/d4/d1701a35bfbcb9e843244b58a08b6a248e538ea1c89c9df5c65ba3ac465f/pyuploadcare-2.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "db585bc1b9542b33943443fd1ce7ce61", "sha256": "e91ac6fcbf59f2cd24ef900896435f5b8e1c800ed34b3abca5c3d87839faf3fb" }, "downloads": -1, "filename": "pyuploadcare-2.0.1.tar.gz", "has_sig": false, "md5_digest": "db585bc1b9542b33943443fd1ce7ce61", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 191924, "upload_time": "2016-04-14T02:24:35", "url": "https://files.pythonhosted.org/packages/7a/d0/0d3c2334929f29ebceae13f18863ecac5cea647cb180039d626e6fcf99b8/pyuploadcare-2.0.1.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "263c0ec57a5f4ab8f71223de3ba4ee65", "sha256": "1f9fac02c6db178215e787c6926e7638682c5736b32a1e9a5419e49c5d6fae7a" }, "downloads": -1, "filename": "pyuploadcare-2.1.0.tar.gz", "has_sig": false, "md5_digest": "263c0ec57a5f4ab8f71223de3ba4ee65", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 192975, "upload_time": "2016-10-04T16:33:59", "url": "https://files.pythonhosted.org/packages/fa/e5/d43e1127d82a5d05eea04739ba7bee9caed39a472fa0e1d6614d9b24790a/pyuploadcare-2.1.0.tar.gz" } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "6e09862b8568749b94a232f52a804d18", "sha256": "62e825f289944469c23bd60ba3e3c0424e6c2d1dd680b878a29e1d4a9e00c1e4" }, "downloads": -1, "filename": "pyuploadcare-2.2.1.tar.gz", "has_sig": false, "md5_digest": "6e09862b8568749b94a232f52a804d18", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 195049, "upload_time": "2017-04-07T18:41:55", "url": "https://files.pythonhosted.org/packages/f9/31/086cd120cbda8146457f0e1b63b8adefa2a0ec089c3e512369738cc460db/pyuploadcare-2.2.1.tar.gz" } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "9beec16f5ce35a7f561b05549bac5bc1", "sha256": "a4a14533d4bcfc750c906d501fed6b9911e6187e1d8c093b3209a5ad91286e23" }, "downloads": -1, "filename": "pyuploadcare-2.3.0.tar.gz", "has_sig": false, "md5_digest": "9beec16f5ce35a7f561b05549bac5bc1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 195822, "upload_time": "2018-03-15T11:59:00", "url": "https://files.pythonhosted.org/packages/5c/ab/bce3caa99ceac3f670e85c5705ebf1be1b48914ed74bd994565bcf7d9082/pyuploadcare-2.3.0.tar.gz" } ], "2.3.1": [ { "comment_text": "", "digests": { "md5": "884487b9a731e436f35c8953650db0a2", "sha256": "642ccf3e974d14b7b618ec2298420c03b7bcb399a1c39455290d4f7f4e936fd1" }, "downloads": -1, "filename": "pyuploadcare-2.3.1.tar.gz", "has_sig": false, "md5_digest": "884487b9a731e436f35c8953650db0a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 210387, "upload_time": "2018-03-15T12:38:25", "url": "https://files.pythonhosted.org/packages/17/61/cbf340370053a7692b35c9cde28e7edccdfd7a0ba96b955a9101e66cb3a4/pyuploadcare-2.3.1.tar.gz" } ], "2.4.0": [ { "comment_text": "", "digests": { "md5": "887c9985369ea059026e1dfd274c5f8d", "sha256": "09fe885793a4ad338c8db43da1c45d99ec5142779f550f58e2277936f203b28b" }, "downloads": -1, "filename": "pyuploadcare-2.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "887c9985369ea059026e1dfd274c5f8d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 209854, "upload_time": "2018-04-25T11:48:58", "url": "https://files.pythonhosted.org/packages/7a/5e/3439cd40e8ef2b0583b69a111b03d03b100c477c2db0e0534857415b7d18/pyuploadcare-2.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "447b422f974b4fefb01b482b669abc2d", "sha256": "5ddb71019c2802155b2daaada0074d614c405a79e5aef09527dff2eee1c0fca2" }, "downloads": -1, "filename": "pyuploadcare-2.4.0.tar.gz", "has_sig": false, "md5_digest": "447b422f974b4fefb01b482b669abc2d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 211387, "upload_time": "2018-04-25T11:49:00", "url": "https://files.pythonhosted.org/packages/ca/7d/31a27c643c8908953d476f90e323adc02da234c9199aaaad9e706eb64593/pyuploadcare-2.4.0.tar.gz" } ], "2.5.0": [ { "comment_text": "", "digests": { "md5": "863a2fa83353949d3660d5688eb31de2", "sha256": "1c55476ba3f7a3682052d4957661dafb3a2b98e0bf09b065e4519a182daa510a" }, "downloads": -1, "filename": "pyuploadcare-2.5.0.tar.gz", "has_sig": false, "md5_digest": "863a2fa83353949d3660d5688eb31de2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 218428, "upload_time": "2018-05-08T04:53:04", "url": "https://files.pythonhosted.org/packages/0b/2c/8a71acb85b92cf68a28d59b7caafb05a1cfc0a7a921e224a57aca851f3f8/pyuploadcare-2.5.0.tar.gz" } ], "2.6.0": [ { "comment_text": "", "digests": { "md5": "8fad1be9e1fe0461a28528ec26117d3f", "sha256": "98c3e9de8c37d2afc31eff8f33b23f6f4d787b5dc8672775504d5bf76ba21544" }, "downloads": -1, "filename": "pyuploadcare-2.6.0.tar.gz", "has_sig": false, "md5_digest": "8fad1be9e1fe0461a28528ec26117d3f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 226714, "upload_time": "2018-11-29T15:10:35", "url": "https://files.pythonhosted.org/packages/9b/8c/869425c46672c24e6af412a5ed149191579e4c9125d19cc0abf8c5e7dc67/pyuploadcare-2.6.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "8fad1be9e1fe0461a28528ec26117d3f", "sha256": "98c3e9de8c37d2afc31eff8f33b23f6f4d787b5dc8672775504d5bf76ba21544" }, "downloads": -1, "filename": "pyuploadcare-2.6.0.tar.gz", "has_sig": false, "md5_digest": "8fad1be9e1fe0461a28528ec26117d3f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 226714, "upload_time": "2018-11-29T15:10:35", "url": "https://files.pythonhosted.org/packages/9b/8c/869425c46672c24e6af412a5ed149191579e4c9125d19cc0abf8c5e7dc67/pyuploadcare-2.6.0.tar.gz" } ] }