second commit
This commit is contained in:
1
env/lib/python3.11/site-packages/starlette-0.41.3.dist-info/INSTALLER
vendored
Normal file
1
env/lib/python3.11/site-packages/starlette-0.41.3.dist-info/INSTALLER
vendored
Normal file
@ -0,0 +1 @@
|
||||
pip
|
173
env/lib/python3.11/site-packages/starlette-0.41.3.dist-info/METADATA
vendored
Normal file
173
env/lib/python3.11/site-packages/starlette-0.41.3.dist-info/METADATA
vendored
Normal file
@ -0,0 +1,173 @@
|
||||
Metadata-Version: 2.3
|
||||
Name: starlette
|
||||
Version: 0.41.3
|
||||
Summary: The little ASGI library that shines.
|
||||
Project-URL: Homepage, https://github.com/encode/starlette
|
||||
Project-URL: Documentation, https://www.starlette.io/
|
||||
Project-URL: Changelog, https://www.starlette.io/release-notes/
|
||||
Project-URL: Funding, https://github.com/sponsors/encode
|
||||
Project-URL: Source, https://github.com/encode/starlette
|
||||
Author-email: Tom Christie <tom@tomchristie.com>
|
||||
License: BSD-3-Clause
|
||||
Classifier: Development Status :: 3 - Alpha
|
||||
Classifier: Environment :: Web Environment
|
||||
Classifier: Framework :: AnyIO
|
||||
Classifier: Intended Audience :: Developers
|
||||
Classifier: License :: OSI Approved :: BSD License
|
||||
Classifier: Operating System :: OS Independent
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
Classifier: Programming Language :: Python :: 3.8
|
||||
Classifier: Programming Language :: Python :: 3.9
|
||||
Classifier: Programming Language :: Python :: 3.10
|
||||
Classifier: Programming Language :: Python :: 3.11
|
||||
Classifier: Programming Language :: Python :: 3.12
|
||||
Classifier: Programming Language :: Python :: 3.13
|
||||
Classifier: Topic :: Internet :: WWW/HTTP
|
||||
Requires-Python: >=3.8
|
||||
Requires-Dist: anyio<5,>=3.4.0
|
||||
Requires-Dist: typing-extensions>=3.10.0; python_version < '3.10'
|
||||
Provides-Extra: full
|
||||
Requires-Dist: httpx>=0.22.0; extra == 'full'
|
||||
Requires-Dist: itsdangerous; extra == 'full'
|
||||
Requires-Dist: jinja2; extra == 'full'
|
||||
Requires-Dist: python-multipart>=0.0.7; extra == 'full'
|
||||
Requires-Dist: pyyaml; extra == 'full'
|
||||
Description-Content-Type: text/markdown
|
||||
|
||||
<p align="center">
|
||||
<a href="https://www.starlette.io/"><img width="420px" src="https://raw.githubusercontent.com/encode/starlette/master/docs/img/starlette.svg" alt='starlette'></a>
|
||||
</p>
|
||||
<p align="center">
|
||||
<em>✨ The little ASGI framework that shines. ✨</em>
|
||||
</p>
|
||||
|
||||
---
|
||||
|
||||
[](https://github.com/encode/starlette/actions)
|
||||
[](https://pypi.python.org/pypi/starlette)
|
||||
[](https://pypi.org/project/starlette)
|
||||
|
||||
---
|
||||
|
||||
**Documentation**: <a href="https://www.starlette.io/" target="_blank">https://www.starlette.io</a>
|
||||
|
||||
**Source Code**: <a href="https://github.com/encode/starlette" target="_blank">https://github.com/encode/starlette</a>
|
||||
|
||||
---
|
||||
|
||||
# Starlette
|
||||
|
||||
Starlette is a lightweight [ASGI][asgi] framework/toolkit,
|
||||
which is ideal for building async web services in Python.
|
||||
|
||||
It is production-ready, and gives you the following:
|
||||
|
||||
* A lightweight, low-complexity HTTP web framework.
|
||||
* WebSocket support.
|
||||
* In-process background tasks.
|
||||
* Startup and shutdown events.
|
||||
* Test client built on `httpx`.
|
||||
* CORS, GZip, Static Files, Streaming responses.
|
||||
* Session and Cookie support.
|
||||
* 100% test coverage.
|
||||
* 100% type annotated codebase.
|
||||
* Few hard dependencies.
|
||||
* Compatible with `asyncio` and `trio` backends.
|
||||
* Great overall performance [against independent benchmarks][techempower].
|
||||
|
||||
## Installation
|
||||
|
||||
```shell
|
||||
$ pip install starlette
|
||||
```
|
||||
|
||||
You'll also want to install an ASGI server, such as [uvicorn](https://www.uvicorn.org/), [daphne](https://github.com/django/daphne/), or [hypercorn](https://hypercorn.readthedocs.io/en/latest/).
|
||||
|
||||
```shell
|
||||
$ pip install uvicorn
|
||||
```
|
||||
|
||||
## Example
|
||||
|
||||
```python title="example.py"
|
||||
from starlette.applications import Starlette
|
||||
from starlette.responses import JSONResponse
|
||||
from starlette.routing import Route
|
||||
|
||||
|
||||
async def homepage(request):
|
||||
return JSONResponse({'hello': 'world'})
|
||||
|
||||
routes = [
|
||||
Route("/", endpoint=homepage)
|
||||
]
|
||||
|
||||
app = Starlette(debug=True, routes=routes)
|
||||
```
|
||||
|
||||
Then run the application using Uvicorn:
|
||||
|
||||
```shell
|
||||
$ uvicorn example:app
|
||||
```
|
||||
|
||||
For a more complete example, see [encode/starlette-example](https://github.com/encode/starlette-example).
|
||||
|
||||
## Dependencies
|
||||
|
||||
Starlette only requires `anyio`, and the following are optional:
|
||||
|
||||
* [`httpx`][httpx] - Required if you want to use the `TestClient`.
|
||||
* [`jinja2`][jinja2] - Required if you want to use `Jinja2Templates`.
|
||||
* [`python-multipart`][python-multipart] - Required if you want to support form parsing, with `request.form()`.
|
||||
* [`itsdangerous`][itsdangerous] - Required for `SessionMiddleware` support.
|
||||
* [`pyyaml`][pyyaml] - Required for `SchemaGenerator` support.
|
||||
|
||||
You can install all of these with `pip install starlette[full]`.
|
||||
|
||||
## Framework or Toolkit
|
||||
|
||||
Starlette is designed to be used either as a complete framework, or as
|
||||
an ASGI toolkit. You can use any of its components independently.
|
||||
|
||||
```python
|
||||
from starlette.responses import PlainTextResponse
|
||||
|
||||
|
||||
async def app(scope, receive, send):
|
||||
assert scope['type'] == 'http'
|
||||
response = PlainTextResponse('Hello, world!')
|
||||
await response(scope, receive, send)
|
||||
```
|
||||
|
||||
Run the `app` application in `example.py`:
|
||||
|
||||
```shell
|
||||
$ uvicorn example:app
|
||||
INFO: Started server process [11509]
|
||||
INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
|
||||
```
|
||||
|
||||
Run uvicorn with `--reload` to enable auto-reloading on code changes.
|
||||
|
||||
## Modularity
|
||||
|
||||
The modularity that Starlette is designed on promotes building re-usable
|
||||
components that can be shared between any ASGI framework. This should enable
|
||||
an ecosystem of shared middleware and mountable applications.
|
||||
|
||||
The clean API separation also means it's easier to understand each component
|
||||
in isolation.
|
||||
|
||||
---
|
||||
|
||||
<p align="center"><i>Starlette is <a href="https://github.com/encode/starlette/blob/master/LICENSE.md">BSD licensed</a> code.<br/>Designed & crafted with care.</i></br>— ⭐️ —</p>
|
||||
|
||||
[asgi]: https://asgi.readthedocs.io/en/latest/
|
||||
[httpx]: https://www.python-httpx.org/
|
||||
[jinja2]: https://jinja.palletsprojects.com/
|
||||
[python-multipart]: https://andrew-d.github.io/python-multipart/
|
||||
[itsdangerous]: https://itsdangerous.palletsprojects.com/
|
||||
[sqlalchemy]: https://www.sqlalchemy.org
|
||||
[pyyaml]: https://pyyaml.org/wiki/PyYAMLDocumentation
|
||||
[techempower]: https://www.techempower.com/benchmarks/#hw=ph&test=fortune&l=zijzen-sf
|
77
env/lib/python3.11/site-packages/starlette-0.41.3.dist-info/RECORD
vendored
Normal file
77
env/lib/python3.11/site-packages/starlette-0.41.3.dist-info/RECORD
vendored
Normal file
@ -0,0 +1,77 @@
|
||||
starlette-0.41.3.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||
starlette-0.41.3.dist-info/METADATA,sha256=7EsRecR2WsS3I7s-JGNSs5Vr1vdJ8xpZS6rLzPQLgTk,5995
|
||||
starlette-0.41.3.dist-info/RECORD,,
|
||||
starlette-0.41.3.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||
starlette-0.41.3.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
||||
starlette-0.41.3.dist-info/licenses/LICENSE.md,sha256=3LlWd6AiQCQxh-lk-UGEfRmxeCHPmeWvrmhPqzKMGb8,1518
|
||||
starlette/__init__.py,sha256=EChm0kg8tvQYir6HvTWH9YUjNuvxZsBcMxI_IHY0s0E,23
|
||||
starlette/__pycache__/__init__.cpython-311.pyc,,
|
||||
starlette/__pycache__/_compat.cpython-311.pyc,,
|
||||
starlette/__pycache__/_exception_handler.cpython-311.pyc,,
|
||||
starlette/__pycache__/_utils.cpython-311.pyc,,
|
||||
starlette/__pycache__/applications.cpython-311.pyc,,
|
||||
starlette/__pycache__/authentication.cpython-311.pyc,,
|
||||
starlette/__pycache__/background.cpython-311.pyc,,
|
||||
starlette/__pycache__/concurrency.cpython-311.pyc,,
|
||||
starlette/__pycache__/config.cpython-311.pyc,,
|
||||
starlette/__pycache__/convertors.cpython-311.pyc,,
|
||||
starlette/__pycache__/datastructures.cpython-311.pyc,,
|
||||
starlette/__pycache__/endpoints.cpython-311.pyc,,
|
||||
starlette/__pycache__/exceptions.cpython-311.pyc,,
|
||||
starlette/__pycache__/formparsers.cpython-311.pyc,,
|
||||
starlette/__pycache__/requests.cpython-311.pyc,,
|
||||
starlette/__pycache__/responses.cpython-311.pyc,,
|
||||
starlette/__pycache__/routing.cpython-311.pyc,,
|
||||
starlette/__pycache__/schemas.cpython-311.pyc,,
|
||||
starlette/__pycache__/staticfiles.cpython-311.pyc,,
|
||||
starlette/__pycache__/status.cpython-311.pyc,,
|
||||
starlette/__pycache__/templating.cpython-311.pyc,,
|
||||
starlette/__pycache__/testclient.cpython-311.pyc,,
|
||||
starlette/__pycache__/types.cpython-311.pyc,,
|
||||
starlette/__pycache__/websockets.cpython-311.pyc,,
|
||||
starlette/_compat.py,sha256=8Ouoz-MCFG47QxLYvPMDrIuyK9L55D3rnURvRwEKkWY,1134
|
||||
starlette/_exception_handler.py,sha256=BzNeSymaOOrSr2QAM3B8gWohqkOEZ4u5HJ0m8Cd48Tw,2233
|
||||
starlette/_utils.py,sha256=lnKnE_dymHPlKI9xeKQC8iNgT7hja_p-ftVQFk3QB6o,2716
|
||||
starlette/applications.py,sha256=u9cs64o_lBRImfFEl17GeWpTTXoJIHXTyU1Rvws9Ssg,10447
|
||||
starlette/authentication.py,sha256=9dlyeykDMhoxgmI9hFVZ38uu8Nl6k2NZiaoa607Z8hc,4948
|
||||
starlette/background.py,sha256=50zBQ_50lV9YGRGevBUFQ4DOwisU47pUV_PfiBG9Cg4,1257
|
||||
starlette/concurrency.py,sha256=o-ngsziZzJtatfJxeqT3xvKH20KE4lTqzzI71jGUPS4,1850
|
||||
starlette/config.py,sha256=xCXgQTgMaeuyXaHRFor7EJiAVMUdjnu6Hgwz4rr6sUU,4445
|
||||
starlette/convertors.py,sha256=LeLag5FHWCTkL5e5Itgw5fMqaiV2YFV1m_2WnbhMT4I,2283
|
||||
starlette/datastructures.py,sha256=inNHqDOUgxjojSVc5FN5oL03izuQM2nIgDzn7dzhCbg,22334
|
||||
starlette/endpoints.py,sha256=-qQxbVpDHNfqAepXfNAsUi44qA89_IJt1g2n5LSnvH4,5077
|
||||
starlette/exceptions.py,sha256=GUDm_a-S1NUoAn-6UVGylDcmTC-ibfXmynJsBpYKJgg,1826
|
||||
starlette/formparsers.py,sha256=_ff5AqvGB1fOSiwTms3hXtcKzXnNghdAOCNLfkil_Zk,10779
|
||||
starlette/middleware/__init__.py,sha256=wuxPdd9-VX7uDVcrP-vVD1X_PDTSLJLFyzOTN1SKN_o,1194
|
||||
starlette/middleware/__pycache__/__init__.cpython-311.pyc,,
|
||||
starlette/middleware/__pycache__/authentication.cpython-311.pyc,,
|
||||
starlette/middleware/__pycache__/base.cpython-311.pyc,,
|
||||
starlette/middleware/__pycache__/cors.cpython-311.pyc,,
|
||||
starlette/middleware/__pycache__/errors.cpython-311.pyc,,
|
||||
starlette/middleware/__pycache__/exceptions.cpython-311.pyc,,
|
||||
starlette/middleware/__pycache__/gzip.cpython-311.pyc,,
|
||||
starlette/middleware/__pycache__/httpsredirect.cpython-311.pyc,,
|
||||
starlette/middleware/__pycache__/sessions.cpython-311.pyc,,
|
||||
starlette/middleware/__pycache__/trustedhost.cpython-311.pyc,,
|
||||
starlette/middleware/__pycache__/wsgi.cpython-311.pyc,,
|
||||
starlette/middleware/authentication.py,sha256=ftWVVbETxrr0gOwtxwULww362Wkt1s9iOVu4s1LJ53I,1791
|
||||
starlette/middleware/base.py,sha256=2V2DgCWo5KcmBfxbohe6Aidgnhq9A8tA1L2jdUONH-Y,9204
|
||||
starlette/middleware/cors.py,sha256=-ih4JxmeRaKhmv076DcJE-wd0K2FJbo23gzZdLrJb00,7051
|
||||
starlette/middleware/errors.py,sha256=bomTUfQIo7CIwnZQ8fFz4BCDY5idQnrsrhGSpZNiH-s,8066
|
||||
starlette/middleware/exceptions.py,sha256=3GVNMqT1bssla2Be8Oifx-sQdPrNdYWu5Ey1NwPZVw0,2770
|
||||
starlette/middleware/gzip.py,sha256=EQRZnuCbn56CqSMZ7Z2GhtrAW8jw0ytu7z7wwUWqWQs,4484
|
||||
starlette/middleware/httpsredirect.py,sha256=SNTleaYALGoITV7xwbic4gB6VYdM8Ylea_ykciUz31g,848
|
||||
starlette/middleware/sessions.py,sha256=Cpbql_BTanVqDbhPGdoUrNvHIKf9D3Yuc48cJZerFTU,3566
|
||||
starlette/middleware/trustedhost.py,sha256=dXbW22C3RYNp3TsdfCuE0MNS-VZFcN8B_S3wYrzETm8,2203
|
||||
starlette/middleware/wsgi.py,sha256=eZixFvqlkBo3hdMajlEaifkpkcnB_uUYWEY_AqihiBI,5365
|
||||
starlette/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||
starlette/requests.py,sha256=fiT2dGGXlTIRQLSUzcVHawCdGRiuyEzT2oSZbHDUn0E,11392
|
||||
starlette/responses.py,sha256=_y3mAy5eWYNoiwoWtkwKpl_RVmZ0w4UZk4MZ0MaGaXg,20050
|
||||
starlette/routing.py,sha256=50piIOM5qp_jx4iggjnqJJIhyX3kEYCD8qq9tIxrTKg,34507
|
||||
starlette/schemas.py,sha256=kKVRFG_kicD8geEnlfHoEsBCE-8MsdXyPE0VM4f2Q24,5181
|
||||
starlette/staticfiles.py,sha256=HMy3ow8xyfV9PFNTvXmLSw0xN5dEmQpGsUvqziPjuiE,8426
|
||||
starlette/status.py,sha256=la21ML9GUFStdfO2eJjtVXylvVRB6SsUEnnWoMhjYXk,6099
|
||||
starlette/templating.py,sha256=YNkdORIhmgp9USRyAGdR1OMFcPsD-I2_MLRGXOeTIyQ,8366
|
||||
starlette/testclient.py,sha256=X0TsmTau6nPgcz-SWhPAWRBr8OUg5snrQsG5qzC_pr0,29961
|
||||
starlette/types.py,sha256=I2yIP5R1qyVD1GBiJZQ_I9dprcYUOVVK8fHa6UQVsqg,1048
|
||||
starlette/websockets.py,sha256=viiEj9h5CxSrh8vNSP3hlqY6W6cLv2mRKj1LTcq6xhg,8311
|
0
env/lib/python3.11/site-packages/starlette-0.41.3.dist-info/REQUESTED
vendored
Normal file
0
env/lib/python3.11/site-packages/starlette-0.41.3.dist-info/REQUESTED
vendored
Normal file
4
env/lib/python3.11/site-packages/starlette-0.41.3.dist-info/WHEEL
vendored
Normal file
4
env/lib/python3.11/site-packages/starlette-0.41.3.dist-info/WHEEL
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
Wheel-Version: 1.0
|
||||
Generator: hatchling 1.26.3
|
||||
Root-Is-Purelib: true
|
||||
Tag: py3-none-any
|
27
env/lib/python3.11/site-packages/starlette-0.41.3.dist-info/licenses/LICENSE.md
vendored
Normal file
27
env/lib/python3.11/site-packages/starlette-0.41.3.dist-info/licenses/LICENSE.md
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
Copyright © 2018, [Encode OSS Ltd](https://www.encode.io/).
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
* Redistributions of source code must retain the above copyright notice, this
|
||||
list of conditions and the following disclaimer.
|
||||
|
||||
* 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.
|
||||
|
||||
* 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.
|
Reference in New Issue
Block a user