Skip to content

Commit 24c35bf

Browse files
committed
Adding file
0 parents  commit 24c35bf

File tree

1,105 files changed

+334041
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,105 files changed

+334041
-0
lines changed

.idea/.gitignore

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/profiles_settings.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/planetary-api.iml

+21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pip
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
Copyright 2010 Pallets
2+
3+
Redistribution and use in source and binary forms, with or without
4+
modification, are permitted provided that the following conditions are
5+
met:
6+
7+
1. Redistributions of source code must retain the above copyright
8+
notice, this list of conditions and the following disclaimer.
9+
10+
2. Redistributions in binary form must reproduce the above copyright
11+
notice, this list of conditions and the following disclaimer in the
12+
documentation and/or other materials provided with the distribution.
13+
14+
3. Neither the name of the copyright holder nor the names of its
15+
contributors may be used to endorse or promote products derived from
16+
this software without specific prior written permission.
17+
18+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
21+
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22+
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
24+
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
25+
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
26+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
1+
Metadata-Version: 2.1
2+
Name: Flask
3+
Version: 2.2.2
4+
Summary: A simple framework for building complex web applications.
5+
Home-page: https://palletsprojects.com/p/flask
6+
Author: Armin Ronacher
7+
Author-email: [email protected]
8+
Maintainer: Pallets
9+
Maintainer-email: [email protected]
10+
License: BSD-3-Clause
11+
Project-URL: Donate, https://palletsprojects.com/donate
12+
Project-URL: Documentation, https://flask.palletsprojects.com/
13+
Project-URL: Changes, https://flask.palletsprojects.com/changes/
14+
Project-URL: Source Code, https://github.com/pallets/flask/
15+
Project-URL: Issue Tracker, https://github.com/pallets/flask/issues/
16+
Project-URL: Twitter, https://twitter.com/PalletsTeam
17+
Project-URL: Chat, https://discord.gg/pallets
18+
Classifier: Development Status :: 5 - Production/Stable
19+
Classifier: Environment :: Web Environment
20+
Classifier: Framework :: Flask
21+
Classifier: Intended Audience :: Developers
22+
Classifier: License :: OSI Approved :: BSD License
23+
Classifier: Operating System :: OS Independent
24+
Classifier: Programming Language :: Python
25+
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
26+
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
27+
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
28+
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
29+
Requires-Python: >=3.7
30+
Description-Content-Type: text/x-rst
31+
License-File: LICENSE.rst
32+
Requires-Dist: Werkzeug (>=2.2.2)
33+
Requires-Dist: Jinja2 (>=3.0)
34+
Requires-Dist: itsdangerous (>=2.0)
35+
Requires-Dist: click (>=8.0)
36+
Requires-Dist: importlib-metadata (>=3.6.0) ; python_version < "3.10"
37+
Provides-Extra: async
38+
Requires-Dist: asgiref (>=3.2) ; extra == 'async'
39+
Provides-Extra: dotenv
40+
Requires-Dist: python-dotenv ; extra == 'dotenv'
41+
42+
Flask
43+
=====
44+
45+
Flask is a lightweight `WSGI`_ web application framework. It is designed
46+
to make getting started quick and easy, with the ability to scale up to
47+
complex applications. It began as a simple wrapper around `Werkzeug`_
48+
and `Jinja`_ and has become one of the most popular Python web
49+
application frameworks.
50+
51+
Flask offers suggestions, but doesn't enforce any dependencies or
52+
project layout. It is up to the developer to choose the tools and
53+
libraries they want to use. There are many extensions provided by the
54+
community that make adding new functionality easy.
55+
56+
.. _WSGI: https://wsgi.readthedocs.io/
57+
.. _Werkzeug: https://werkzeug.palletsprojects.com/
58+
.. _Jinja: https://jinja.palletsprojects.com/
59+
60+
61+
Installing
62+
----------
63+
64+
Install and update using `pip`_:
65+
66+
.. code-block:: text
67+
68+
$ pip install -U Flask
69+
70+
.. _pip: https://pip.pypa.io/en/stable/getting-started/
71+
72+
73+
A Simple Example
74+
----------------
75+
76+
.. code-block:: python
77+
78+
# save this as app.py
79+
from flask import Flask
80+
81+
app = Flask(__name__)
82+
83+
@app.route("/")
84+
def hello():
85+
return "Hello, World!"
86+
87+
.. code-block:: text
88+
89+
$ flask run
90+
* Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
91+
92+
93+
Contributing
94+
------------
95+
96+
For guidance on setting up a development environment and how to make a
97+
contribution to Flask, see the `contributing guidelines`_.
98+
99+
.. _contributing guidelines: https://github.com/pallets/flask/blob/main/CONTRIBUTING.rst
100+
101+
102+
Donate
103+
------
104+
105+
The Pallets organization develops and supports Flask and the libraries
106+
it uses. In order to grow the community of contributors and users, and
107+
allow the maintainers to devote more time to the projects, `please
108+
donate today`_.
109+
110+
.. _please donate today: https://palletsprojects.com/donate
111+
112+
113+
Links
114+
-----
115+
116+
- Documentation: https://flask.palletsprojects.com/
117+
- Changes: https://flask.palletsprojects.com/changes/
118+
- PyPI Releases: https://pypi.org/project/Flask/
119+
- Source Code: https://github.com/pallets/flask/
120+
- Issue Tracker: https://github.com/pallets/flask/issues/
121+
- Website: https://palletsprojects.com/p/flask/
122+
- Twitter: https://twitter.com/PalletsTeam
123+
- Chat: https://discord.gg/pallets
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
../../Scripts/flask.exe,sha256=9rJaLxbsPXe2xk-PBkiHKOiw2mX5OMGiOAXkZxejYWs,107907
2+
Flask-2.2.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
3+
Flask-2.2.2.dist-info/LICENSE.rst,sha256=SJqOEQhQntmKN7uYPhHg9-HTHwvY-Zp5yESOf_N9B-o,1475
4+
Flask-2.2.2.dist-info/METADATA,sha256=UXiwRLD1johd_tGlYOlOKXkJFIG82ehR3bxqh4XWFwA,3889
5+
Flask-2.2.2.dist-info/RECORD,,
6+
Flask-2.2.2.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7+
Flask-2.2.2.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
8+
Flask-2.2.2.dist-info/entry_points.txt,sha256=s3MqQpduU25y4dq3ftBYD6bMVdVnbMpZP-sUNw0zw0k,41
9+
Flask-2.2.2.dist-info/top_level.txt,sha256=dvi65F6AeGWVU0TBpYiC04yM60-FX1gJFkK31IKQr5c,6
10+
flask/__init__.py,sha256=Y4mEWqAMxj_Oxq9eYv3tWyN-0nU9yVKBGK_t6BxqvvM,2890
11+
flask/__main__.py,sha256=bYt9eEaoRQWdejEHFD8REx9jxVEdZptECFsV7F49Ink,30
12+
flask/__pycache__/__init__.cpython-310.pyc,,
13+
flask/__pycache__/__main__.cpython-310.pyc,,
14+
flask/__pycache__/app.cpython-310.pyc,,
15+
flask/__pycache__/blueprints.cpython-310.pyc,,
16+
flask/__pycache__/cli.cpython-310.pyc,,
17+
flask/__pycache__/config.cpython-310.pyc,,
18+
flask/__pycache__/ctx.cpython-310.pyc,,
19+
flask/__pycache__/debughelpers.cpython-310.pyc,,
20+
flask/__pycache__/globals.cpython-310.pyc,,
21+
flask/__pycache__/helpers.cpython-310.pyc,,
22+
flask/__pycache__/logging.cpython-310.pyc,,
23+
flask/__pycache__/scaffold.cpython-310.pyc,,
24+
flask/__pycache__/sessions.cpython-310.pyc,,
25+
flask/__pycache__/signals.cpython-310.pyc,,
26+
flask/__pycache__/templating.cpython-310.pyc,,
27+
flask/__pycache__/testing.cpython-310.pyc,,
28+
flask/__pycache__/typing.cpython-310.pyc,,
29+
flask/__pycache__/views.cpython-310.pyc,,
30+
flask/__pycache__/wrappers.cpython-310.pyc,,
31+
flask/app.py,sha256=VfBcGmEVveMcSajkUmDXCEOvAd-2mIBJ355KicvQ4gE,99025
32+
flask/blueprints.py,sha256=Jbrt-2jlLiFklC3De9EWBioPtDjHYYbXlTDK9Z7L2nk,26936
33+
flask/cli.py,sha256=foLlD8NiIXcxpxMmRQvvlZPbVM8pxOaJG3sa58c9dAA,33486
34+
flask/config.py,sha256=IWqHecH4poDxNEUg4U_ZA1CTlL5BKZDX3ofG4UGYyi0,12584
35+
flask/ctx.py,sha256=ZOGEWuFjsCIk3vm-C9pLME0e4saeBkeGpr2tTSvemSM,14851
36+
flask/debughelpers.py,sha256=_RvAL3TW5lqMJeCVWtTU6rSDJC7jnRaBL6OEkVmooyU,5511
37+
flask/globals.py,sha256=1DLZMi8Su-S1gf8zEiR3JPi6VXYIrYqm8C9__Ly66ss,3187
38+
flask/helpers.py,sha256=ELq27745jihrdyAP9qY8KENlCVDdnWRWTIn35L9a-UU,25334
39+
flask/json/__init__.py,sha256=TOwldHT3_kFaXHlORKi9yCWt7dbPNB0ovdHHQWlSRzY,11175
40+
flask/json/__pycache__/__init__.cpython-310.pyc,,
41+
flask/json/__pycache__/provider.cpython-310.pyc,,
42+
flask/json/__pycache__/tag.cpython-310.pyc,,
43+
flask/json/provider.py,sha256=jXCNypf11PN4ngQjEt6LnSdCWQ1yHIAkNLHlXQlCB-A,10674
44+
flask/json/tag.py,sha256=fys3HBLssWHuMAIJuTcf2K0bCtosePBKXIWASZEEjnU,8857
45+
flask/logging.py,sha256=WYng0bLTRS_CJrocGcCLJpibHf1lygHE_pg-KoUIQ4w,2293
46+
flask/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47+
flask/scaffold.py,sha256=tiQRK-vMY5nucoN6pewXF87GaxrltsCGOgTVsT6wm7s,33443
48+
flask/sessions.py,sha256=66oGlE-v9iac-eb54tFN3ILAjJ1FeeuHHWw98UVaoxc,15847
49+
flask/signals.py,sha256=H7QwDciK-dtBxinjKpexpglP0E6k0MJILiFWTItfmqU,2136
50+
flask/templating.py,sha256=1P4OzvSnA2fsJTYgQT3G4owVKsuOz8XddCiR6jMHGJ0,7419
51+
flask/testing.py,sha256=p51f9P7jDc_IDSiZug7jypnfVcxsQrMg3B2tnjlpEFw,10596
52+
flask/typing.py,sha256=KgxegTF9v9WvuongeF8LooIvpZPauzGrq9ZXf3gBlYc,2969
53+
flask/views.py,sha256=bveWilivkPP-4HB9w_fOusBz6sHNIl0QTqKUFMCltzE,6738
54+
flask/wrappers.py,sha256=Wa-bhjNdPPveSHS1dpzD_r-ayZxIYFF1DoWncKOafrk,5695

Lib/site-packages/Flask-2.2.2.dist-info/REQUESTED

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Wheel-Version: 1.0
2+
Generator: bdist_wheel (0.37.1)
3+
Root-Is-Purelib: true
4+
Tag: py3-none-any
5+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[console_scripts]
2+
flask = flask.cli:main
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
flask
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pip
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
Copyright 2007 Pallets
2+
3+
Redistribution and use in source and binary forms, with or without
4+
modification, are permitted provided that the following conditions are
5+
met:
6+
7+
1. Redistributions of source code must retain the above copyright
8+
notice, this list of conditions and the following disclaimer.
9+
10+
2. Redistributions in binary form must reproduce the above copyright
11+
notice, this list of conditions and the following disclaimer in the
12+
documentation and/or other materials provided with the distribution.
13+
14+
3. Neither the name of the copyright holder nor the names of its
15+
contributors may be used to endorse or promote products derived from
16+
this software without specific prior written permission.
17+
18+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
21+
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22+
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
24+
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
25+
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
26+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

0 commit comments

Comments
 (0)