Python HPACK library using nahpack
Project description
nahpackpy is an HTTP/2 RFC 7541 HPACK library. It wraps the Rust nahpack library.
Usage
>>> from nahpackpy import Decoder
>>> decoder = Decoder()
>>> headers = decoder.decode_block(
b'\x82\x86\x84A\x8c\xf1\xe3\xc2\xe5\xf2:k\xa0\xab\x90\xf4\xff'
)
>>> for header in headers:
print(header)
Header(name=b':method', value=b'GET')
Header(name=b':scheme', value=b'http')
Header(name=b':path', value=b'/')
Header(name=b':authority', value=b'www.example.com')
>>> from nahpackpy import Encoder
>>> encoder = Encoder()
>>> encoder.encode_block((
(b':method', b'GET'),
(b':scheme', b'http'),
(b':path', b'/'),
(b':authority', b'www.example.com'),
))
b'\x82\x86\x84A\x8c\xf1\xe3\xc2\xe5\xf2:k\xa0\xab\x90\xf4\xff'
Installation
Installation from source requires the use of the Rust language for compilation of extensions. The “Nightly” channel of rust is required. Download a package from rust-lang.org.
You can then create a wheel, which will contain the compiled shared library, by running make. Or, run python setup.py install to install in your current environment.
Misc
nahpackpy is licensed under the Mozilla Public License, Version 2.0.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
nahpackpy-0.1.0.tar.gz
(36.4 kB
view details)
File details
Details for the file nahpackpy-0.1.0.tar.gz
.
File metadata
- Download URL: nahpackpy-0.1.0.tar.gz
- Upload date:
- Size: 36.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 104226e27346b016fa281cd1509da5aff8f9264e363bfec2c10198a96dcf06c0 |
|
MD5 | 0a477774466a1753c69ad84e8a7bb02f |
|
BLAKE2b-256 | 748941b8bf9559a75e8c02d94fe378559c8ed5a3e996ee78ddf56eb21084f4f7 |