Skip to content

Commit 6cf12ca

Browse files
Added pylintrc and flake8 update
1 parent 3594ad0 commit 6cf12ca

File tree

3,288 files changed

+901285
-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.

3,288 files changed

+901285
-0
lines changed

.pylintrc

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[MASTER]
2+
max-line-length = 88
3+
ignore-patterns=venv,frontend,data
4+
5+
[MESSAGES CONTROL]
6+
disable=
7+
R0801, # Duplicate code
8+
C0114, # Missing module docstring
9+
C0116, # Missing function docstring
10+
R0915 # Too many statements in function
11+
12+
[REPORTS]
13+
output-format = colorized
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pip
Lines changed: 28 additions & 0 deletions
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.
Lines changed: 118 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
Metadata-Version: 2.1
2+
Name: Flask
3+
Version: 2.3.2
4+
Summary: A simple framework for building complex web applications.
5+
Author-email: Armin Ronacher <[email protected]>
6+
Maintainer-email: Pallets <[email protected]>
7+
License: BSD-3-Clause
8+
Project-URL: Donate, https://palletsprojects.com/donate
9+
Project-URL: Documentation, https://flask.palletsprojects.com/
10+
Project-URL: Changes, https://flask.palletsprojects.com/changes/
11+
Project-URL: Source Code, https://github.com/pallets/flask/
12+
Project-URL: Issue Tracker, https://github.com/pallets/flask/issues/
13+
Project-URL: Chat, https://discord.gg/pallets
14+
Classifier: Development Status :: 5 - Production/Stable
15+
Classifier: Environment :: Web Environment
16+
Classifier: Framework :: Flask
17+
Classifier: Intended Audience :: Developers
18+
Classifier: License :: OSI Approved :: BSD License
19+
Classifier: Operating System :: OS Independent
20+
Classifier: Programming Language :: Python
21+
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
22+
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
23+
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
24+
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
25+
Requires-Python: >=3.8
26+
Description-Content-Type: text/x-rst
27+
License-File: LICENSE.rst
28+
Requires-Dist: Werkzeug (>=2.3.3)
29+
Requires-Dist: Jinja2 (>=3.1.2)
30+
Requires-Dist: itsdangerous (>=2.1.2)
31+
Requires-Dist: click (>=8.1.3)
32+
Requires-Dist: blinker (>=1.6.2)
33+
Requires-Dist: importlib-metadata (>=3.6.0) ; python_version < "3.10"
34+
Provides-Extra: async
35+
Requires-Dist: asgiref (>=3.2) ; extra == 'async'
36+
Provides-Extra: dotenv
37+
Requires-Dist: python-dotenv ; extra == 'dotenv'
38+
39+
Flask
40+
=====
41+
42+
Flask is a lightweight `WSGI`_ web application framework. It is designed
43+
to make getting started quick and easy, with the ability to scale up to
44+
complex applications. It began as a simple wrapper around `Werkzeug`_
45+
and `Jinja`_ and has become one of the most popular Python web
46+
application frameworks.
47+
48+
Flask offers suggestions, but doesn't enforce any dependencies or
49+
project layout. It is up to the developer to choose the tools and
50+
libraries they want to use. There are many extensions provided by the
51+
community that make adding new functionality easy.
52+
53+
.. _WSGI: https://wsgi.readthedocs.io/
54+
.. _Werkzeug: https://werkzeug.palletsprojects.com/
55+
.. _Jinja: https://jinja.palletsprojects.com/
56+
57+
58+
Installing
59+
----------
60+
61+
Install and update using `pip`_:
62+
63+
.. code-block:: text
64+
65+
$ pip install -U Flask
66+
67+
.. _pip: https://pip.pypa.io/en/stable/getting-started/
68+
69+
70+
A Simple Example
71+
----------------
72+
73+
.. code-block:: python
74+
75+
# save this as app.py
76+
from flask import Flask
77+
78+
app = Flask(__name__)
79+
80+
@app.route("/")
81+
def hello():
82+
return "Hello, World!"
83+
84+
.. code-block:: text
85+
86+
$ flask run
87+
* Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
88+
89+
90+
Contributing
91+
------------
92+
93+
For guidance on setting up a development environment and how to make a
94+
contribution to Flask, see the `contributing guidelines`_.
95+
96+
.. _contributing guidelines: https://github.com/pallets/flask/blob/main/CONTRIBUTING.rst
97+
98+
99+
Donate
100+
------
101+
102+
The Pallets organization develops and supports Flask and the libraries
103+
it uses. In order to grow the community of contributors and users, and
104+
allow the maintainers to devote more time to the projects, `please
105+
donate today`_.
106+
107+
.. _please donate today: https://palletsprojects.com/donate
108+
109+
110+
Links
111+
-----
112+
113+
- Documentation: https://flask.palletsprojects.com/
114+
- Changes: https://flask.palletsprojects.com/changes/
115+
- PyPI Releases: https://pypi.org/project/Flask/
116+
- Source Code: https://github.com/pallets/flask/
117+
- Issue Tracker: https://github.com/pallets/flask/issues/
118+
- Chat: https://discord.gg/pallets
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
../../Scripts/flask.exe,sha256=kgJl5cT-be-qG1Efb2o1QpVm-hL_HM2DcE_2HZj_eHQ,108415
2+
Flask-2.3.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
3+
Flask-2.3.2.dist-info/LICENSE.rst,sha256=SJqOEQhQntmKN7uYPhHg9-HTHwvY-Zp5yESOf_N9B-o,1475
4+
Flask-2.3.2.dist-info/METADATA,sha256=o20FsyHfhQR8TMWB_QrtQN2PHyzacLRUAgol_quBBvA,3716
5+
Flask-2.3.2.dist-info/RECORD,,
6+
Flask-2.3.2.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7+
Flask-2.3.2.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
8+
Flask-2.3.2.dist-info/entry_points.txt,sha256=s3MqQpduU25y4dq3ftBYD6bMVdVnbMpZP-sUNw0zw0k,41
9+
Flask-2.3.2.dist-info/top_level.txt,sha256=dvi65F6AeGWVU0TBpYiC04yM60-FX1gJFkK31IKQr5c,6
10+
flask/__init__.py,sha256=yeirfdSGPoM3Ylc9FWWJfy2gEQlHfiZCKrxBiPefACM,3731
11+
flask/__main__.py,sha256=bYt9eEaoRQWdejEHFD8REx9jxVEdZptECFsV7F49Ink,30
12+
flask/__pycache__/__init__.cpython-311.pyc,,
13+
flask/__pycache__/__main__.cpython-311.pyc,,
14+
flask/__pycache__/app.cpython-311.pyc,,
15+
flask/__pycache__/blueprints.cpython-311.pyc,,
16+
flask/__pycache__/cli.cpython-311.pyc,,
17+
flask/__pycache__/config.cpython-311.pyc,,
18+
flask/__pycache__/ctx.cpython-311.pyc,,
19+
flask/__pycache__/debughelpers.cpython-311.pyc,,
20+
flask/__pycache__/globals.cpython-311.pyc,,
21+
flask/__pycache__/helpers.cpython-311.pyc,,
22+
flask/__pycache__/logging.cpython-311.pyc,,
23+
flask/__pycache__/scaffold.cpython-311.pyc,,
24+
flask/__pycache__/sessions.cpython-311.pyc,,
25+
flask/__pycache__/signals.cpython-311.pyc,,
26+
flask/__pycache__/templating.cpython-311.pyc,,
27+
flask/__pycache__/testing.cpython-311.pyc,,
28+
flask/__pycache__/typing.cpython-311.pyc,,
29+
flask/__pycache__/views.cpython-311.pyc,,
30+
flask/__pycache__/wrappers.cpython-311.pyc,,
31+
flask/app.py,sha256=ht3Qx9U9z0I1qUfLoS7bYhJcubdpk-i54eHq37LDlN8,87620
32+
flask/blueprints.py,sha256=ZpVrwa8UY-YnVDsX_1K10XQjDwCUp7Qn2hmKln5icEQ,24332
33+
flask/cli.py,sha256=wRxX61jRDKQM4iZsYaVwcgGbpN2_2DmntLMWjVeiAx4,33720
34+
flask/config.py,sha256=yqdiN7TLOs2EChJ0uhTz3SICA3-QBG6l5wHTIUnANpc,12800
35+
flask/ctx.py,sha256=x2kGzUXtPzVyi2YSKrU_PV1AvtxTmh2iRdriJRTSPGM,14841
36+
flask/debughelpers.py,sha256=BR0xkd-sAyFuFW07D6NfrqNwSZxk1IrkG5n8zem-3sw,5547
37+
flask/globals.py,sha256=KUzVvSPh8v28kUasVDi_aQKB9hI2jZSYQHqaDU2P414,2945
38+
flask/helpers.py,sha256=QDxFmBW9GGXQDLuXrcxQRL0Ldo-_q11zEt3ZVgfINlI,24957
39+
flask/json/__init__.py,sha256=pdtpoK2b0b1u7Sxbx3feM7VWhsI20l1yGAvbYWxaxvc,5572
40+
flask/json/__pycache__/__init__.cpython-311.pyc,,
41+
flask/json/__pycache__/provider.cpython-311.pyc,,
42+
flask/json/__pycache__/tag.cpython-311.pyc,,
43+
flask/json/provider.py,sha256=Os0frb8oGfyWKL-TDxb0Uy-MY6gDhPdJkRaUl5xAOXI,7637
44+
flask/json/tag.py,sha256=ihb7QWrNEr0YC3KD4TolZbftgSPCuLk7FAvK49huYC0,8871
45+
flask/logging.py,sha256=lArx2Bq9oTtUJ-DnZL9t88xU2zytzp4UWSM9Bd72NDQ,2327
46+
flask/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47+
flask/scaffold.py,sha256=0tYQN98sC93YkIEw9g8BiIwceFZ27tNqBtBtFhFy5tY,35231
48+
flask/sessions.py,sha256=rFH2QKXG24dEazkKGxAHqUpAUh_30hDHrddhVYgAcY0,14169
49+
flask/signals.py,sha256=s1H4yKjf3c5dgVr41V6sJpE9dLJvmTJMYuK0rkqx3sw,1146
50+
flask/templating.py,sha256=XdP2hMFnZ5FCZOG7HUaLjC2VC-b4uHSWlDjwv_1p3qc,7503
51+
flask/testing.py,sha256=52-m5GecDcA-F2dFEYe8eDwApusxdg6S1suBaSC85N0,9768
52+
flask/typing.py,sha256=4Lj-YTxUoYvPYofC9GKu-1o0Ht8lyjp9z3I336J13_o,3005
53+
flask/views.py,sha256=V5hOGZLx0Bn99QGcM6mh5x_uM-MypVT0-RysEFU84jc,6789
54+
flask/wrappers.py,sha256=PhMp3teK3SnEmIdog59cO_DHiZ9Btn0qI1EifrTdwP8,5709

.venv/Lib/site-packages/Flask-2.3.2.dist-info/REQUESTED

Whitespace-only changes.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Wheel-Version: 1.0
2+
Generator: bdist_wheel (0.40.0)
3+
Root-Is-Purelib: true
4+
Tag: py3-none-any
5+
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[console_scripts]
2+
flask = flask.cli:main
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
flask
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pip

0 commit comments

Comments
 (0)