⚡ Lightning-fast multipart parsing for Python
Project description
fast-multipart ⚡
Lightning-fast multipart parsing for Python - An enhanced successor to
pymulter
🚀 Performance
fast-multipart significantly outperforms the standard multipart library across all file sizes:
| File Size | Library | Avg Time | Avg Throughput | Performance Gain |
|---|---|---|---|---|
| Small (413 B) | fast-multipart | 0.0006s | 623.1 KB/s | 4.1x faster |
| multipart | 0.0026s | 152.6 KB/s | ||
| Medium (8 MB) | fast-multipart | 0.0055s | 1.4 GB/s | 3.0x faster |
| multipart | 0.0165s | 483.6 MB/s | ||
| Large (80 MB) | fast-multipart | 0.0433s | 1.8 GB/s | 2.4x faster |
| multipart | 0.1039s | 770.2 MB/s | ||
| XL (200 MB) | fast-multipart | 0.0956s | 2.0 GB/s | 2.6x faster |
| multipart | 0.2463s | 812.0 MB/s | ||
| 2XL (1000 MB) | fast-multipart | 0.4324s | 2.3 GB/s | 2.9x faster |
| multipart | 1.2743s | 784.8 MB/s |
✨ Key Features
- Up to 4.1x Faster: Significant performance gains over pure Python parsers
- Streaming Parser: Process large files chunk-by-chunk
- Callback-Based: Handle fields and data as they arrive
- Type-Safe: Full type hints support for better development experience
📦 Installation
# Recommended: using uv
uv add fast-multipart
# Or with pip
pip install fast-multipart
🎯 Quick Start
from fast_multipart import MultipartParser, FieldPart
def on_field(field: FieldPart) -> None:
print(f"Field: {field.name}")
if field.filename:
print(f"Filename: {field.filename}")
print(f"Content-Type: {field.content_type}")
def on_field_data(data: bytes) -> None:
# Process chunk of field data
print(f"Received {len(data)} bytes")
def on_field_end() -> None:
print("Field completed")
# Create parser with boundary from Content-Type header
boundary = "----WebKitFormBoundary7MA4YWxkTrZu0gW"
parser = MultipartParser(
boundary=boundary,
on_field=on_field,
on_field_data=on_field_data,
on_field_end=on_field_end
)
# Feed data to parser
with open('multipart_data.bin', 'rb') as f:
while chunk := f.read(8192):
parser.feed(chunk)
parser.close()
For more info, feel free to check out the tests file.
🔧 API Reference
MultipartParser
The core streaming parser for multipart data.
MultipartParser(
boundary: str, # Boundary string from Content-Type
on_field: Callable[[FieldPart], Any], # Called when new field starts
on_field_data: Callable[[bytes], Any], # Called for each data chunk
on_field_end: Callable[[], Any], # Called when field ends
buffer_cap: Optional[int] = 8912 # Internal buffer size
)
FieldPart
Contains metadata for each multipart field.
class FieldPart:
name: str # Field name
filename: Optional[str] # Original filename (if file upload)
content_type: Optional[str] # MIME type
headers: dict[str, str] # All field headers
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
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fast_multipart-0.1.0.tar.gz.
File metadata
- Download URL: fast_multipart-0.1.0.tar.gz
- Upload date:
- Size: 13.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e5c5f4bf712839b32245b02fcb73c1b2b72f72049c97521cccc87afec0a5c03
|
|
| MD5 |
cbe3eed599d0c610d727431cac6835c7
|
|
| BLAKE2b-256 |
ef79ca364e26466ea2c045ca26c2bafc9d900f9c1c660989d37565d116c35b6b
|
File details
Details for the file fast_multipart-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 394.0 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec5123cd3356a9eda61e3e49ab244ccccdb0febc8142cd6a28c2ba780c48d1c6
|
|
| MD5 |
cc09ffa4aa8923eaea72f5ec62406a21
|
|
| BLAKE2b-256 |
461892d3b3f0af39610ab17d2511bdada5fa80209dfee321b5b215de00d2a6a2
|
File details
Details for the file fast_multipart-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: fast_multipart-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 415.8 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
378ccaa5d32fae78d80558ded97a393997508652b1afca119e37cc675926a522
|
|
| MD5 |
8a3c81aa3fd59c6eb3a76e1b81c71ef0
|
|
| BLAKE2b-256 |
e2d06eb4b6cec66787fc04d7ed280584e029e2d2e8dcbbefda4034822b96ec72
|
File details
Details for the file fast_multipart-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fast_multipart-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 484.1 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
343f6f510fb8478327129301ad70f0f512090764e477c9e1ddcd23fb0dd3a37c
|
|
| MD5 |
00dfe4f485b51b09253d45ca9f938d9e
|
|
| BLAKE2b-256 |
c6cf9e1630f2c1ff54a9bbc443b4feb1d650b95a910e4f0bf19dd63c31be5396
|
File details
Details for the file fast_multipart-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 386.7 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
413245b613d9d4237d582c73983519de5cbc015441b637e4dcf76c7202e42ff7
|
|
| MD5 |
c7b4bb8734d7e40285784107f7282bfa
|
|
| BLAKE2b-256 |
711b61ca38ef9d923db60bdc246571f5949390e986fbd3d469e90005961c7f36
|
File details
Details for the file fast_multipart-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 222.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c79232104bf7473f9a80b5d8144868fb75aea1ccaa533e4eeee6091c2b8fe588
|
|
| MD5 |
4f1fb8709573a512c94125cbefaf1806
|
|
| BLAKE2b-256 |
279951ea5eb2fb74cd8310b91432c401aca50018ebf807211b21d94232abd756
|
File details
Details for the file fast_multipart-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fast_multipart-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 258.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb0255b25658798cc3df973918d4e5ccbb04273bcde61e18f346438ddf520ec2
|
|
| MD5 |
6bc119c1d48892b6b7d5b31aa8015bd2
|
|
| BLAKE2b-256 |
8a82dbc047599c90c30e5c048151e65b2db31941f3629ed0a26938bbc3589f82
|
File details
Details for the file fast_multipart-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fast_multipart-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 240.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9efd6df227fc2740d472632877eaa24eeb3ea6eb4db85e1db9b6ecdc14f0c6f3
|
|
| MD5 |
dbeace7d955e6e01c2aaeee2ff37fae0
|
|
| BLAKE2b-256 |
2f5490005a24c0fd23a3389f87135fad543bca1cfe1c4cfd72fe5007ea334636
|
File details
Details for the file fast_multipart-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fast_multipart-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 220.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
60002fc9b79b9a7637d66844130df2ad8dea14ff9e09c6276ce76e8727687b26
|
|
| MD5 |
81b3b0be8b84aa8a6db30a69009108fb
|
|
| BLAKE2b-256 |
bb0a9bfd0c492c4ddfe32a79b2bc9ab0eb276b5758a7035840549bc9e78eb365
|
File details
Details for the file fast_multipart-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 206.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f22dcbb6157cd763445488ff73b46396217f5b31d6caed37a2c9a70307b10da
|
|
| MD5 |
d2393ad2f40808cd15cbc5496274a93e
|
|
| BLAKE2b-256 |
2df0cb21ed7127208326ee3532b706d7611f43105c3eea5c731a199240bfe1a4
|
File details
Details for the file fast_multipart-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: fast_multipart-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 233.6 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb006465c38572b4cb97c40f081cb7a2be730ef419410098674b581305991e99
|
|
| MD5 |
49e25ecfe4a5e835fb17d989b0560902
|
|
| BLAKE2b-256 |
9fad0d6006cba5947fdc1e94a9a655f7e5dab4641928d02a8b8b4d497073f36e
|
File details
Details for the file fast_multipart-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 394.2 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ea29f8fdc7ed20169ae764c27513fe5181e5149c7de54b463f901dbd1159721
|
|
| MD5 |
0e2672b873be939922cdf3e2c36023ed
|
|
| BLAKE2b-256 |
e7ed76ca2a9a6c5ab73cb3666a5e869ecb546157690957bcfae31c454b6f992a
|
File details
Details for the file fast_multipart-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: fast_multipart-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 416.0 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
309f14a25d9db127bda3260b01fe99c1c9e33797f435c4e023fcba849a30392d
|
|
| MD5 |
edf1b5946beec1358863ddc21630c60f
|
|
| BLAKE2b-256 |
0ceaa1cbbd6bd37462b06b0087a850ae6b51d4e0db7236b135fa7a8f0d243e83
|
File details
Details for the file fast_multipart-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fast_multipart-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 484.4 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32de1466a153f65947133263d979177ba14d7d362c7725f014ebabef32688b02
|
|
| MD5 |
3334208d933aaf7c1590b107b5f6d36f
|
|
| BLAKE2b-256 |
de2e9ae84c36e2c59cb0936999c15f200a7ba912007071794a36de0def872069
|
File details
Details for the file fast_multipart-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 386.9 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3748891121a8de6c3aa2271a7c74677cc47b59a1841b1f444e02c0ead801df53
|
|
| MD5 |
8879f1b915b69e948bca1b3d72268c80
|
|
| BLAKE2b-256 |
b883e208be004ccb67cf048c0c2c2a4ba4937c962a240253f7326732dc02e5c1
|
File details
Details for the file fast_multipart-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 222.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
65f5c0c4477631a24f0fdc3f13fae6869b6588ed4196251a596fdbdb99cadd86
|
|
| MD5 |
641452cdc9976d2a699edb4199873525
|
|
| BLAKE2b-256 |
4d746e08b63f352580975cab410859333b4f3f0df5b40c06cad9cda190dbab8c
|
File details
Details for the file fast_multipart-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fast_multipart-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 258.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e1442ecb0ee948614170679d2e10e39520c03c2c647bef901ca5ffda8a2eac7
|
|
| MD5 |
e149cb36d1c52b40d3eebb6f3b9aa177
|
|
| BLAKE2b-256 |
ced0ef4adbb94ce855f13a8f87c6de8ad3209b163c25629eb9e1e800ecf6fca1
|
File details
Details for the file fast_multipart-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fast_multipart-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 240.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29a5ed2d70a9d96ee346bf21e46e8abb2a28ae6675509016fa543d02e068962f
|
|
| MD5 |
42badaa17859dddc64d9fb444696a2bd
|
|
| BLAKE2b-256 |
c0b1b9d3e5a6c2f5606947f50e48f7f0edf32b532ca0727d32f9ef141c88267d
|
File details
Details for the file fast_multipart-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fast_multipart-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 220.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
729fe2aed6f4be61bde37cc6d9b5f478e8c126b12bc87b0367ddaf8781aa7a2a
|
|
| MD5 |
e61539e760b0792e2e4aefc0ae3b9186
|
|
| BLAKE2b-256 |
1631a14a8a843accd74fe1e5a1f50a1852459af7a5feb06f462adcf81de7713b
|
File details
Details for the file fast_multipart-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 206.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c22fe8be36adafbf67c3082791f8569225c8ede48da39bf7f2f80b47fbe0c72
|
|
| MD5 |
6450fe858baaf4ddb1d8cf2bd4a99c88
|
|
| BLAKE2b-256 |
d31e78d73d2f7e577ce1d4f09e057ad4139dd66a67d9656cc1d6298d553427ef
|
File details
Details for the file fast_multipart-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: fast_multipart-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 233.9 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
78517aa8869a17d97f782fcb57f041b39a6b859f4a367638353d3819248b7cf1
|
|
| MD5 |
b4379c603cf36f2475b36367c0ce0ad7
|
|
| BLAKE2b-256 |
f13dc50584a8f809312103823e4cd8a5c2df14b8668574e6de51cace40a790b9
|
File details
Details for the file fast_multipart-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 394.2 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
890c37b935e102c3de4b7ea5d45fb6e7468fc85238a28bce2ad0374a27ace34a
|
|
| MD5 |
0cb2d94211238cc87f3ca3d4ef61583e
|
|
| BLAKE2b-256 |
8efb0af8821a1136d5e6309737cc6efb3bebe0fb7edc61735d50dfc7d16f5d6c
|
File details
Details for the file fast_multipart-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: fast_multipart-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 416.0 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a690e69057c2f15e50a8f5a2566cca1b0f4b2d8749c5d1703d11d0522ba64973
|
|
| MD5 |
1aabad4652fea34bfc6087521d85d3de
|
|
| BLAKE2b-256 |
c06b8d04efc6467bb51b4bd71d5cec6c2046fe17be516531bc1054a7e48eb210
|
File details
Details for the file fast_multipart-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fast_multipart-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 484.3 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73af1149254e73befef67af748f7cbde15f824dcbf816c54739bacbd6ae646cd
|
|
| MD5 |
b5348fb33dd8500509e57f6bd1d7af95
|
|
| BLAKE2b-256 |
adac3fc4818d33772f6504b87991243018ddf6b038055c8893994879a0410b37
|
File details
Details for the file fast_multipart-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 386.9 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36e2f12587a87834ad627b02938b8402dee78900c8f123436d0053f37b93ae36
|
|
| MD5 |
eb23cde58bde55d64db4128f375e0250
|
|
| BLAKE2b-256 |
811972f1ecaa6141407a9415217ff7b3aa2f55a967b5c6b6c9aa0d9eddf36251
|
File details
Details for the file fast_multipart-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fast_multipart-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 258.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca62d724e26c43563b404c5ef0f9a0d357340fb3c9bd0ad2ff9d4c5d88df6b02
|
|
| MD5 |
5561d5db0baac7ba426ab73244e3ae20
|
|
| BLAKE2b-256 |
e0eec1c8ad79f8e70b087ab68bd907d1928d5ca31a96a20a102de0c2eb4c5330
|
File details
Details for the file fast_multipart-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fast_multipart-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 240.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32c2280bee3b960e489187d93a60e8869f0dffad7a2ebb0feeb0c852cd2028fa
|
|
| MD5 |
ac3842d240ff4e4bcea35f60360dcac8
|
|
| BLAKE2b-256 |
a250831f06cf88a531c37d8f5fb7bfdcac1010f7f480ddce7b7dec6743c5e8da
|
File details
Details for the file fast_multipart-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fast_multipart-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 220.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d7672a20f3e9a3afa25929a8391ebae6067a3516ffa2aa745f616ab5042cf82
|
|
| MD5 |
cd1d1f34100ff43ff3b14496936a8946
|
|
| BLAKE2b-256 |
7cc331a2b91395a7a4d2e8bef3cff3264531f9d9c79c6b553b9044b23bb6232b
|
File details
Details for the file fast_multipart-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 206.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d42df731f1e26dc51594e37e3d6884372bc60241bd9dc37990dfa64ab6d5b22e
|
|
| MD5 |
a413567499195a71e7590f9b24afcac3
|
|
| BLAKE2b-256 |
9b792d7983284097102579348b0847829e929cf78ca9b625b3958cd387c5ecfa
|
File details
Details for the file fast_multipart-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 222.0 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b12a5772b87a4a903c491c9a5a7983d45f5676305da3b906c18cbfa424f2ed0d
|
|
| MD5 |
af85fa1a49f307092307a0f7f04979f3
|
|
| BLAKE2b-256 |
3913e6365a6c7ee1bb6d376d1e5a2e85009ee790d5f5f169b4ab32659388a66e
|
File details
Details for the file fast_multipart-0.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 233.4 kB
- Tags: CPython 3.14, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d9b43173df05917cc0e7cbd5f67099bc94d1b2c17008c4762334a6465cbf176
|
|
| MD5 |
e45adc71a39c46b53da6a78abc72de07
|
|
| BLAKE2b-256 |
e0a30a7ede3f5dc91679eb485d825d9086a448da84660bd7935303e3a224424f
|
File details
Details for the file fast_multipart-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 393.0 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
27009c6681bf3fa9b6eb6bbcb3b9e41d41db708569ca380e415cda48944fc16e
|
|
| MD5 |
33643535dc64a19192556eb424c4dceb
|
|
| BLAKE2b-256 |
e8549501693fda2b65361aaf026571ddf007ff1c974a91c52f1f911b2732af7f
|
File details
Details for the file fast_multipart-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 415.4 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca6f17625bc1363ef784e39235b2b61026bac4697f41cb05ca3eb92e17445e5f
|
|
| MD5 |
13397654dc41489da21c3635e1e096c1
|
|
| BLAKE2b-256 |
cf1d8badaefa14d8ea020ba36b5be27058145174f6c4b4e5260d7f20a68a197e
|
File details
Details for the file fast_multipart-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 483.9 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d98040ee34668ddb1f6030587090edb900bd26920352b9785680c8cf3f7995e
|
|
| MD5 |
e676b8cccf047f9128abdc32b9f2244e
|
|
| BLAKE2b-256 |
77c6a4898250d8338772a60136c5c585542e0e739a8412ea485c7a15ac14d64f
|
File details
Details for the file fast_multipart-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 385.4 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c799fa51285ee8c3719e13cddb0e5c12d4fea51a0a950a8588822ebd8a08bcb9
|
|
| MD5 |
b6081a063f3c1db75100899b65b516b9
|
|
| BLAKE2b-256 |
b55bd115daea05366162d3179ebe68e2786abae502a22b8c30b5b0db675650c0
|
File details
Details for the file fast_multipart-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 257.7 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fad5a8f275d20882025f4a3a8298a1c3c485b1dd4519e0b96061dbf51cf8f8b2
|
|
| MD5 |
cf9ab22ed4e3609b67abc2368f1f1c10
|
|
| BLAKE2b-256 |
2f1c5547c56b8e2531accc3e78ca336c1f4fcb160f407b87e27ebc29417c8eff
|
File details
Details for the file fast_multipart-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 238.9 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66da293ca5f0c67b97409a430bccc83df58e029e6f92fd6480dbb49ae0b9223f
|
|
| MD5 |
6ba6466676027b2667672cbd8409b47d
|
|
| BLAKE2b-256 |
bc069c89f7f45a1c4d70f120ae0b16ab4bbeaf1bfc3f3612fe7b5e0bb552abbc
|
File details
Details for the file fast_multipart-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 219.9 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d150a760598b70cf128b334ba0ad83de083ac81e4cb2413d404aa7a0e8763b87
|
|
| MD5 |
5834e7536199636fb6815baea96df6e1
|
|
| BLAKE2b-256 |
5282ad7bad76c0aa31bec36ebc027e7f422c48f6e73fc6eda75ab91a84abd468
|
File details
Details for the file fast_multipart-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 204.7 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c5fb539293f85f1061f6d0f8d980e51567f68462de1533168967f014cb06b68
|
|
| MD5 |
b68f7fc88db85529a038724888968287
|
|
| BLAKE2b-256 |
c3c3bc2741d9fa33c3ed5058d74d0f611a8721f2ab111968fd0414a719944934
|
File details
Details for the file fast_multipart-0.1.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 124.2 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e393bcd9fefa3b3bd7aab45831961a6ede743b589c3c61b1ba6256d9c3971d69
|
|
| MD5 |
30524a741722228994b9e80b6553e828
|
|
| BLAKE2b-256 |
dd9157d05b59c4ff6f1f867da6d05f75598df2e41f27769fa97a63296bfc946c
|
File details
Details for the file fast_multipart-0.1.0-cp313-cp313-win32.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp313-cp313-win32.whl
- Upload date:
- Size: 117.1 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
edb3ec4b26cbd7b1fbb4440ddaa89923b8a577a48156ca9bcf9d70bf1d92db8c
|
|
| MD5 |
b4f0c1c11f72397a5f7422ac206c83ce
|
|
| BLAKE2b-256 |
a8bf4bebdbeb066cef1e27fa54e54b67945e70ecbc95ca2694efb24b6878d314
|
File details
Details for the file fast_multipart-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 393.8 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
952baef4d71a8b4a6ca6ce2a2718f12413ee86e51ae94e2f204e9f6340fca65d
|
|
| MD5 |
e68880131df3cb3e593100426cfbf6a4
|
|
| BLAKE2b-256 |
6f28e286b0a3e6e62531b0b58d264a0c2b28b30c57005dc86197f50efa22720f
|
File details
Details for the file fast_multipart-0.1.0-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 415.9 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61460b71f6c74f9327b9678b08dacfb4d2ddf97189739e788c56edd9bf05cac7
|
|
| MD5 |
b7bb3ebe9aa6e5b73ebdb96669b55640
|
|
| BLAKE2b-256 |
727a079234f6eaafd8f45ca35b9a8f8c67e6e0bf125355f14ce0e04385b19222
|
File details
Details for the file fast_multipart-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 484.4 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a9c0c7cc604a96d13e1ea62d843b8e46ca833f5fd6d5cfd0088b51628869d04
|
|
| MD5 |
b568d247e55e2bcc6ab221b9ee2e0287
|
|
| BLAKE2b-256 |
d0318b21f8c7ace04f91517c639019bcd503af25e18582c54ac26b4818931cac
|
File details
Details for the file fast_multipart-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 386.2 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85f003806ce03f603fd590ebbf10df84ee0c31fecc717b08aaf198cacdb5a125
|
|
| MD5 |
d1abc041738c2730759be60219e46062
|
|
| BLAKE2b-256 |
b8134f9c9bfb8b3709afd3fef17bc28f33c5cb6d46b66970040a4ed91b2d3409
|
File details
Details for the file fast_multipart-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 222.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aeacc2599fda3b0d9d915426650d4c231cefc8fdeec70c2fc3ae5994a66b03c6
|
|
| MD5 |
1882da09a30efcaaf20a7bbd070586f4
|
|
| BLAKE2b-256 |
6c6266f6e5b738b8f6497aec23d12568abda39a75656deb86e5286f1bc931cbc
|
File details
Details for the file fast_multipart-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 258.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea194bf608488efec1d3aecc42f3d182898310c5b0b4c64d5b631e0964efa52b
|
|
| MD5 |
9933e343dd937e17241a6ef3ec38c1f1
|
|
| BLAKE2b-256 |
b191261ae7fd0fa46af79487e4ab9cdd2d4b7d4f26be9273489421a1ab22d9e7
|
File details
Details for the file fast_multipart-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 239.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a99b92c989b9d97307839af256ea0fe76aaaf6863073a8ce71334bce4b9d8db9
|
|
| MD5 |
039df305bcd69b76ad486d93d003e6d2
|
|
| BLAKE2b-256 |
c6a7bfe172346a4d8ae9fb3bcd8dc6c0ab277f23ac59324c9e6bc76666ac30f6
|
File details
Details for the file fast_multipart-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 220.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
681cb17c074f4713273071168ab15fca7a87f629588dcbc65334fedf2a8ab195
|
|
| MD5 |
c05792595e04850da476f1267094e1a9
|
|
| BLAKE2b-256 |
23a0a7addaa107e5d69980a2763c3363a325dacc3b9de4db3770cc3eef57265e
|
File details
Details for the file fast_multipart-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 205.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf82376257a6ab222e0e505993390fa20b8bcec2da4f4eaad6971484e79c03e1
|
|
| MD5 |
53d06546611cf327773f1df23718fcbf
|
|
| BLAKE2b-256 |
46a661646f88dce01620f9a6b44edcd983989f56938a08df2d33cba1318ba18c
|
File details
Details for the file fast_multipart-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 233.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7f12a75b6a914f21a441618c83f98247a885698af031f8aef98a80da09836b8
|
|
| MD5 |
7f2050627a85cd28ead7c71fa344d7bb
|
|
| BLAKE2b-256 |
fdf3e61681606bc16862868b87ff0ad2a10f09b533e0c798a8d248955d1a578f
|
File details
Details for the file fast_multipart-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 190.8 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c973628427902071dfc36ab06a6a6c95452a0b568031a07aef3476a347f3f3e6
|
|
| MD5 |
8833c7582dd1df741df57fc40a6a0b09
|
|
| BLAKE2b-256 |
ecf5de89caa2459c78b46d9e7a899a02869d28742d79d29a9cf90df70b8ec1a9
|
File details
Details for the file fast_multipart-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 209.3 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84fea269874c43eb2407edbf45ae4efdf03b34929823b80b71d84209a9426e76
|
|
| MD5 |
ad696dffe6f8740012ed46c7f7ccd72c
|
|
| BLAKE2b-256 |
0c341305a1412e133dc1f8840616db34a511a864919ced72e4e86352e2e2395b
|
File details
Details for the file fast_multipart-0.1.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 124.3 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d54a956e532a480eda3eb1037896843b32a952c58ee8f20790717839c55f4507
|
|
| MD5 |
b07f97e0f83517e5db10007d889b5ff2
|
|
| BLAKE2b-256 |
1cb968dfb7dab743e88c7b78c869f06789d6aad3d30609089218b9177180d47d
|
File details
Details for the file fast_multipart-0.1.0-cp312-cp312-win32.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp312-cp312-win32.whl
- Upload date:
- Size: 117.1 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3fc5e43c83ced67725c0c491aa18e421958785c7d59e50825f933886a90e182a
|
|
| MD5 |
afefc3e81a56deb5cda5bacbd63abf23
|
|
| BLAKE2b-256 |
2dcabf40741b1273eecd1d975474b5f72ed73201c3354c84d9fa84ce4a49b6d9
|
File details
Details for the file fast_multipart-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 393.9 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1753e03933ac592943b5315606076a97741dfea12a782e8e11d3b0f8edeea409
|
|
| MD5 |
2d10b321539ed529b03f491a2dbc151d
|
|
| BLAKE2b-256 |
a922526c8c687286b5185c0362099327998ea29c475bad169ccc31f45277f87b
|
File details
Details for the file fast_multipart-0.1.0-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 415.9 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a5515a52f49a9fc309f3b9c4104d1efe1a40adb8e1ee9f408d98494ca75f2a2e
|
|
| MD5 |
9832eef8907b0d2b71c3d01ddc3a38a5
|
|
| BLAKE2b-256 |
f354f0d833f012072a9a74acaf6d418da0a5b73bb88bbe3fb9074466a3b8d332
|
File details
Details for the file fast_multipart-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 484.4 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b97986d389254b75f78bfe8aa6a14b7eb45807a7f6e7430f33cb5ada02fcfa3b
|
|
| MD5 |
51cefe6c169d2336b46916ae583bf9c2
|
|
| BLAKE2b-256 |
4e9a5d4cec82f704e55a242d01b6395449a477f61a472616155f26c4cd1da861
|
File details
Details for the file fast_multipart-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 386.3 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a220dc80232a52fcf9582587acf589b7481bd627677fbb701ae3bd8629ba393
|
|
| MD5 |
1a7b17cef9f1dadf5bf6d53cad842fbf
|
|
| BLAKE2b-256 |
40038ef0049ad28be20ef4c12caa42343996474b2dd741c3afc8b7bee5fe7046
|
File details
Details for the file fast_multipart-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 222.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53bfa684afd4074f9e78bbd9887bfbb9e7ce83422b2439923e2ff24156dcfc10
|
|
| MD5 |
7f5036648c34bf57f6b82510a5172ddd
|
|
| BLAKE2b-256 |
aa705ec28823b0c3f87d9a9f5b9406a02c7304f518dd4bca939623a0cc18f274
|
File details
Details for the file fast_multipart-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 258.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56252b9a4d11839d1b2361cf38cea28480b7f3cecec46c9166f819be138af1af
|
|
| MD5 |
db11c8927b01937e6147cae828d5d4c3
|
|
| BLAKE2b-256 |
8bf54939d5ac4d534cf89d988418edbc4ea876c8eaf7ed2262bea98d22f2a0b7
|
File details
Details for the file fast_multipart-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 239.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d5d3edd38fcf9eb9f495fca1e32edff9fe6f3163b147b71edfc28e905153b0c6
|
|
| MD5 |
5674e2f1cb85e7de063fc79b40715bd7
|
|
| BLAKE2b-256 |
a204878a61e55c9013562e476afe4fb773ad3a31b2c97ed8fb3e338d46999f8c
|
File details
Details for the file fast_multipart-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 220.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
120a9bf6fc94ca0b44bebbdac842f7e49c29ddb2f7e7d9bdb7085eca2517c6fb
|
|
| MD5 |
f25f8f1fc2d99316bb31a093ccb30dd0
|
|
| BLAKE2b-256 |
8d8d0d94ebd0b1a905d7126b9b3c1bda5c5f570fb98594840b47c3dde51b6e9b
|
File details
Details for the file fast_multipart-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 205.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24b5570694dc0e13534fd1e59676067cc77da94592547a55a9285028a67635ea
|
|
| MD5 |
4b6753aa033fc3d752afa95096959815
|
|
| BLAKE2b-256 |
7cc64f7dea0ae86d6bf8fe9076bbd93d261f891a74eedb3aa1735d9e17da02d3
|
File details
Details for the file fast_multipart-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 233.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9361d8e677be39603f4f8bca7b5742ebb5267405388e9f9b7a8554b64a93b04
|
|
| MD5 |
8100bd7d1473afe32624043751b7042b
|
|
| BLAKE2b-256 |
7cf0ec36d53cc00170d373cbb39da4da9e1747d97fe231b509ddb2bed1f4da55
|
File details
Details for the file fast_multipart-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 190.8 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
221d25402d81a1fc9e73d0cff3d7219d720156030564770a1be5050667b552e8
|
|
| MD5 |
6e27f752a8e8280367c63b67060f1e9e
|
|
| BLAKE2b-256 |
d75e3570f32aa847a60230a24c62b3038e556e6adc86f7e95fed416f8ef67440
|
File details
Details for the file fast_multipart-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 209.3 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3dbed453e65e9b48d6387dcfdda06698d50df74bfd8288ea0c07758020a8b1dd
|
|
| MD5 |
62417172ee49e943894e0b99394b75f8
|
|
| BLAKE2b-256 |
bff455ea14eea00975bdf04851eb0adc7f2c2ac02d40bbc0b79aff6524fd46a7
|
File details
Details for the file fast_multipart-0.1.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 124.8 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85bad7228f283cf91fadbf12de4386f609a0e642e3939463ed39b976bedff368
|
|
| MD5 |
52fd0a3e0b3ed879c90eac894bc8487a
|
|
| BLAKE2b-256 |
96e86e323b7dc2425f69ca5b96e8f0acb7cf2fae0f9ace7eac8567e8847412c2
|
File details
Details for the file fast_multipart-0.1.0-cp311-cp311-win32.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp311-cp311-win32.whl
- Upload date:
- Size: 117.2 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c77ca43b13d1bcfce6060e19ddfa7fd81df12a29a47697d834d8087dc427c3d0
|
|
| MD5 |
40b465d1282e860f79fbba351a7d9fa6
|
|
| BLAKE2b-256 |
0a8cb6d5d394b93d323b62556989d5e59b1fea09340005a9925d32e6757aa5e7
|
File details
Details for the file fast_multipart-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 394.3 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd065f9b31e153d6542cbd810c97406c08a60de5e2f8f8f826ccb36a517a3651
|
|
| MD5 |
01c9a65c6a40164f464f89ed6bd76bc5
|
|
| BLAKE2b-256 |
a984a9993a218e3ee75f1f84be1383f669b742b7e3bd47de85a9266eef4c4237
|
File details
Details for the file fast_multipart-0.1.0-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 416.0 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f219894135ccf94cb148467bc61512eb3d05233f4db693b028c89dccc5d1ddfa
|
|
| MD5 |
0bf6198532c366090e72193d18e95407
|
|
| BLAKE2b-256 |
e6f2e59396610d72eb103968d9b2a0b0f9a263fafde4f3a4f2d675f87a355451
|
File details
Details for the file fast_multipart-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 484.4 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
08028b5b0b0be31730698bfb5698d67b43caeb2e53b92392d0b826268b95b72a
|
|
| MD5 |
1d863c4aa35ee4609fe0f807569abdd4
|
|
| BLAKE2b-256 |
5ac39cd85bdb2e063e73a271e386366095e8a6fb74a22a39b4d9a10b5fcfc9e0
|
File details
Details for the file fast_multipart-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 386.9 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e86caa5323f6ca4f89941a98db9c3316b6e7114c9c54f00cb05e78765ed19e2
|
|
| MD5 |
7d926718cc1377f77d226bde1636d3c5
|
|
| BLAKE2b-256 |
dd45ca88e747a765ee46253e723495a6851d489aff76b9c3ffe347430ab09d2f
|
File details
Details for the file fast_multipart-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 222.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53bbcf85c59ce3a2529fb5d766588c0ae54642e1c8b08f4dba39ac0449d6ade9
|
|
| MD5 |
32a7c51546c1b657bb18d8212d5e1b5d
|
|
| BLAKE2b-256 |
6533630e56433fdd9629592bb881c31f2db1bf4b51f9ccff51c5969c32619edd
|
File details
Details for the file fast_multipart-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 258.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
712702da7d7befb6fae7587041fc0ddf97cf01f0f4deb3c154b8a679ea017f1f
|
|
| MD5 |
32f4c1daf4720c995eefa23fba8bfdbe
|
|
| BLAKE2b-256 |
68c3606034ae9e977b9e64ce6eaa75db12c2e06906f82dc76a87a6af1a0f3c0d
|
File details
Details for the file fast_multipart-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 240.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7131eabb6aaf773c063e81d88a73f74160ff2577019e89e84e4f8e9fe7ebd4d8
|
|
| MD5 |
4729d15daa956011847904d030f73817
|
|
| BLAKE2b-256 |
ab7d6707a823e3e494e9d92de07dba2dec98fb4f5e92c8f66c2918c8163cbcbb
|
File details
Details for the file fast_multipart-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 220.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a0b5f5ca74c025187ff7f4618255a467b1f0a61d55cb52716854e8861dc2a43
|
|
| MD5 |
20ad89acd7211758176e1548df72cdda
|
|
| BLAKE2b-256 |
ed7b6f1194b13780abd79e6847c96e6b2d7e96fe0f8a8059b93142df404b218e
|
File details
Details for the file fast_multipart-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 206.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd702c4b54140e5d014b666a45c388bc1de347742f14965942f04ab1cc6e310e
|
|
| MD5 |
ef834d124cbdc9cfadc2d281896baae3
|
|
| BLAKE2b-256 |
55fec71787fb973d621664bc3d5a552f04513e8ff481c2ca70ec811764346a3d
|
File details
Details for the file fast_multipart-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 233.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39d865c188bffe7825aae3bef58fdb0bdd3936f933a75ecc4aad35e8eb1cb59f
|
|
| MD5 |
36c254013ce7627d1413d53fe54c3ed5
|
|
| BLAKE2b-256 |
187d03b490ca28bcd423201309c20a8317be3d6c66b4bd2aa59c8ab85a9731ea
|
File details
Details for the file fast_multipart-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 192.5 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37955bd32056c9f7408095047851642fb30458516a395a6c051657921769f388
|
|
| MD5 |
f26822964b7c1e1a331cd441b32002e5
|
|
| BLAKE2b-256 |
9d942430a31b9df7fe0caf427936ff78e677e9a1dbb2f30b8e6719693fe18636
|
File details
Details for the file fast_multipart-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 211.0 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
65e3f811b34d472a9faca921a5819c9c6e96725208f9799c78501ef7decb6685
|
|
| MD5 |
f5cda19d86861121becda1c12ca5f6bf
|
|
| BLAKE2b-256 |
ad93350f14a627c7379512dfa0ee44c96c76cbc8d2eae43413f77a111f0d0e3a
|
File details
Details for the file fast_multipart-0.1.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 125.0 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e897aca34a37a44253c755e6d22e3a1fcb1188c298fd147673caccccc8b87137
|
|
| MD5 |
956e040cfec3b6ef64b1292bb958a64e
|
|
| BLAKE2b-256 |
92f062c46777c2d450bb21ee547fc24beb182728a8735699c7fa039a6110001b
|
File details
Details for the file fast_multipart-0.1.0-cp310-cp310-win32.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp310-cp310-win32.whl
- Upload date:
- Size: 117.4 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73211b3c9daa63823252ebd80cc67b1655624de91922c2ea5e587da50a16ff83
|
|
| MD5 |
cdf557d03807b58e0aead31312009c12
|
|
| BLAKE2b-256 |
ba15858f6e56caa57ae1fd38195cda27479d24c5a80a13e571c4b2d134fbe4d0
|
File details
Details for the file fast_multipart-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 394.6 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
665b0b18e6e5c73139544172856517425f4a718820af75a716aad7c2e3719c1d
|
|
| MD5 |
46257ba38c9450e15f35323add431d93
|
|
| BLAKE2b-256 |
cee8f20eed44fc107bb4ef80e7701e2fd9978d34c33cb885181139bb166f0baf
|
File details
Details for the file fast_multipart-0.1.0-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 416.2 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b30037e38982d1870806c3ba6d12e188a71769bbd2be12ab8808bc215b506b3
|
|
| MD5 |
f39c0c5817215b326a251c2bae45d8fc
|
|
| BLAKE2b-256 |
092312c0e8d89af7a62637724c19bd5f65416d934a9b9b80354d8e657b190b7f
|
File details
Details for the file fast_multipart-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 484.7 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bdf68b90ea8e00b33e584eadbc5039da1359078e1adb431d22151b60cd597417
|
|
| MD5 |
e3cc581e71338274415146b803c88609
|
|
| BLAKE2b-256 |
f6aebf8f69323ce1cf37ecf5587e24c2833dc35bee403312a6d9608644bc0487
|
File details
Details for the file fast_multipart-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 387.1 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
194026d16110a9950f4681bc17a01fa6c5bd3566cc0b5a8179102f20ce0c10d1
|
|
| MD5 |
f8ec43bd9d235dbf6e4b474f84b3bf21
|
|
| BLAKE2b-256 |
5abfaca198daf102fa547b57febdfaa608969b264ce5a59d3623bb08cee1119d
|
File details
Details for the file fast_multipart-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 222.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2674b42b656e9378d29e17e0270640359c31030eb0645bb1f83c338e3481582
|
|
| MD5 |
39f90625c8ff872a781f44a6625c84e3
|
|
| BLAKE2b-256 |
97764986a4eeff4178dd10fec3a7fc6de584669ecfac4ed8619592e8807aaa13
|
File details
Details for the file fast_multipart-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 259.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2daef136f8f24d33e1d449d98db492d9a17c99322e1c912562f5308d869a1aa6
|
|
| MD5 |
6675eb8a8f3d08b0768ff755359b0059
|
|
| BLAKE2b-256 |
afe0ed9fe8532db24c4c9b98d24d3121eca320e6684b902569bc1d3af1787638
|
File details
Details for the file fast_multipart-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 241.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa77e2818044cd54c4b65900484afabf54d98fb528637645145f8dbd981aad06
|
|
| MD5 |
30b0919b8e7745020253992723b96f09
|
|
| BLAKE2b-256 |
85e8899991e9eb202d48f80b99f633fe3ce1f560ac359c6c82ce8a6261cf6030
|
File details
Details for the file fast_multipart-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 220.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d96892daa617b8f94368f7dc7a6790c5cab9928df031ebb39dd50a095c24f34
|
|
| MD5 |
2a373dab7f7782d413691d6672a7ab6e
|
|
| BLAKE2b-256 |
7f110eb0dfcd63f34acc1f54b0a6b983949eaaf29c14344b4d2458d337483768
|
File details
Details for the file fast_multipart-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 206.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a49793a907e53b47771c3017418a66923413f6e5b3a842635aed32ac9b51b4e2
|
|
| MD5 |
aa078c3947db4b9b530c3c852b09bc47
|
|
| BLAKE2b-256 |
c18c168c128bfaf6a79b66e83d71b19e4953db32a41ef1a3fb22122731a5a5f7
|
File details
Details for the file fast_multipart-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 234.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
065fa48c636a240bbcb52a74dc1e7dc8b9c36ab2fc9f038fba7216da2f3a288e
|
|
| MD5 |
50774bb811caafa4d350dbc40cc9c8d5
|
|
| BLAKE2b-256 |
e94776c4dc9da64bd070b80bae42e40f25e607b390f824c6985a4079d575afa6
|
File details
Details for the file fast_multipart-0.1.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 125.2 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
692ac7ccf9ac9e5338b1ef04c8fa2c5e38ab1f9b6703d42de56c73a308f0e933
|
|
| MD5 |
148ed395f698204e1b053cd202977076
|
|
| BLAKE2b-256 |
161e6546df823dae37035122142880a0459f362ed3d54f8d054da263a82fbdc6
|
File details
Details for the file fast_multipart-0.1.0-cp39-cp39-win32.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp39-cp39-win32.whl
- Upload date:
- Size: 117.6 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15e7517608572cc071f136b55a49a6af1706adbfed71521fafe8406197ca768c
|
|
| MD5 |
9806f62b60007863fe1b4682af176f24
|
|
| BLAKE2b-256 |
404eae7de5a9a8d946339e3d6f73e697f222a25a708b95dc4853af0f9cb5409c
|
File details
Details for the file fast_multipart-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 394.9 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11655d2a7d4731181ad3bfe12df349d12ed897008d67f6aca03b6081e819228c
|
|
| MD5 |
5146c6d606c165b0802030442b6328bd
|
|
| BLAKE2b-256 |
0b3f652cbdec21c096047bec2cbffff762b15762103f748fdee013afad4bd070
|
File details
Details for the file fast_multipart-0.1.0-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 416.5 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a9b1952c3fa8dd547d46b75300d7baed26fb7b052e6814e169b7a15b8b68906d
|
|
| MD5 |
2280af06e8f3f782ddfd5cdcdd1f5f1c
|
|
| BLAKE2b-256 |
b2c05dd5d6fd03bf403aaf4c9cb491428eb2b8cf868e857c4656bb74d1a985b3
|
File details
Details for the file fast_multipart-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 484.9 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2941bd11b656c90e846e982a8d6bf8af1305a3f7f9a1d3cf4b0a9eae54a46209
|
|
| MD5 |
3825f98d0ca0ea363cc4f55fcbd8bbed
|
|
| BLAKE2b-256 |
e284e0e89e2ad286bbbd4a4a61465179ecaadf9ed6102e969668412d6422d1fd
|
File details
Details for the file fast_multipart-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 387.3 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1b47258bcad21536498ecb5f45672365e932a5c9a27ecc201e2f05f0ebfdb18
|
|
| MD5 |
1b415fbdc5d3d5bff4201c508cefb003
|
|
| BLAKE2b-256 |
f1811637cf844ae670014631e4b00dcb22acf1c0dcfc7f882c9f75b41f8e9991
|
File details
Details for the file fast_multipart-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 223.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb988d7e3a35de8ee3fd101db0673d5631c6363d4f6573ef8f74d6d16995b262
|
|
| MD5 |
b17ee2e2e7ee3832bf8db20a04d07a43
|
|
| BLAKE2b-256 |
4026e60f4c293f57db13f1f43d3e3c84e5b3a1950c23de8ded5aa9d0235dc6e7
|
File details
Details for the file fast_multipart-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 259.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e696d81a521bc86a2a0beac1e9244697dfdffdea3651159a9f9b0ff4789a3f8
|
|
| MD5 |
cbdd655e63cf02691417a62930eab3a7
|
|
| BLAKE2b-256 |
7f7751b90beaf53bf78f9579ebdbfd2f811b61de85538d5ad7db0637e9bc6166
|
File details
Details for the file fast_multipart-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 240.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b91dd834ec2a181c17012dca35ce8265f8a8285908d8e22373a14fa2f50b512
|
|
| MD5 |
9429f51b50d36a733bc598e046285da7
|
|
| BLAKE2b-256 |
0721c8bca0507771f18b3193dafe2d95ea114313ba456ee8584c11840aab5d42
|
File details
Details for the file fast_multipart-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 220.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e3bafbbf0875f8f1f8c72f17a7237e71d41c767d1dbab3374e7cc04f6007457a
|
|
| MD5 |
e93d3d03e8e8b6234bd40581001c4593
|
|
| BLAKE2b-256 |
32c55c9b4587b8818bb8118a332c5e3f37a41b96086e0b877e339ea44165898f
|
File details
Details for the file fast_multipart-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 206.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7247ee4982ca86dfc212c82e9ccb6204e6ad0bf0902e79d96739bf86e20ed4ad
|
|
| MD5 |
a092e22860cbfb591907e238f8654e24
|
|
| BLAKE2b-256 |
cff8a4e1b99fda5e245aed83bc8a219b13358d47da6ef63714838723e23cd7c5
|
File details
Details for the file fast_multipart-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: fast_multipart-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 234.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
474b8801fed8f9f0f3f97154a88cb0b00a954a781c47c24f5778d919be34e368
|
|
| MD5 |
83c977ab58618c37a4340282b11f2d49
|
|
| BLAKE2b-256 |
f671352676aa96c53caccfd9f7bf148173a00be5b03a9af74f97a339da6a60d8
|