-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6,873 changed files
with
1,131,434 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
pip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
Copyright 2010 Pallets | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are | ||
met: | ||
|
||
1. Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the following disclaimer. | ||
|
||
2. Redistributions in binary form must reproduce the above copyright | ||
notice, this list of conditions and the following disclaimer in the | ||
documentation and/or other materials provided with the distribution. | ||
|
||
3. Neither the name of the copyright holder nor the names of its | ||
contributors may be used to endorse or promote products derived from | ||
this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | ||
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | ||
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | ||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | ||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | ||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
Metadata-Version: 2.1 | ||
Name: Flask | ||
Version: 2.1.1 | ||
Summary: A simple framework for building complex web applications. | ||
Home-page: https://palletsprojects.com/p/flask | ||
Author: Armin Ronacher | ||
Author-email: [email protected] | ||
Maintainer: Pallets | ||
Maintainer-email: [email protected] | ||
License: BSD-3-Clause | ||
Project-URL: Donate, https://palletsprojects.com/donate | ||
Project-URL: Documentation, https://flask.palletsprojects.com/ | ||
Project-URL: Changes, https://flask.palletsprojects.com/changes/ | ||
Project-URL: Source Code, https://github.com/pallets/flask/ | ||
Project-URL: Issue Tracker, https://github.com/pallets/flask/issues/ | ||
Project-URL: Twitter, https://twitter.com/PalletsTeam | ||
Project-URL: Chat, https://discord.gg/pallets | ||
Platform: UNKNOWN | ||
Classifier: Development Status :: 5 - Production/Stable | ||
Classifier: Environment :: Web Environment | ||
Classifier: Framework :: Flask | ||
Classifier: Intended Audience :: Developers | ||
Classifier: License :: OSI Approved :: BSD License | ||
Classifier: Operating System :: OS Independent | ||
Classifier: Programming Language :: Python | ||
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content | ||
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI | ||
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application | ||
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks | ||
Requires-Python: >=3.7 | ||
Description-Content-Type: text/x-rst | ||
License-File: LICENSE.rst | ||
Requires-Dist: Werkzeug (>=2.0) | ||
Requires-Dist: Jinja2 (>=3.0) | ||
Requires-Dist: itsdangerous (>=2.0) | ||
Requires-Dist: click (>=8.0) | ||
Requires-Dist: importlib-metadata (>=3.6.0) ; python_version < "3.10" | ||
Provides-Extra: async | ||
Requires-Dist: asgiref (>=3.2) ; extra == 'async' | ||
Provides-Extra: dotenv | ||
Requires-Dist: python-dotenv ; extra == 'dotenv' | ||
|
||
Flask | ||
===== | ||
|
||
Flask is a lightweight `WSGI`_ web application framework. It is designed | ||
to make getting started quick and easy, with the ability to scale up to | ||
complex applications. It began as a simple wrapper around `Werkzeug`_ | ||
and `Jinja`_ and has become one of the most popular Python web | ||
application frameworks. | ||
|
||
Flask offers suggestions, but doesn't enforce any dependencies or | ||
project layout. It is up to the developer to choose the tools and | ||
libraries they want to use. There are many extensions provided by the | ||
community that make adding new functionality easy. | ||
|
||
.. _WSGI: https://wsgi.readthedocs.io/ | ||
.. _Werkzeug: https://werkzeug.palletsprojects.com/ | ||
.. _Jinja: https://jinja.palletsprojects.com/ | ||
|
||
|
||
Installing | ||
---------- | ||
|
||
Install and update using `pip`_: | ||
|
||
.. code-block:: text | ||
|
||
$ pip install -U Flask | ||
|
||
.. _pip: https://pip.pypa.io/en/stable/getting-started/ | ||
|
||
|
||
A Simple Example | ||
---------------- | ||
|
||
.. code-block:: python | ||
|
||
# save this as app.py | ||
from flask import Flask | ||
|
||
app = Flask(__name__) | ||
|
||
@app.route("/") | ||
def hello(): | ||
return "Hello, World!" | ||
|
||
.. code-block:: text | ||
|
||
$ flask run | ||
* Running on http://127.0.0.1:5000/ (Press CTRL+C to quit) | ||
|
||
|
||
Contributing | ||
------------ | ||
|
||
For guidance on setting up a development environment and how to make a | ||
contribution to Flask, see the `contributing guidelines`_. | ||
|
||
.. _contributing guidelines: https://github.com/pallets/flask/blob/main/CONTRIBUTING.rst | ||
|
||
|
||
Donate | ||
------ | ||
|
||
The Pallets organization develops and supports Flask and the libraries | ||
it uses. In order to grow the community of contributors and users, and | ||
allow the maintainers to devote more time to the projects, `please | ||
donate today`_. | ||
|
||
.. _please donate today: https://palletsprojects.com/donate | ||
|
||
|
||
Links | ||
----- | ||
|
||
- Documentation: https://flask.palletsprojects.com/ | ||
- Changes: https://flask.palletsprojects.com/changes/ | ||
- PyPI Releases: https://pypi.org/project/Flask/ | ||
- Source Code: https://github.com/pallets/flask/ | ||
- Issue Tracker: https://github.com/pallets/flask/issues/ | ||
- Website: https://palletsprojects.com/p/flask/ | ||
- Twitter: https://twitter.com/PalletsTeam | ||
- Chat: https://discord.gg/pallets | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
../../bin/flask,sha256=7l5Oarb64y4dJmehoInO03HW5N2Gez9P21JnUAidfjA,249 | ||
Flask-2.1.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 | ||
Flask-2.1.1.dist-info/LICENSE.rst,sha256=SJqOEQhQntmKN7uYPhHg9-HTHwvY-Zp5yESOf_N9B-o,1475 | ||
Flask-2.1.1.dist-info/METADATA,sha256=frMk7czrH722MZYkf39insOJzrkA4tK7uv-MA3Tm6YU,3907 | ||
Flask-2.1.1.dist-info/RECORD,, | ||
Flask-2.1.1.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 | ||
Flask-2.1.1.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92 | ||
Flask-2.1.1.dist-info/entry_points.txt,sha256=s3MqQpduU25y4dq3ftBYD6bMVdVnbMpZP-sUNw0zw0k,41 | ||
Flask-2.1.1.dist-info/top_level.txt,sha256=dvi65F6AeGWVU0TBpYiC04yM60-FX1gJFkK31IKQr5c,6 | ||
flask/__init__.py,sha256=xuuH6HicugbJTZcN4jzB8tsyNcrIUq_mjyEBq_e1SfM,2207 | ||
flask/__main__.py,sha256=bYt9eEaoRQWdejEHFD8REx9jxVEdZptECFsV7F49Ink,30 | ||
flask/__pycache__/__init__.cpython-312.pyc,, | ||
flask/__pycache__/__main__.cpython-312.pyc,, | ||
flask/__pycache__/app.cpython-312.pyc,, | ||
flask/__pycache__/blueprints.cpython-312.pyc,, | ||
flask/__pycache__/cli.cpython-312.pyc,, | ||
flask/__pycache__/config.cpython-312.pyc,, | ||
flask/__pycache__/ctx.cpython-312.pyc,, | ||
flask/__pycache__/debughelpers.cpython-312.pyc,, | ||
flask/__pycache__/globals.cpython-312.pyc,, | ||
flask/__pycache__/helpers.cpython-312.pyc,, | ||
flask/__pycache__/logging.cpython-312.pyc,, | ||
flask/__pycache__/scaffold.cpython-312.pyc,, | ||
flask/__pycache__/sessions.cpython-312.pyc,, | ||
flask/__pycache__/signals.cpython-312.pyc,, | ||
flask/__pycache__/templating.cpython-312.pyc,, | ||
flask/__pycache__/testing.cpython-312.pyc,, | ||
flask/__pycache__/typing.cpython-312.pyc,, | ||
flask/__pycache__/views.cpython-312.pyc,, | ||
flask/__pycache__/wrappers.cpython-312.pyc,, | ||
flask/app.py,sha256=b6_j0OtlrssZ05fMReHNwzSLN3M7mkI9LR8UWuhcm0g,82070 | ||
flask/blueprints.py,sha256=W2C5eFciX2Zq8zJSKQHiQd488Ytcsrt6wcXSZ-rSU7c,23362 | ||
flask/cli.py,sha256=1rdES7TmIwyjXFu1tAPmwxnA1hgbTZFykuGxd2c8Sac,31157 | ||
flask/config.py,sha256=IWqHecH4poDxNEUg4U_ZA1CTlL5BKZDX3ofG4UGYyi0,12584 | ||
flask/ctx.py,sha256=smANecq_Tr3FFi2UMDs3Nn-xYi9GhKrzZvFpkDqXtLM,18336 | ||
flask/debughelpers.py,sha256=parkDxfxxGZZAOGSumyrGLCTKcws86lJ2X3RqikiwUE,6036 | ||
flask/globals.py,sha256=cWd-R2hUH3VqPhnmQNww892tQS6Yjqg_wg8UvW1M7NM,1723 | ||
flask/helpers.py,sha256=qkbHG_6-Ox_uDmmD8ZwA9k4nTI8Q8U5S_6QtXpzZCRg,29266 | ||
flask/json/__init__.py,sha256=kXkBo5CEDJ1EoFQpdwodz_UzpTSOwdy2woYme1QZYGU,10363 | ||
flask/json/__pycache__/__init__.cpython-312.pyc,, | ||
flask/json/__pycache__/tag.cpython-312.pyc,, | ||
flask/json/tag.py,sha256=fys3HBLssWHuMAIJuTcf2K0bCtosePBKXIWASZEEjnU,8857 | ||
flask/logging.py,sha256=1o_hirVGqdj7SBdETnhX7IAjklG89RXlrwz_2CjzQQE,2273 | ||
flask/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 | ||
flask/scaffold.py,sha256=vFn4R_sDhaWwxH77UGmRUWgE2p9tzj9VqRHG5dvE7wM,32545 | ||
flask/sessions.py,sha256=y0f1WBTQqjebkjtiT6d0G_ejIvllsjzch5sq_NUoXec,15834 | ||
flask/signals.py,sha256=H7QwDciK-dtBxinjKpexpglP0E6k0MJILiFWTItfmqU,2136 | ||
flask/templating.py,sha256=6rcyoV-Z57uBGMB6_xl4LhQJHbF456naf-GU8pjQSPM,5659 | ||
flask/testing.py,sha256=mfyDupACHNQinATGAcrqqDst9Ik4CnNg3rP9gvpUjks,10385 | ||
flask/typing.py,sha256=P1x3WCUYE7ddMNCUVqr04V5EjJy4M0Osz1MfVM0xgMQ,2116 | ||
flask/views.py,sha256=nhq31TRB5Z-z2mjFGZACaaB2Et5XPCmWhWxJxOvLWww,5948 | ||
flask/wrappers.py,sha256=Vgs2HlC8WNUOELQasV-Xad8DFTFwJe3eUltZG9z4Cu8,5675 |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Wheel-Version: 1.0 | ||
Generator: bdist_wheel (0.37.1) | ||
Root-Is-Purelib: true | ||
Tag: py3-none-any | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[console_scripts] | ||
flask = flask.cli:main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
flask |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
pip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Copyright (C) 2016 Cory Dolphin, Olin College | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,149 @@ | ||
Metadata-Version: 2.1 | ||
Name: Flask-Cors | ||
Version: 3.0.10 | ||
Summary: A Flask extension adding a decorator for CORS support | ||
Home-page: https://github.com/corydolphin/flask-cors | ||
Author: Cory Dolphin | ||
Author-email: [email protected] | ||
License: MIT | ||
Platform: any | ||
Classifier: Environment :: Web Environment | ||
Classifier: Intended Audience :: Developers | ||
Classifier: License :: OSI Approved :: MIT License | ||
Classifier: Operating System :: OS Independent | ||
Classifier: Programming Language :: Python | ||
Classifier: Programming Language :: Python :: 2 | ||
Classifier: Programming Language :: Python :: 2.7 | ||
Classifier: Programming Language :: Python :: 3 | ||
Classifier: Programming Language :: Python :: 3.4 | ||
Classifier: Programming Language :: Python :: 3.5 | ||
Classifier: Programming Language :: Python :: 3.6 | ||
Classifier: Programming Language :: Python :: 3.7 | ||
Classifier: Programming Language :: Python :: Implementation :: CPython | ||
Classifier: Programming Language :: Python :: Implementation :: PyPy | ||
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content | ||
Classifier: Topic :: Software Development :: Libraries :: Python Modules | ||
Requires-Dist: Flask (>=0.9) | ||
Requires-Dist: Six | ||
|
||
Flask-CORS | ||
========== | ||
|
||
|Build Status| |Latest Version| |Supported Python versions| | ||
|License| | ||
|
||
A Flask extension for handling Cross Origin Resource Sharing (CORS), making cross-origin AJAX possible. | ||
|
||
This package has a simple philosophy: when you want to enable CORS, you wish to enable it for all use cases on a domain. | ||
This means no mucking around with different allowed headers, methods, etc. | ||
|
||
By default, submission of cookies across domains is disabled due to the security implications. | ||
Please see the documentation for how to enable credential'ed requests, and please make sure you add some sort of `CSRF <http://en.wikipedia.org/wiki/Cross-site_request_forgery>`__ protection before doing so! | ||
|
||
Installation | ||
------------ | ||
|
||
Install the extension with using pip, or easy\_install. | ||
|
||
.. code:: bash | ||
|
||
$ pip install -U flask-cors | ||
|
||
Usage | ||
----- | ||
|
||
This 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. | ||
|
||
Simple Usage | ||
~~~~~~~~~~~~ | ||
|
||
In the simplest case, initialize the Flask-Cors extension with default arguments in order to allow CORS for all domains on all routes. | ||
See the full list of options in the `documentation <https://flask-cors.corydolphin.com/en/latest/api.html#extension>`__. | ||
|
||
.. code:: python | ||
|
||
|
||
from flask import Flask | ||
from flask_cors import CORS | ||
|
||
app = Flask(__name__) | ||
CORS(app) | ||
|
||
@app.route("/") | ||
def helloWorld(): | ||
return "Hello, cross-origin-world!" | ||
|
||
Resource specific CORS | ||
^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
Alternatively, you can specify CORS options on a resource and origin level of granularity by passing a dictionary as the `resources` option, mapping paths to a set of options. | ||
See the full list of options in the `documentation <https://flask-cors.corydolphin.com/en/latest/api.html#extension>`__. | ||
|
||
.. code:: python | ||
|
||
app = Flask(__name__) | ||
cors = CORS(app, resources={r"/api/*": {"origins": "*"}}) | ||
|
||
@app.route("/api/v1/users") | ||
def list_users(): | ||
return "user example" | ||
|
||
Route specific CORS via decorator | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
This extension also exposes a simple decorator to decorate flask routes with. | ||
Simply add ``@cross_origin()`` below a call to Flask's ``@app.route(..)`` to allow CORS on a given route. | ||
See the full list of options in the `decorator documentation <https://flask-cors.corydolphin.com/en/latest/api.html#decorator>`__. | ||
|
||
.. code:: python | ||
|
||
@app.route("/") | ||
@cross_origin() | ||
def helloWorld(): | ||
return "Hello, cross-origin-world!" | ||
|
||
Documentation | ||
------------- | ||
|
||
For a full list of options, please see the full `documentation <https://flask-cors.corydolphin.com/en/latest/api.html>`__ | ||
|
||
Troubleshooting | ||
--------------- | ||
|
||
If things aren't working as you expect, enable logging to help understand what is going on under the hood, and why. | ||
|
||
.. code:: python | ||
|
||
logging.getLogger('flask_cors').level = logging.DEBUG | ||
|
||
|
||
Tests | ||
----- | ||
|
||
A simple set of tests is included in ``test/``. | ||
To run, install nose, and simply invoke ``nosetests`` or ``python setup.py test`` to exercise the tests. | ||
|
||
Contributing | ||
------------ | ||
|
||
Questions, comments or improvements? | ||
Please create an issue on `Github <https://github.com/corydolphin/flask-cors>`__, tweet at `@corydolphin <https://twitter.com/corydolphin>`__ or send me an email. | ||
I do my best to include every contribution proposed in any way that I can. | ||
|
||
Credits | ||
------- | ||
|
||
This Flask extension is based upon the `Decorator for the HTTP Access Control <http://flask.pocoo.org/snippets/56/>`__ written by Armin Ronacher. | ||
|
||
.. |Build Status| image:: https://api.travis-ci.org/corydolphin/flask-cors.svg?branch=master | ||
:target: https://travis-ci.org/corydolphin/flask-cors | ||
.. |Latest Version| image:: https://img.shields.io/pypi/v/Flask-Cors.svg | ||
:target: https://pypi.python.org/pypi/Flask-Cors/ | ||
.. |Supported Python versions| image:: https://img.shields.io/pypi/pyversions/Flask-Cors.svg | ||
:target: https://img.shields.io/pypi/pyversions/Flask-Cors.svg | ||
.. |License| image:: http://img.shields.io/:license-mit-blue.svg | ||
:target: https://pypi.python.org/pypi/Flask-Cors/ | ||
|
||
|
Oops, something went wrong.