mirror of
https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git
synced 2025-08-14 00:25:46 +02:00
71 lines
2.5 KiB
Plaintext
71 lines
2.5 KiB
Plaintext
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
|