This commit is contained in:
mofixx
2025-08-08 10:41:30 +02:00
parent 4444be3799
commit a5df3861fd
1674 changed files with 234266 additions and 0 deletions

View File

@ -0,0 +1,56 @@
Metadata-Version: 2.4
Name: pylsqpack
Version: 0.3.22
Summary: Python wrapper for the ls-qpack QPACK library
Author-email: Jeremy Lainé <jeremy.laine@m4x.org>
License-Expression: BSD-3-Clause
Project-URL: homepage, https://github.com/aiortc/pylsqpack
Project-URL: documentation, https://pylsqpack.readthedocs.io/
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
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.9
Description-Content-Type: text/x-rst
License-File: LICENSE
Dynamic: license-file
pylsqpack
=========
.. image:: https://img.shields.io/pypi/l/pylsqpack.svg
:target: https://pypi.python.org/pypi/pylsqpack
:alt: License
.. image:: https://img.shields.io/pypi/v/pylsqpack.svg
:target: https://pypi.python.org/pypi/pylsqpack
:alt: Version
.. image:: https://img.shields.io/pypi/pyversions/pylsqpack.svg
:target: https://pypi.python.org/pypi/pylsqpack
:alt: Python versions
.. image:: https://github.com/aiortc/pylsqpack/workflows/tests/badge.svg
:target: https://github.com/aiortc/pylsqpack/actions
:alt: Tests
.. image:: https://readthedocs.org/projects/pylsqpack/badge/?version=latest
:target: https://pylsqpack.readthedocs.io/
:alt: Documentation
``pylsqpack`` is a wrapper around the `ls-qpack`_ library. It provides Python
`Decoder` and `Encoder` objects to read or write HTTP/3 headers compressed
with QPACK.
To learn more about ``pylsqpack`` please `read the documentation`_.
.. _ls-qpack: https://github.com/litespeedtech/ls-qpack/
.. _read the documentation: https://pylsqpack.readthedocs.io/en/latest/

View File

@ -0,0 +1,12 @@
pylsqpack-0.3.22.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
pylsqpack-0.3.22.dist-info/METADATA,sha256=qk5FyUejGDR-WMNulTSOB5WFPVxAORtYBy6igjQsjyQ,2061
pylsqpack-0.3.22.dist-info/RECORD,,
pylsqpack-0.3.22.dist-info/WHEEL,sha256=1THz5U4gqwWqSS7e8GUG5Jt01Ubz5TdTlkJ8W-4jeoY,147
pylsqpack-0.3.22.dist-info/licenses/LICENSE,sha256=WqyzbJKCPTuZWuGzLXxCyT8HnXvsnAhb8xh99vvcOSs,1505
pylsqpack-0.3.22.dist-info/top_level.txt,sha256=QS-Tl3rMYCkkfn67PH4TbFiOG1kpS_v96u4MIpw0LQ0,10
pylsqpack/__init__.py,sha256=s0tEwlKS86TsMaeNr5Tnk5OgEdTbeaSArlKcyp1QkgM,184
pylsqpack/__init__.pyi,sha256=DtFR_NjgfyjmN1gPTx00ywfvW6uXmj1KftXqmriKHoY,801
pylsqpack/__pycache__/__init__.cpython-313.pyc,,
pylsqpack/_binding.abi3.so,sha256=RSBPpmjy6LsU5ZMFVFHoMrMBc4nLBP2EWAl96wJ8x_8,1127312
pylsqpack/binding.c,sha256=18hTBF6HhzAQ6HvKPAp5NRlDswKxHevBemXXP7s_teA,19224
pylsqpack/py.typed,sha256=sow9soTwP9T_gEAQSVh7Gb8855h04Nwmhs2We-JRgZM,7

View File

@ -0,0 +1,6 @@
Wheel-Version: 1.0
Generator: setuptools (80.4.0)
Root-Is-Purelib: false
Tag: cp39-abi3-manylinux_2_17_x86_64
Tag: cp39-abi3-manylinux2014_x86_64

View File

@ -0,0 +1,25 @@
Copyright (c) Jeremy Lainé.
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 pylsqpack 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.