1
0
mirror of https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git synced 2025-08-14 00:25:46 +02:00

Все подряд

This commit is contained in:
MoonTestUse1
2024-12-31 02:37:57 +06:00
parent 8e53bb6cb2
commit d5780b2eab
3258 changed files with 1087440 additions and 268 deletions

View File

@@ -0,0 +1 @@
pip

View File

@@ -0,0 +1,70 @@
Metadata-Version: 2.1
Name: python-multipart
Version: 0.0.9
Summary: A streaming multipart parser for Python
Project-URL: Homepage, https://github.com/andrew-d/python-multipart
Project-URL: Documentation, https://andrew-d.github.io/python-multipart/
Project-URL: Changelog, https://github.com/andrew-d/python-multipart/blob/master/CHANGELOG.md
Project-URL: Source, https://github.com/andrew-d/python-multipart
Author-email: Andrew Dunham <andrew@du.nham.ca>
License-Expression: Apache-2.0
License-File: LICENSE.txt
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
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: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Provides-Extra: dev
Requires-Dist: atomicwrites==1.4.1; extra == 'dev'
Requires-Dist: attrs==23.2.0; extra == 'dev'
Requires-Dist: coverage==7.4.1; extra == 'dev'
Requires-Dist: hatch; extra == 'dev'
Requires-Dist: invoke==2.2.0; extra == 'dev'
Requires-Dist: more-itertools==10.2.0; extra == 'dev'
Requires-Dist: pbr==6.0.0; extra == 'dev'
Requires-Dist: pluggy==1.4.0; extra == 'dev'
Requires-Dist: py==1.11.0; extra == 'dev'
Requires-Dist: pytest-cov==4.1.0; extra == 'dev'
Requires-Dist: pytest-timeout==2.2.0; extra == 'dev'
Requires-Dist: pytest==8.0.0; extra == 'dev'
Requires-Dist: pyyaml==6.0.1; extra == 'dev'
Requires-Dist: ruff==0.2.1; extra == 'dev'
Description-Content-Type: text/x-rst
==================
Python-Multipart
==================
.. image:: https://github.com/andrew-d/python-multipart/actions/workflows/test.yaml/badge.svg
:target: https://github.com/andrew-d/python-multipart/actions
python-multipart is an Apache2 licensed streaming multipart parser for Python.
Test coverage is currently 100%.
Documentation is available `here`_.
.. _here: https://andrew-d.github.io/python-multipart/
Why?
----
Because streaming uploads are awesome for large files.
How to Test
-----------
If you want to test:
.. code-block:: bash
$ pip install '.[dev]'
$ inv test

View File

@@ -0,0 +1,14 @@
multipart/__init__.py,sha256=Z_EnZFoG_zmw22n7BomPmnVSCCl4XVNDYVWL8hry6Sc,448
multipart/__pycache__/__init__.cpython-311.pyc,,
multipart/__pycache__/decoders.cpython-311.pyc,,
multipart/__pycache__/exceptions.cpython-311.pyc,,
multipart/__pycache__/multipart.cpython-311.pyc,,
multipart/decoders.py,sha256=A4SQHOwFRNzCfr5Fx0iOYpS8USTxE9ofYbL9kOJywHs,6038
multipart/exceptions.py,sha256=a9buSOv_eiHZoukEJhdWX9LJYSJ6t7XOK3ZEaWoQZlk,992
multipart/multipart.py,sha256=sThvJ7TSPQc1tjCfXMgqQduT3yKsmxhwzNZnmL5S7KY,72841
python_multipart-0.0.9.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
python_multipart-0.0.9.dist-info/METADATA,sha256=5BDtS_h0qAxUX55VWiuCb7FZj6WZRd51l6YenNy4Its,2528
python_multipart-0.0.9.dist-info/RECORD,,
python_multipart-0.0.9.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
python_multipart-0.0.9.dist-info/WHEEL,sha256=TJPnKdtrSue7xZ_AVGkp9YXcvDrobsjBds1du3Nx6dc,87
python_multipart-0.0.9.dist-info/licenses/LICENSE.txt,sha256=qOgzF2zWF9rwC51tOfoVyo7evG0WQwec0vSJPAwom-I,556

View File

@@ -0,0 +1,4 @@
Wheel-Version: 1.0
Generator: hatchling 1.21.1
Root-Is-Purelib: true
Tag: py3-none-any

View File

@@ -0,0 +1,14 @@
Copyright 2012, Andrew Dunham
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.