{ "info": { "author": "Cory Dolphin", "author_email": "corydolphin@gmail.com", "bugtrack_url": null, "classifiers": [ "Environment :: Web Environment", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "Flask-CORS\n==========\n\n|Build Status| |Latest Version| |Supported Python versions|\n|License|\n\nA Flask extension for handling Cross Origin Resource Sharing (CORS),\nmaking cross-origin AJAX possible.\n\nThis package has a simple philosophy, when you want to enable CORS, you\nwish to enable it for all use cases on a domain. This means no mucking\naround with different allowed headers, methods, etc. By default,\nsubmission of cookies across domains is disabled due to the security\nimplications, please see the documentation for how to enable\ncredential'ed requests, and please make sure you add some sort of\n`CSRF `__\nprotection before doing so!\n\nInstallation\n------------\n\nInstall the extension with using pip, or easy\\_install.\n\n.. code:: bash\n\n $ pip install -U flask-cors\n\nUsage\n-----\n\nThis package exposes a Flask extension which by default enables CORS support on all routes, for all origins and methods. It allows parameterization of all CORS headers on a per-resource level. The package also contains a decorator, for those who prefer this approach.\n\nSimple Usage\n~~~~~~~~~~~~\n\nIn the simplest case, initialize the Flask-Cors extension with default\narguments in order to allow CORS for all domains on all routes. See the\nfull list of options in the `documentation `__.\n\n.. code:: python\n\n\n from flask import Flask\n from flask_cors import CORS\n\n app = Flask(__name__)\n CORS(app)\n\n @app.route(\"/\")\n def helloWorld():\n return \"Hello, cross-origin-world!\"\n\nResource specific CORS\n^^^^^^^^^^^^^^^^^^^^^^\n\nAlternatively, you can specify CORS options on a resource and origin\nlevel of granularity by passing a dictionary as the `resources` option,\nmapping paths to a set of options. See the\nfull list of options in the `documentation `__.\n\n.. code:: python\n\n app = Flask(__name__)\n cors = CORS(app, resources={r\"/api/*\": {\"origins\": \"*\"}})\n\n @app.route(\"/api/v1/users\")\n def list_users():\n return \"user example\"\n\nRoute specific CORS via decorator\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nThis extension also exposes a simple decorator to decorate flask routes\nwith. Simply add ``@cross_origin()`` below a call to Flask's\n``@app.route(..)`` to allow CORS on a given route. See the\nfull list of options in the `decorator documentation `__.\n\n.. code:: python\n\n @app.route(\"/\")\n @cross_origin()\n def helloWorld():\n return \"Hello, cross-origin-world!\"\n\nDocumentation\n-------------\n\nFor a full list of options, please see the full\n`documentation `__\n\nTroubleshooting\n---------------\n\nIf things aren't working as you expect, enable logging to help understand\nwhat is going on under the hood, and why.\n\n.. code:: python\n\n logging.getLogger('flask_cors').level = logging.DEBUG\n\n\nTests\n-----\n\nA simple set of tests is included in ``test/``. To run, install nose,\nand simply invoke ``nosetests`` or ``python setup.py test`` to exercise\nthe tests.\n\nContributing\n------------\n\nQuestions, comments or improvements? Please create an issue on\n`Github `__, tweet at\n`@corydolphin `__ or send me an email.\nI do my best to include every contribution proposed in any way that I\ncan.\n\nCredits\n-------\n\nThis Flask extension is based upon the `Decorator for the HTTP Access\nControl `__ written by Armin\nRonacher.\n\n.. |Build Status| image:: https://api.travis-ci.org/corydolphin/flask-cors.svg?branch=master\n :target: https://travis-ci.org/corydolphin/flask-cors\n.. |Latest Version| image:: https://img.shields.io/pypi/v/Flask-Cors.svg\n :target: https://pypi.python.org/pypi/Flask-Cors/\n.. |Supported Python versions| image:: https://img.shields.io/pypi/pyversions/Flask-Cors.svg\n :target: https://img.shields.io/pypi/pyversions/Flask-Cors.svg\n.. |License| image:: http://img.shields.io/:license-mit-blue.svg\n :target: https://pypi.python.org/pypi/Flask-Cors/\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/corydolphin/flask-cors", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "Flask-Cors", "package_url": "https://pypi.org/project/Flask-Cors/", "platform": "any", "project_url": "https://pypi.org/project/Flask-Cors/", "project_urls": { "Homepage": "https://github.com/corydolphin/flask-cors" }, "release_url": "https://pypi.org/project/Flask-Cors/3.0.8/", "requires_dist": [ "Flask (>=0.9)", "Six" ], "requires_python": "", "summary": "A Flask extension adding a decorator for CORS support", "version": "3.0.8" }, "last_serial": 5376134, "releases": { "1.0": [ { "comment_text": "", "digests": { "md5": "5c11a76d4a5d1b54401945b8b7f0809a", "sha256": "1451d5e17125c754eb7f93f14049dc5250bac3531134c713bfd90ebb25509d7f" }, "downloads": -1, "filename": "Flask-Cors-1.0.tar.gz", "has_sig": false, "md5_digest": "5c11a76d4a5d1b54401945b8b7f0809a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1727, "upload_time": "2013-07-28T21:35:07", "url": "https://files.pythonhosted.org/packages/6c/84/f82aa58d5aeefd90522d50b7a209a597bb2f7be13a59b2ea710d980efd1f/Flask-Cors-1.0.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "272da7aebd9eed69ae1a89829028e149", "sha256": "4f9cd29b50ef98015c008243adeaf4e673b953845202f1fad9d7f42340ff7af7" }, "downloads": -1, "filename": "Flask-Cors-1.1.tar.gz", "has_sig": false, "md5_digest": "272da7aebd9eed69ae1a89829028e149", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8460, "upload_time": "2013-12-24T01:05:29", "url": "https://files.pythonhosted.org/packages/0f/1f/aa820332d5ffcee66e84da9e506d9bc44577fe314ba9218d4236c8d39a3a/Flask-Cors-1.1.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "d8017e05f013fddb96632784b1725a45", "sha256": "ffa2abef8e79333f35e4bd1ba62ddad535ee39c5d148cd27dfe0c823387363fa" }, "downloads": -1, "filename": "Flask-Cors-1.1.1.tar.gz", "has_sig": false, "md5_digest": "d8017e05f013fddb96632784b1725a45", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8754, "upload_time": "2014-01-24T00:43:53", "url": "https://files.pythonhosted.org/packages/ec/f8/b1ceb5d799c6decfba13b334f0345340a91b67a22f7e7adf96b442caa227/Flask-Cors-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "45be6c1ab8ca0a68d7b437ee0bb650f4", "sha256": "b87a3fa9d32f2c4352dd3442924e0724d98f4f23e9c574c3f6020915e145420d" }, "downloads": -1, "filename": "Flask-Cors-1.1.2.tar.gz", "has_sig": false, "md5_digest": "45be6c1ab8ca0a68d7b437ee0bb650f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8787, "upload_time": "2014-02-26T23:25:11", "url": "https://files.pythonhosted.org/packages/87/24/7344c16001e294f17a7bffe83c9cdacbb53241a56df05ca0a276d6648911/Flask-Cors-1.1.2.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "00c7d0e62b6f1749f7dd50b4a4b5ef9d", "sha256": "bffa7d4b8d445bf0001ebefe5a03e84ea060cee9379dd29e68244615e8e8f8f2" }, "downloads": -1, "filename": "Flask-Cors-1.1.3.tar.gz", "has_sig": false, "md5_digest": "00c7d0e62b6f1749f7dd50b4a4b5ef9d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8807, "upload_time": "2014-03-06T16:40:47", "url": "https://files.pythonhosted.org/packages/55/a1/a5c56ec32983438aff76a1624cde02753d471de1a9380f6eb3737c496942/Flask-Cors-1.1.3.tar.gz" } ], "1.10.0": [ { "comment_text": "", "digests": { "md5": "47b38c558aa1912e30550ec77fc9faa7", "sha256": "ea42443899c80db97bbcc22ddce6d23e119c5ac8bd98471e666d08763389e9ce" }, "downloads": -1, "filename": "Flask_Cors-1.10.0-py2-none-any.whl", "has_sig": false, "md5_digest": "47b38c558aa1912e30550ec77fc9faa7", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 12984, "upload_time": "2014-12-11T05:17:58", "url": "https://files.pythonhosted.org/packages/33/76/269415862c481917c0c0fce77790ef2296868d59780fa678e90ff2b2819c/Flask_Cors-1.10.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d6d86c87d371375814e612db4f35ef49", "sha256": "b3209244fe185e18c65639373106e0bfe3534cb41735c678e3c7902d107bf89c" }, "downloads": -1, "filename": "Flask_Cors-1.10.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d6d86c87d371375814e612db4f35ef49", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 12990, "upload_time": "2014-12-11T05:19:01", "url": "https://files.pythonhosted.org/packages/cf/ed/cafbce4bfab00ee168a41c1e446f753d3fd4e4f2eca2231502d7eb3135d2/Flask_Cors-1.10.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "06b8798bd5b3028f4efdc7741eae66c7", "sha256": "3d09cc641e73dd674d924f40b9057d8fe798493d4d1f360c05eec91f280dadba" }, "downloads": -1, "filename": "Flask-Cors-1.10.0.tar.gz", "has_sig": false, "md5_digest": "06b8798bd5b3028f4efdc7741eae66c7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26238, "upload_time": "2014-12-11T05:17:56", "url": "https://files.pythonhosted.org/packages/8f/57/c4a88eb2d9fc050b9ba1347a32b44d80f3fc007758dfe0832746cb650a39/Flask-Cors-1.10.0.tar.gz" } ], "1.10.1": [ { "comment_text": "", "digests": { "md5": "93bcdbb3226f9c809d8cdc485151c1a8", "sha256": "1df3b631be159cbc0fb2e3d7ed9861a41db1be974563c5289f8fc415a2cf5a81" }, "downloads": -1, "filename": "Flask_Cors-1.10.1-py2-none-any.whl", "has_sig": false, "md5_digest": "93bcdbb3226f9c809d8cdc485151c1a8", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 13071, "upload_time": "2014-12-13T02:33:36", "url": "https://files.pythonhosted.org/packages/34/f8/be627e40c2283e2f8efb4fa970f6dd9acecf043622e1d45b5bf84d530c1b/Flask_Cors-1.10.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cfbec9812b59bc23445b027b0b695962", "sha256": "718af47cd256f58ad4438636ba71c8a2b4fd4fb008375cd43a355838f3f4fa96" }, "downloads": -1, "filename": "Flask_Cors-1.10.1-py3-none-any.whl", "has_sig": false, "md5_digest": "cfbec9812b59bc23445b027b0b695962", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 13069, "upload_time": "2014-12-13T02:34:02", "url": "https://files.pythonhosted.org/packages/cb/b6/2bfca617006be005678332d31efd95effdd9e825aedee4b78ab2aa8c0877/Flask_Cors-1.10.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "773240e75483a1fcd0612c7303f4da89", "sha256": "4a9539982c7da9040955b4941f9a4968710ee0f76276f2acd30f63dd7c661a1c" }, "downloads": -1, "filename": "Flask-Cors-1.10.1.tar.gz", "has_sig": false, "md5_digest": "773240e75483a1fcd0612c7303f4da89", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25778, "upload_time": "2014-12-13T02:33:34", "url": "https://files.pythonhosted.org/packages/46/19/6a88789efca82b0d586c9ddd21624e4188c321415ac6d0c79ac871c12ed2/Flask-Cors-1.10.1.tar.gz" } ], "1.10.2": [ { "comment_text": "", "digests": { "md5": "7ecfdc7ba70b75d6e083c02c606f8ca9", "sha256": "9a0d7e4a060b3313966da5f89e2a2f60a78137f88af9257d9cbc7f0b8b8252bd" }, "downloads": -1, "filename": "Flask_Cors-1.10.2-py2-none-any.whl", "has_sig": false, "md5_digest": "7ecfdc7ba70b75d6e083c02c606f8ca9", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 13142, "upload_time": "2014-12-18T03:52:24", "url": "https://files.pythonhosted.org/packages/db/6a/8510401159c7aad8ac1cf335a783f19c7eadd3cbd657834afdbc7293e611/Flask_Cors-1.10.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "03ec6999050e00ec0c137ab9978c0cb2", "sha256": "c65eb97560fb1868d5f128fe3bb27f8dbb3ecd18b3d9b3064773ab54d8260d46" }, "downloads": -1, "filename": "Flask_Cors-1.10.2-py3-none-any.whl", "has_sig": false, "md5_digest": "03ec6999050e00ec0c137ab9978c0cb2", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 13146, "upload_time": "2014-12-18T03:53:15", "url": "https://files.pythonhosted.org/packages/8e/f6/169d393fbc827900e4fcfe8b85a33ae55235139ac4033cbea46e4842f881/Flask_Cors-1.10.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9458e63e92f28854bab25bbcdee33034", "sha256": "8e52160840aee8cdbde56e3f04baa02f598aac4dab2ff07f69a9b781e909bb49" }, "downloads": -1, "filename": "Flask-Cors-1.10.2.tar.gz", "has_sig": false, "md5_digest": "9458e63e92f28854bab25bbcdee33034", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26472, "upload_time": "2014-12-18T03:52:21", "url": "https://files.pythonhosted.org/packages/f1/f1/46d8a1380af7b0fcb260472d949f2568d3a13128b68193c2c57652606c99/Flask-Cors-1.10.2.tar.gz" } ], "1.10.3": [ { "comment_text": "", "digests": { "md5": "4f3c75ace0f724d1de167bd73745c965", "sha256": "9e6927aa0a46f314bca0ec63eb871cee898a162adfdd5b65224db7a008287423" }, "downloads": -1, "filename": "Flask-Cors-1.10.3.tar.gz", "has_sig": false, "md5_digest": "4f3c75ace0f724d1de167bd73745c965", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28494, "upload_time": "2015-02-13T03:04:02", "url": "https://files.pythonhosted.org/packages/8d/ee/a72a909f125400d54b616e4c6de9df9512ea724340dfb09acf7ee0bbe39e/Flask-Cors-1.10.3.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "56224759aca81fb068259769f46aa95f", "sha256": "765f2772de815f23ab30e448c37f14c4265eb783c977c0bb76d0ee60eee75ce8" }, "downloads": -1, "filename": "Flask-Cors-1.2.0.tar.gz", "has_sig": false, "md5_digest": "56224759aca81fb068259769f46aa95f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9259, "upload_time": "2014-03-13T14:42:19", "url": "https://files.pythonhosted.org/packages/ca/97/9434e031d4b6ffe7147e578f7a090345461c23c5c8b9dc7dc66b7947743a/Flask-Cors-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "560da029c2591b3aad21dad0c8108801", "sha256": "15bb4a2805550864bfa7a97558af329d2c93aae3197e46ccfb4b1cd747127fa7" }, "downloads": -1, "filename": "Flask-Cors-1.2.1.tar.gz", "has_sig": false, "md5_digest": "560da029c2591b3aad21dad0c8108801", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9328, "upload_time": "2014-03-28T20:52:29", "url": "https://files.pythonhosted.org/packages/b8/87/1eefd7728c18ae3883fedc8e06d1e27019caa70d267a88b1a60d5b88ff9e/Flask-Cors-1.2.1.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "e24462d17e2daadc7f9b8d07f259a50a", "sha256": "c6d4f1166ae7e63a66e77b95498db131575f814cce6f36e913174e97596410a5" }, "downloads": -1, "filename": "Flask-Cors-1.3.0.tar.gz", "has_sig": false, "md5_digest": "e24462d17e2daadc7f9b8d07f259a50a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9599, "upload_time": "2014-04-22T15:55:00", "url": "https://files.pythonhosted.org/packages/f6/0f/56e68c4066ac08bbff6bd69ba620d31442f05e0f4bb74c0561ff3528dfce/Flask-Cors-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "70adebadf9e21930c50b89965b7c9973", "sha256": "351c1be901e7b16f533ad1c11ba7e86911270620ad7ec5f8c01b622d2b05f91a" }, "downloads": -1, "filename": "Flask-Cors-1.3.1.tar.gz", "has_sig": false, "md5_digest": "70adebadf9e21930c50b89965b7c9973", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9988, "upload_time": "2014-05-19T02:51:41", "url": "https://files.pythonhosted.org/packages/99/71/c1de3ad6a43c80156df35c7271567ac443ef747812b0d169b5c8e7f21c1d/Flask-Cors-1.3.1.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "869ca8799c86987e3c31ce495442bfc0", "sha256": "c17ec7aed140b5ddd16c6fe2d978145d45cca7a814dd08c61809a4fb6f35ec01" }, "downloads": -1, "filename": "Flask-Cors-1.4.0.tar.gz", "has_sig": false, "md5_digest": "869ca8799c86987e3c31ce495442bfc0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10765, "upload_time": "2014-07-23T08:31:13", "url": "https://files.pythonhosted.org/packages/c3/33/c337cbc0d3b7936c7f12b5c594869616f8246e2fb4bd04eb8701337f585f/Flask-Cors-1.4.0.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "8f70ee93ec34ca92c3d922390e4073ba", "sha256": "e4eeafba7c18adc4e65552c5e6f5f85702de708d1c1199418b2e1f1f903974e2" }, "downloads": -1, "filename": "Flask-Cors-1.5.0.tar.gz", "has_sig": false, "md5_digest": "8f70ee93ec34ca92c3d922390e4073ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11318, "upload_time": "2014-07-24T02:27:04", "url": "https://files.pythonhosted.org/packages/c0/c8/495f0fb1d0ef077d0fe0881b534335c6bab9a76cbe2fdeb72b22ae31a8a4/Flask-Cors-1.5.0.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "0eb26ef667f06887bfdcb5a006ce53b1", "sha256": "9af158d96453e129b96587868e3a1fd626c6827d1e00383d3568f09952938739" }, "downloads": -1, "filename": "Flask_Cors-1.6.0-py2-none-any.whl", "has_sig": false, "md5_digest": "0eb26ef667f06887bfdcb5a006ce53b1", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 8719, "upload_time": "2014-07-30T06:57:58", "url": "https://files.pythonhosted.org/packages/65/5d/b295661102f3aada177e8fe291a2f3becb1f8fd8c25a1aa604638825b58e/Flask_Cors-1.6.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e0d60e03ecc1db151b3b42c30d4f6d00", "sha256": "7500089e195ca27f97e83d2df1a528dac883d4e2e9e5898785dddeb4aac98df2" }, "downloads": -1, "filename": "Flask_Cors-1.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e0d60e03ecc1db151b3b42c30d4f6d00", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 8719, "upload_time": "2014-07-30T06:57:59", "url": "https://files.pythonhosted.org/packages/be/9d/0d6127444da7448edd05b280c3d1af8be7a3010a246a18b22abe191e2000/Flask_Cors-1.6.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "41e0641e139eeecbace11e3f527bfe57", "sha256": "a21f2d1bf5c5d91f56ca1f800f93ee043db308a11ed5f2581ce22f70e0e7aac2" }, "downloads": -1, "filename": "Flask-Cors-1.6.0.tar.gz", "has_sig": false, "md5_digest": "41e0641e139eeecbace11e3f527bfe57", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12207, "upload_time": "2014-07-30T06:57:56", "url": "https://files.pythonhosted.org/packages/4e/50/661e44717482ed5a2960543e56b9d4d9ddbbbdc1b57c9c22c172fd7e7b8a/Flask-Cors-1.6.0.tar.gz" } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "4a921c0b55a59b442b34f3f1059b9c91", "sha256": "c77070196bcd6f76f40ad39e7f22cff3bbb28ba5064a35b350963edd2b3de967" }, "downloads": -1, "filename": "Flask_Cors-1.6.1-py2-none-any.whl", "has_sig": false, "md5_digest": "4a921c0b55a59b442b34f3f1059b9c91", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 8723, "upload_time": "2014-07-31T19:02:32", "url": "https://files.pythonhosted.org/packages/55/11/580371924d72595d3918b4c0cfa0723b3304163ec7da15fa740865485858/Flask_Cors-1.6.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c8391129493da1125e9d539aa3f197e2", "sha256": "0e35df804736687e43c91770af097cfc3f0d3cd3168f947947648c8ba40bd440" }, "downloads": -1, "filename": "Flask_Cors-1.6.1-py3-none-any.whl", "has_sig": false, "md5_digest": "c8391129493da1125e9d539aa3f197e2", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 8728, "upload_time": "2014-07-31T19:04:24", "url": "https://files.pythonhosted.org/packages/58/21/289bf60134d20fc1771882dd5442c8deb92e6861cae76eaefea7b095f635/Flask_Cors-1.6.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5fa8db164cd2d57e8ce3d16d25170bc1", "sha256": "24ae9e068d92963116ef3854e105b9840f42ddd759c1da836c2b86a3fb510736" }, "downloads": -1, "filename": "Flask-Cors-1.6.1.tar.gz", "has_sig": false, "md5_digest": "5fa8db164cd2d57e8ce3d16d25170bc1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13263, "upload_time": "2014-07-31T19:02:30", "url": "https://files.pythonhosted.org/packages/3c/9f/2eeccb028cfe2b24803b2d7209525687835648f6d9accd787cddae797e77/Flask-Cors-1.6.1.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "5d5156074acd97bb1cccf6fab3700f9c", "sha256": "689a4b147752eb0004327c27f3a7e2ba0c80ba6de84a59d28265b1a5a920f654" }, "downloads": -1, "filename": "Flask_Cors-1.7.0-py2-none-any.whl", "has_sig": false, "md5_digest": "5d5156074acd97bb1cccf6fab3700f9c", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 9894, "upload_time": "2014-08-09T02:36:19", "url": "https://files.pythonhosted.org/packages/da/34/11a3afc88121abcc305b0a7d8d7d4b5eeeaafe80e1b3fc89eb5bfe4cdb58/Flask_Cors-1.7.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "be2f7e698789f0e971127ccb09438218", "sha256": "672d2c16ce358f0962f693697b60fc6b1ca41c8c54ad94830b3b0b82c6ceb7a7" }, "downloads": -1, "filename": "Flask_Cors-1.7.0-py3-none-any.whl", "has_sig": false, "md5_digest": "be2f7e698789f0e971127ccb09438218", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 9903, "upload_time": "2014-08-09T02:36:55", "url": "https://files.pythonhosted.org/packages/d9/44/5fe2d02588f17f7a906d934c99198d5f3e79a745aa38877abbc2bf60d35b/Flask_Cors-1.7.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "35f4a29d8c6bb7217e923c9bd6ad2843", "sha256": "b8c970980c5939d9978722f5d918a015b264f5d032352040b614b4f3ae4b50da" }, "downloads": -1, "filename": "Flask-Cors-1.7.0.tar.gz", "has_sig": false, "md5_digest": "35f4a29d8c6bb7217e923c9bd6ad2843", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12657, "upload_time": "2014-08-09T02:36:15", "url": "https://files.pythonhosted.org/packages/87/8f/6ddb8c0482f64c1a15f367a60be9ae93ad2f2bf52d1ab96b2b04929446c7/Flask-Cors-1.7.0.tar.gz" } ], "1.7.1": [ { "comment_text": "", "digests": { "md5": "6a45e9dd6cf1e5d4356ad7dac247595d", "sha256": "bf94a1eba35913fbf907fa3cb8c904159eb592d8be325a0fb7a585e7ac2c74f1" }, "downloads": -1, "filename": "Flask_Cors-1.7.1-py2-none-any.whl", "has_sig": false, "md5_digest": "6a45e9dd6cf1e5d4356ad7dac247595d", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 9896, "upload_time": "2014-08-10T21:30:09", "url": "https://files.pythonhosted.org/packages/a4/77/d37f4223dfb246fe2ab109844219aac9829893670f3711b031dd7b5726f4/Flask_Cors-1.7.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c6d5ca5a713ac4b69fc9752a2faae7ea", "sha256": "474d04fe94fe23e5564c16b902372a94227de314232ffbe4e94bc9cfbbae3506" }, "downloads": -1, "filename": "Flask_Cors-1.7.1-py3-none-any.whl", "has_sig": false, "md5_digest": "c6d5ca5a713ac4b69fc9752a2faae7ea", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 9898, "upload_time": "2014-08-10T21:30:40", "url": "https://files.pythonhosted.org/packages/68/52/a0e2d09d8e0f81f65b942536bb639dc2616671a3636dc872b87645cb54b1/Flask_Cors-1.7.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "77510702587864742275f05f5f53c2ca", "sha256": "bbbc785cac2d0e89eb573beeb92bd2195e83e79c84ea31ddefad7a39081331d8" }, "downloads": -1, "filename": "Flask-Cors-1.7.1.tar.gz", "has_sig": false, "md5_digest": "77510702587864742275f05f5f53c2ca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13689, "upload_time": "2014-08-10T21:30:07", "url": "https://files.pythonhosted.org/packages/7d/b3/1d0db2787f719dbb1557857cd4e26846ee4fb8b33f64f7886c36b1e924d5/Flask-Cors-1.7.1.tar.gz" } ], "1.7.2": [ { "comment_text": "", "digests": { "md5": "bc94088e1f9446b1b71926e8302c3ac0", "sha256": "108654e24e720c5efe35fd67230286ae0069afe1e785d39dc12f759aeb938ad1" }, "downloads": -1, "filename": "Flask_Cors-1.7.2-py2-none-any.whl", "has_sig": false, "md5_digest": "bc94088e1f9446b1b71926e8302c3ac0", "packagetype": "bdist_wheel", "python_version": "2.6", "requires_python": null, "size": 9919, "upload_time": "2014-08-11T19:44:02", "url": "https://files.pythonhosted.org/packages/68/09/72a8d525d08b8f071379b63faac31aa799827404cae0ca81d38ba259ed80/Flask_Cors-1.7.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b11d3f379a5568825b18a8369d4a99ce", "sha256": "66a464ab4966099930ce01ecf5b7e96dad7671f13e2a980e28400757aa2fbd99" }, "downloads": -1, "filename": "Flask_Cors-1.7.2-py3-none-any.whl", "has_sig": false, "md5_digest": "b11d3f379a5568825b18a8369d4a99ce", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 9924, "upload_time": "2014-08-11T19:47:52", "url": "https://files.pythonhosted.org/packages/5e/04/d5ec1d666589ed822aab1e13119648cf7420959d41bcb210bcfdf3dd43dd/Flask_Cors-1.7.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a9beaaf3144d2b775e93e3c0ae541451", "sha256": "7c581b2c350d943a5db621bdb051d2a668785821f58492ffd2f301655fcc8e11" }, "downloads": -1, "filename": "Flask-Cors-1.7.2.tar.gz", "has_sig": false, "md5_digest": "a9beaaf3144d2b775e93e3c0ae541451", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13773, "upload_time": "2014-08-11T19:44:00", "url": "https://files.pythonhosted.org/packages/2a/1d/45cb02bcfd3b0749462a925d469ec41ee521aca476132d9f6bbafd9133a9/Flask-Cors-1.7.2.tar.gz" } ], "1.7.3": [ { "comment_text": "", "digests": { "md5": "8aacca0dec64ea8d8fe21222a7cd4b6d", "sha256": "bd0126e49348a784402bff104fa394789a90b9fb2fb817ba2019ce14122a578c" }, "downloads": -1, "filename": "Flask_Cors-1.7.3-py2-none-any.whl", "has_sig": false, "md5_digest": "8aacca0dec64ea8d8fe21222a7cd4b6d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 9971, "upload_time": "2014-08-12T23:00:23", "url": "https://files.pythonhosted.org/packages/67/bc/9df606c8d644861ba6f0f778e2a11e22109203f8667c209557ad43396c06/Flask_Cors-1.7.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5841fdcca777f9e7d57bd436cb2c4d0d", "sha256": "63553c26fbee2d5aae1cfaaeffaae420b9d98e44a72637b80f998cc7752306e4" }, "downloads": -1, "filename": "Flask_Cors-1.7.3-py3-none-any.whl", "has_sig": false, "md5_digest": "5841fdcca777f9e7d57bd436cb2c4d0d", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 9980, "upload_time": "2014-08-12T23:01:03", "url": "https://files.pythonhosted.org/packages/2e/6c/f7b46161b9fed79b6bf193a4ad42a10bb36331c4005c7bd24aed6b833579/Flask_Cors-1.7.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cf5daa67187be1fe4c67a7089ec5078d", "sha256": "90623c0d752f8d9da296b334dd69f7fe6a4ef973b13814fdf43beca8cbff428e" }, "downloads": -1, "filename": "Flask-Cors-1.7.3.tar.gz", "has_sig": false, "md5_digest": "cf5daa67187be1fe4c67a7089ec5078d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14891, "upload_time": "2014-08-12T23:00:21", "url": "https://files.pythonhosted.org/packages/3d/8e/26c0f43dfbff2c089f6dc9e31376d1204f377e1c0a63d11da95e19b237ff/Flask-Cors-1.7.3.tar.gz" } ], "1.7.4": [ { "comment_text": "", "digests": { "md5": "25708daa10a773dac31d3d28986eb28f", "sha256": "08960b5c59c886fbf7225bc2acdc28cc6a2cf5379ec705adcf554da9df9d8dd6" }, "downloads": -1, "filename": "Flask_Cors-1.7.4-py2-none-any.whl", "has_sig": false, "md5_digest": "25708daa10a773dac31d3d28986eb28f", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 9960, "upload_time": "2014-08-14T09:39:16", "url": "https://files.pythonhosted.org/packages/c0/f5/b5a87ff24819d78ddeea1ccb26af017637590015b7a30d78f666209e497b/Flask_Cors-1.7.4-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "148e733479720a2dfcf05309c24f7c92", "sha256": "d3e010865db0275d69285640921253ce15b9678a7b48cd4296c33454c2623dcf" }, "downloads": -1, "filename": "Flask_Cors-1.7.4-py3-none-any.whl", "has_sig": false, "md5_digest": "148e733479720a2dfcf05309c24f7c92", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 9959, "upload_time": "2014-08-14T09:39:11", "url": "https://files.pythonhosted.org/packages/9b/00/fc666da2576b851c3d57b993b2990ea40550eeb599dd814bc46e71d4a8aa/Flask_Cors-1.7.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e333d25152027db2c09e770b00ba6b65", "sha256": "deeee47b505e1735568dbf7f79f1fc26cb114b9786a0e613d6afb2664cb984dc" }, "downloads": -1, "filename": "Flask-Cors-1.7.4.tar.gz", "has_sig": false, "md5_digest": "e333d25152027db2c09e770b00ba6b65", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15290, "upload_time": "2014-08-14T09:39:08", "url": "https://files.pythonhosted.org/packages/9d/d7/e8961a992029bd9826a38ebeafdcdb1b84654aae0edc4c3d2680abe030fb/Flask-Cors-1.7.4.tar.gz" } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "afef39588bbd4c834ff1eb7b05702f1c", "sha256": "5e80b1f84d253c26396f68994643a7c5d442b10a12f888ea4f862a985bd37a78" }, "downloads": -1, "filename": "Flask_Cors-1.8.0-py2-none-any.whl", "has_sig": false, "md5_digest": "afef39588bbd4c834ff1eb7b05702f1c", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 12140, "upload_time": "2014-08-22T04:27:24", "url": "https://files.pythonhosted.org/packages/c1/20/d37f0b174ae0bf32ce4ab48c8465198c199976f92a80a823219cc4d5aa1e/Flask_Cors-1.8.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1ba89f46c30f3948cd7f04c2e6760aa0", "sha256": "89134252968effdb47a343bc57936e0edc6944124db9e28b30db0c3f9c48d24c" }, "downloads": -1, "filename": "Flask_Cors-1.8.0-py3-none-any.whl", "has_sig": false, "md5_digest": "1ba89f46c30f3948cd7f04c2e6760aa0", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 12144, "upload_time": "2014-08-22T04:27:01", "url": "https://files.pythonhosted.org/packages/51/a4/0a203c84b5a6631963cf2230f42135c69992fec701d238e09c29e0cbd27c/Flask_Cors-1.8.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d17d3d2ce53b2719dac8913ff5e15b29", "sha256": "da01f3ecf6d3d5c9c45ccdd95e6f93bc04a31f403ff5e4ad2e6c0fca99eb2cf1" }, "downloads": -1, "filename": "Flask-Cors-1.8.0.tar.gz", "has_sig": false, "md5_digest": "d17d3d2ce53b2719dac8913ff5e15b29", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17368, "upload_time": "2014-08-22T04:26:59", "url": "https://files.pythonhosted.org/packages/1f/fc/38f37e6ec9d522d46e3ea1598979d32b37a3a39288316563f9ba880102ee/Flask-Cors-1.8.0.tar.gz" } ], "1.8.1": [ { "comment_text": "", "digests": { "md5": "ac0d3488453fc3152cd90481f4579bfc", "sha256": "b6db9b7bf2167d2fb1b957fdf50024890ef59f6fb8099eae3242c2a2b612eac6" }, "downloads": -1, "filename": "Flask_Cors-1.8.1-py2-none-any.whl", "has_sig": false, "md5_digest": "ac0d3488453fc3152cd90481f4579bfc", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 12152, "upload_time": "2014-09-18T00:20:14", "url": "https://files.pythonhosted.org/packages/4b/30/5bb205953e93cafd850dd3e2a7d71e7d36f2a558b308fc1a841b12010e6e/Flask_Cors-1.8.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "60fb8a10c3eaddb3864a963fa9606120", "sha256": "131209849bd06df1dba05fd644b0818e045a33ac89bb87c646571b9725bcd330" }, "downloads": -1, "filename": "Flask_Cors-1.8.1-py3-none-any.whl", "has_sig": false, "md5_digest": "60fb8a10c3eaddb3864a963fa9606120", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 12155, "upload_time": "2014-09-18T00:21:46", "url": "https://files.pythonhosted.org/packages/6e/1a/af8c54da9848a6876fc7b4c4acf95131e1ed07cc6335936bc255d7338b7c/Flask_Cors-1.8.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1e54ffe4aae0ff9fabb2e71eb895fc30", "sha256": "a2a45ba7cc8bce251b3344566527ad27aa92b434220e3fc1ce90828bf9d79fee" }, "downloads": -1, "filename": "Flask-Cors-1.8.1.tar.gz", "has_sig": false, "md5_digest": "1e54ffe4aae0ff9fabb2e71eb895fc30", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23706, "upload_time": "2014-09-18T00:20:11", "url": "https://files.pythonhosted.org/packages/f6/c1/7c0284889ae4db5084e4ddca197a4f76e9b89f1d8c05851e3c3b04c4949c/Flask-Cors-1.8.1.tar.gz" } ], "1.9.0": [ { "comment_text": "", "digests": { "md5": "a6bb4b35e71a750b64bb07859b926acb", "sha256": "a0bc645f645bdc635249383acc662608c93d99aa520f056c42bd4ca2f12633b0" }, "downloads": -1, "filename": "Flask_Cors-1.9.0-py2-none-any.whl", "has_sig": false, "md5_digest": "a6bb4b35e71a750b64bb07859b926acb", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 12497, "upload_time": "2014-09-20T18:50:21", "url": "https://files.pythonhosted.org/packages/7c/93/789197e7952c43a6eda45021e218fcb9902d1bdb0369e7f37810420750a1/Flask_Cors-1.9.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f7ee9348dc4e750df2f4f56532baae7d", "sha256": "9aa0b8307eb808f98d775a59864ad15ac4a49340fa4062dfb0b629b6937ef047" }, "downloads": -1, "filename": "Flask_Cors-1.9.0-py3-none-any.whl", "has_sig": false, "md5_digest": "f7ee9348dc4e750df2f4f56532baae7d", "packagetype": "bdist_wheel", "python_version": "3.3", "requires_python": null, "size": 12501, "upload_time": "2014-09-20T18:51:09", "url": "https://files.pythonhosted.org/packages/db/4c/4db615471a2e68056419a20a4c42e01cdf957557cdd395660289d37be026/Flask_Cors-1.9.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "40302e7f181f112cfbcf703f90fd528a", "sha256": "d1237b21c3f98ea8bed387efdf1db1d1078df9c480f8fe06db21ff130420200b" }, "downloads": -1, "filename": "Flask-Cors-1.9.0.tar.gz", "has_sig": false, "md5_digest": "40302e7f181f112cfbcf703f90fd528a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22846, "upload_time": "2014-09-20T18:50:20", "url": "https://files.pythonhosted.org/packages/d7/c6/9d0990e8112dcbd50168b5d68400392c87860ee635e2e5393e179621c6bd/Flask-Cors-1.9.0.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "ba55b8519d812e4dcab261b3f7421b0d", "sha256": "9e45913f410867aa3d25b6fdee9adff139eabede58e253e53ccc2bfb24fba545" }, "downloads": -1, "filename": "Flask-Cors-2.0.0.tar.gz", "has_sig": false, "md5_digest": "ba55b8519d812e4dcab261b3f7421b0d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29398, "upload_time": "2015-03-24T04:12:37", "url": "https://files.pythonhosted.org/packages/fa/40/643f6e3602fe8955f4a0983eac96cc87c3cfef6df10359310d8a49fa8eeb/Flask-Cors-2.0.0.tar.gz" } ], "2.0.0rc1": [ { "comment_text": "", "digests": { "md5": "0c1a7c3023959d7e6faa847194635d21", "sha256": "7941bc1d8c8de01c4b40caf4dca5ee99b7c6d279f9e7661284d5c704874ec47f" }, "downloads": -1, "filename": "Flask-Cors-2.0.0rc1.tar.gz", "has_sig": false, "md5_digest": "0c1a7c3023959d7e6faa847194635d21", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26895, "upload_time": "2015-03-15T23:49:09", "url": "https://files.pythonhosted.org/packages/02/df/3f909c62c58a6db1d5512ab36e22ac3f289a428291df82fb67f9f10873c6/Flask-Cors-2.0.0rc1.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "ca5b9c19878d600f18286fc0f60a4469", "sha256": "b0f4232d3d648e5cf4b7f24d80a01b996d78f2f02df0aa9a49ed195c4a037741" }, "downloads": -1, "filename": "Flask-Cors-2.0.1.tar.gz", "has_sig": false, "md5_digest": "ca5b9c19878d600f18286fc0f60a4469", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27694, "upload_time": "2015-05-08T13:09:33", "url": "https://files.pythonhosted.org/packages/20/81/e206a2fcd3c61fdcfbf27f4aee6c484adb755f94b84b48a6c062ae2f75e7/Flask-Cors-2.0.1.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "dd8a83b98d86490e2b7d72ff4e07f970", "sha256": "749fc78f18f677317cb44d8ee3fdd3a5914ec1c5f5340d10e2ac020d405c7ed1" }, "downloads": -1, "filename": "Flask-Cors-2.1.0.tar.gz", "has_sig": false, "md5_digest": "dd8a83b98d86490e2b7d72ff4e07f970", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28038, "upload_time": "2015-08-05T01:03:04", "url": "https://files.pythonhosted.org/packages/42/2f/e0edebcd4506d0abafa9e66bafc225d2194d0abbc93ae471d96899676367/Flask-Cors-2.1.0.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "23930a4e9bab0338043a67c8676aa22e", "sha256": "6c920419d80a2af13e0bb02916dd892792eaac4c93365525a2a83e328ce7f58a" }, "downloads": -1, "filename": "Flask_Cors-2.1.1-py2.7.egg", "has_sig": false, "md5_digest": "23930a4e9bab0338043a67c8676aa22e", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 24281, "upload_time": "2015-11-08T05:07:59", "url": "https://files.pythonhosted.org/packages/1b/42/93827a469a5fd892256263f2edcdd1ba628920f75ab2a184659abe20ec51/Flask_Cors-2.1.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "0c7e9213eac8abf2895569f7e8dd1b3f", "sha256": "54bb99ba6d2881cf39402ba5619d91e996758f55e7f74431cf951120cb21e087" }, "downloads": -1, "filename": "Flask-Cors-2.1.1.tar.gz", "has_sig": false, "md5_digest": "0c7e9213eac8abf2895569f7e8dd1b3f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27669, "upload_time": "2015-11-08T05:07:55", "url": "https://files.pythonhosted.org/packages/6e/db/561e41fb2ad29ebcbd5a28b163bdffd67f42d5c0b3ce40fc26617be071a3/Flask-Cors-2.1.1.tar.gz" } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "772eade9a09c6d5a1b234249cc80ec52", "sha256": "becd127ef0cab825366cdafc83c09cc90cbd9a291f73ffc2f2d021c55a33ef82" }, "downloads": -1, "filename": "Flask_Cors-2.1.2-py2.7.egg", "has_sig": false, "md5_digest": "772eade9a09c6d5a1b234249cc80ec52", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 24278, "upload_time": "2015-11-08T15:20:20", "url": "https://files.pythonhosted.org/packages/75/36/a051302598afd7d4450ff1f00cbe74f96e087bde9b149e5e0956c4a2a83a/Flask_Cors-2.1.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "50274b36f1c885669234590009583c43", "sha256": "f262e73adce557b2802a64054c82a0395576c88fbb944e3a9e1e2147140aa639" }, "downloads": -1, "filename": "Flask-Cors-2.1.2.tar.gz", "has_sig": false, "md5_digest": "50274b36f1c885669234590009583c43", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27712, "upload_time": "2015-11-08T15:20:14", "url": "https://files.pythonhosted.org/packages/99/c3/a65908bc5a031652248dfdb1fd4814391e7b8efca704a94008d764c45292/Flask-Cors-2.1.2.tar.gz" } ], "2.1.3": [ { "comment_text": "", "digests": { "md5": "82a02fc81307ce3abc1586748f4e17c1", "sha256": "aaa05808aa56d3f302e3cef284e5dda62526848b90dbc6754984f5e672f7b207" }, "downloads": -1, "filename": "Flask_Cors-2.1.3-py2-none-any.whl", "has_sig": false, "md5_digest": "82a02fc81307ce3abc1586748f4e17c1", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 15637, "upload_time": "2016-08-18T14:35:31", "url": "https://files.pythonhosted.org/packages/5f/66/507a4f39a094f062aac50f7220f4bd9af903d4287d9763b5474844863473/Flask_Cors-2.1.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "081816f567d9f4cb2d1e859961225377", "sha256": "e768fa1da7f02c7ea64d426f4d1cfb303702327c98e3c189208ed0160c08c008" }, "downloads": -1, "filename": "Flask-Cors-2.1.3.tar.gz", "has_sig": false, "md5_digest": "081816f567d9f4cb2d1e859961225377", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26809, "upload_time": "2016-08-18T14:35:29", "url": "https://files.pythonhosted.org/packages/55/b5/2630b73014aca709e09ad06dbd07e67d3d38badcf7519a6e6265f95d0d62/Flask-Cors-2.1.3.tar.gz" } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "7e73a3d63c717bae22228b355584b470", "sha256": "f30fadfbd5c7d2ba86e43580aa7be0c825c082d7eca70734908efde53e7330c8" }, "downloads": -1, "filename": "Flask_Cors-3.0.0-py2.7.egg", "has_sig": false, "md5_digest": "7e73a3d63c717bae22228b355584b470", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 24791, "upload_time": "2016-08-20T05:28:10", "url": "https://files.pythonhosted.org/packages/fa/2b/122df210a7cbb7900a6e36e258dda27026e06beeab911647013053efd8ba/Flask_Cors-3.0.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "224d62807193a0ec53d63262c493d357", "sha256": "1580309003d0ba01ff744d30b98b8e908cc2fd1c958b407e652b181f91b2fac1" }, "downloads": -1, "filename": "Flask_Cors-3.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "224d62807193a0ec53d63262c493d357", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15774, "upload_time": "2016-08-20T05:28:06", "url": "https://files.pythonhosted.org/packages/eb/85/cf11c16f18662f7e710577fb0c4a7e75bffb902fad5278e80c23048f3724/Flask_Cors-3.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6939b39b965cf7cacd2f364934fdad54", "sha256": "dd1e27226594e18a710a70d08fb9522dfa3d9ec6d4fc4168480edc60d0897050" }, "downloads": -1, "filename": "Flask-Cors-3.0.0.tar.gz", "has_sig": false, "md5_digest": "6939b39b965cf7cacd2f364934fdad54", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28149, "upload_time": "2016-08-20T05:28:08", "url": "https://files.pythonhosted.org/packages/b9/0f/b67770a6aaad19aefce1aea7d4ae7c199eccecdec91448c44996d798e2c2/Flask-Cors-3.0.0.tar.gz" } ], "3.0.1": [ { "comment_text": "", "digests": { "md5": "5e648bf03fd7787bf30486b3d44c38ab", "sha256": "b7f7b13e56bd7fa288a17a296420ea96668daac5411c548e12d340a1692f5ece" }, "downloads": -1, "filename": "Flask_Cors-3.0.1-py2.7.egg", "has_sig": false, "md5_digest": "5e648bf03fd7787bf30486b3d44c38ab", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 24824, "upload_time": "2016-08-31T21:25:08", "url": "https://files.pythonhosted.org/packages/e9/3e/5d372e0d85193f0bd9dad1859dd0e6c9b6c6be905ea4d5ee86a64b9c2a49/Flask_Cors-3.0.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "e2524f2437e709013fb6d2eee236ee73", "sha256": "11878706bf49d053afd20e70ae7b6f69dfdd9a8bf6a99426d248c7fc85c3c54e" }, "downloads": -1, "filename": "Flask_Cors-3.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e2524f2437e709013fb6d2eee236ee73", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15792, "upload_time": "2016-08-31T21:25:04", "url": "https://files.pythonhosted.org/packages/4e/f9/7191bc75880836be9dc964e4132c36d81012639d1d78cf6cacb4e759b7f2/Flask_Cors-3.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "03896b411b9dad86259f56c6b6b4765b", "sha256": "317c63e4d6111eb6b7f0e3b92cb3da5890bd3f89758ae5db676d8a7802888260" }, "downloads": -1, "filename": "Flask-Cors-3.0.1.tar.gz", "has_sig": false, "md5_digest": "03896b411b9dad86259f56c6b6b4765b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28242, "upload_time": "2016-08-31T21:25:06", "url": "https://files.pythonhosted.org/packages/fc/76/9def9ae7673ea031558dba7de6f5c3c80149b71885d6e6ac9c7b2be0b82a/Flask-Cors-3.0.1.tar.gz" } ], "3.0.2": [ { "comment_text": "", "digests": { "md5": "2cada15433c42f426e66ddb9b865bb48", "sha256": "149a2cca7bb5785324ed12afc0f327050f4e5e397113359b1390e4430b55b3dd" }, "downloads": -1, "filename": "Flask_Cors-3.0.2-py2.7.egg", "has_sig": false, "md5_digest": "2cada15433c42f426e66ddb9b865bb48", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 24886, "upload_time": "2016-09-08T05:59:22", "url": "https://files.pythonhosted.org/packages/3d/19/570be953d317b1900980f417a09c141017d6ffbd5b4673ba9a86f27b74c7/Flask_Cors-3.0.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "c4390f173a63b74a880fc024b4c056e6", "sha256": "66a78dd308157f17296a254f793eba4cda1f75bfc96d9c5e33ad12bf9a411287" }, "downloads": -1, "filename": "Flask_Cors-3.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c4390f173a63b74a880fc024b4c056e6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15809, "upload_time": "2016-09-08T05:59:17", "url": "https://files.pythonhosted.org/packages/4f/4f/ea10ca247c21b6512766cf730621697ec2766fb2f712245b2c00983a57b1/Flask_Cors-3.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "11800bbedcc64233485f705411091be8", "sha256": "0a09f3559ded4759387dfa2a355de59bc161f67269a1f4b7b0712a64b1f7dad6" }, "downloads": -1, "filename": "Flask-Cors-3.0.2.tar.gz", "has_sig": false, "md5_digest": "11800bbedcc64233485f705411091be8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28353, "upload_time": "2016-09-08T05:59:20", "url": "https://files.pythonhosted.org/packages/1d/ea/86765a4ae667b4517dc16ef0fc8dd632ca3ea56ef419c4a6de31e715324e/Flask-Cors-3.0.2.tar.gz" } ], "3.0.3": [ { "comment_text": "", "digests": { "md5": "a2225c24089dd3e9ed2fbf92dfdf788a", "sha256": "55eb3864b4290f939ff19a2250fcb47d8c0f63d250c6780b922629299d011ec8" }, "downloads": -1, "filename": "Flask_Cors-3.0.3-py2.7.egg", "has_sig": false, "md5_digest": "a2225c24089dd3e9ed2fbf92dfdf788a", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 24935, "upload_time": "2017-06-28T16:49:33", "url": "https://files.pythonhosted.org/packages/54/c4/7a3a006ebc26beaabbc27ae2d4a601bc45a651fbd67aa2036ad3afbb2add/Flask_Cors-3.0.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "24828172b369cc1b5d3a91e5d4b9ca2a", "sha256": "ac4b81b3d90f5f18714c995c807f94501df8c9bbc22ef4261c1cd850748c3850" }, "downloads": -1, "filename": "Flask_Cors-3.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "24828172b369cc1b5d3a91e5d4b9ca2a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15853, "upload_time": "2017-06-28T16:49:30", "url": "https://files.pythonhosted.org/packages/83/a7/c7243ffd096a491013956c9ee71e2ed0b7d14979fafe89986ca2d30fc6f7/Flask_Cors-3.0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ddc12bdf8fa19a4ce1504ab9d0b0a8bc", "sha256": "62ebc5ad80dc21ca0ea9f57466c2c74e24a62274af890b391790c260eb7b754b" }, "downloads": -1, "filename": "Flask-Cors-3.0.3.tar.gz", "has_sig": false, "md5_digest": "ddc12bdf8fa19a4ce1504ab9d0b0a8bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28380, "upload_time": "2017-06-28T16:49:31", "url": "https://files.pythonhosted.org/packages/64/e8/e6bcf79dcad7b7c10f8c8c35d78b5710f2ddcd8ed38e607dd6a4853ab8a8/Flask-Cors-3.0.3.tar.gz" } ], "3.0.4": [ { "comment_text": "", "digests": { "md5": "9f770a862187fd506384f8732991a2d3", "sha256": "a1bb895b3e98b4325743149ebe0e3a0652537b8e37854f942bde7843f822f129" }, "downloads": -1, "filename": "Flask_Cors-3.0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9f770a862187fd506384f8732991a2d3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13192, "upload_time": "2018-04-26T17:34:08", "url": "https://files.pythonhosted.org/packages/61/f8/6a978ee0a2592463f8ab9e8834789126a32d5244a57b3f58b5cb4cd6cfe5/Flask_Cors-3.0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "de1373723b9304b101a184ddf15d7f8b", "sha256": "bec996f0603a0693c0ea63c8126e5f8e966bb679cf82e6104b254e9c7f3a7d08" }, "downloads": -1, "filename": "Flask-Cors-3.0.4.tar.gz", "has_sig": false, "md5_digest": "de1373723b9304b101a184ddf15d7f8b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28384, "upload_time": "2018-04-26T17:34:09", "url": "https://files.pythonhosted.org/packages/88/94/e529ec65fac24056e0877f39fb229db99ee2ee9018e9602f850655d6b5a0/Flask-Cors-3.0.4.tar.gz" } ], "3.0.6": [ { "comment_text": "", "digests": { "md5": "781505d50e6eb4d865a8c956711513f3", "sha256": "e4c8fc15d3e4b4cce6d3b325f2bab91e0e09811a61f50d7a53493bc44242a4f1" }, "downloads": -1, "filename": "Flask_Cors-3.0.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "781505d50e6eb4d865a8c956711513f3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13207, "upload_time": "2018-06-12T06:25:02", "url": "https://files.pythonhosted.org/packages/d1/db/f3495569d5c3e2bdb9fb8a66c54503364abb6f35a9da2227cf5c9c50dc42/Flask_Cors-3.0.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8b3e740e247c43459f58c077b1230a60", "sha256": "ecc016c5b32fa5da813ec8d272941cfddf5f6bba9060c405a70285415cbf24c9" }, "downloads": -1, "filename": "Flask-Cors-3.0.6.tar.gz", "has_sig": false, "md5_digest": "8b3e740e247c43459f58c077b1230a60", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28390, "upload_time": "2018-06-12T06:25:03", "url": "https://files.pythonhosted.org/packages/df/a6/be0d36d487ed5967a130919b2dedbd5324af3a576d322a6b7a02e0230386/Flask-Cors-3.0.6.tar.gz" } ], "3.0.7": [ { "comment_text": "", "digests": { "md5": "1dd9734d710a9cc92fcf202d5fe73f77", "sha256": "7ad56ee3b90d4955148fc25a2ecaa1124fc84298471e266a7fea59aeac4405a5" }, "downloads": -1, "filename": "Flask_Cors-3.0.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1dd9734d710a9cc92fcf202d5fe73f77", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13961, "upload_time": "2018-11-09T21:08:00", "url": "https://files.pythonhosted.org/packages/65/cb/683f71ff8daa3aea0a5cbb276074de39f9ab66d3fbb8ad5efb5bb83e90d2/Flask_Cors-3.0.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4448765829502d74745a976aa0620c1a", "sha256": "7e90bf225fdf163d11b84b59fb17594d0580a16b97ab4e1146b1fb2737c1cfec" }, "downloads": -1, "filename": "Flask-Cors-3.0.7.tar.gz", "has_sig": false, "md5_digest": "4448765829502d74745a976aa0620c1a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28297, "upload_time": "2018-11-09T21:08:02", "url": "https://files.pythonhosted.org/packages/45/b4/1810eb0c69d8432417dd25e3dd581bf0619d5c4f1b0c9f529f392d4aed31/Flask-Cors-3.0.7.tar.gz" } ], "3.0.8": [ { "comment_text": "", "digests": { "md5": "730545bad6b61b44fbc35561cb503288", "sha256": "f4d97201660e6bbcff2d89d082b5b6d31abee04b1b3003ee073a6fd25ad1d69a" }, "downloads": -1, "filename": "Flask_Cors-3.0.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "730545bad6b61b44fbc35561cb503288", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14009, "upload_time": "2019-06-08T20:53:54", "url": "https://files.pythonhosted.org/packages/78/38/e68b11daa5d613e3a91e4bf3da76c94ac9ee0d9cd515af9c1ab80d36f709/Flask_Cors-3.0.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "551cc4c0305a171d28caa2b3bc838867", "sha256": "72170423eb4612f0847318afff8c247b38bd516b7737adfc10d1c2cdbb382d16" }, "downloads": -1, "filename": "Flask-Cors-3.0.8.tar.gz", "has_sig": false, "md5_digest": "551cc4c0305a171d28caa2b3bc838867", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27651, "upload_time": "2019-06-08T20:53:56", "url": "https://files.pythonhosted.org/packages/9e/11/ca8b95c5bf9644471601e425f0de8cbd09a506bb6c24842cb17a6cd1eea8/Flask-Cors-3.0.8.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "730545bad6b61b44fbc35561cb503288", "sha256": "f4d97201660e6bbcff2d89d082b5b6d31abee04b1b3003ee073a6fd25ad1d69a" }, "downloads": -1, "filename": "Flask_Cors-3.0.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "730545bad6b61b44fbc35561cb503288", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14009, "upload_time": "2019-06-08T20:53:54", "url": "https://files.pythonhosted.org/packages/78/38/e68b11daa5d613e3a91e4bf3da76c94ac9ee0d9cd515af9c1ab80d36f709/Flask_Cors-3.0.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "551cc4c0305a171d28caa2b3bc838867", "sha256": "72170423eb4612f0847318afff8c247b38bd516b7737adfc10d1c2cdbb382d16" }, "downloads": -1, "filename": "Flask-Cors-3.0.8.tar.gz", "has_sig": false, "md5_digest": "551cc4c0305a171d28caa2b3bc838867", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27651, "upload_time": "2019-06-08T20:53:56", "url": "https://files.pythonhosted.org/packages/9e/11/ca8b95c5bf9644471601e425f0de8cbd09a506bb6c24842cb17a6cd1eea8/Flask-Cors-3.0.8.tar.gz" } ] }