a c-extension that implements a binary reader on top of bytes and bytearrays
Project description
binaryreader
binaryreader is a faster and more elegant alternative to struct
for parsing binary data in Python.
Example
from binaryreader import BinaryReader
data: bytes|bytearray
read_little_endian: bool = True
reader = BinaryReader(data, read_little_endian)
text = reader.readStringC()
Benchmark
TODO
Documentation
Notes:
- kwargs won't be accepted, only args are useable
- all readArray functions accept a langth as optional argument
- bytes can be read by using readUInt8Array
Init
BinaryReader(data: bytes|bytearray, is_little_endian: bool)
Properties
.endian: bool
[get,set] - endianness of the reader (True - little, False - big).position: int
[get,set] - position of the cursor within the data.size: int
[get] - size of underlying/passed object.obj: bytes|bytearray
[get] - underlying/passed object
Functions
.readBool(): bool
- reads a bool.readInt8(): int
- reads an int8.readUInt8(): int
- reads an uint8.readInt16(): int
- reads an int16.readUInt16(): int
- reads an uint16.readInt32(): int
- reads an int32.readUInt32(): int
- reads an uint32.readInt64(): int
- reads an int64.readUInt64(): int
- reads an uint64.readHalf(): float
- reads a half.readFloat(): float
- reads a float.readDouble(): float
- reads a double.readBoolArray(): [bool]
- reads a bool array.readInt8Array(): [int]
- reads a array of int8.readUInt8Array(): bytearray
- reads a array of uint8.readInt16Array(): [int]
- reads a array of int16.readUInt16Array(): [int]
- reads a array of uint16.readInt32Array(): [int]
- reads a array of int32.readUInt32Array(): [int]
- reads a array of uint32.readInt64Array(): [int]
- reads a array of int64.readUInt64Array(): [int]
- reads a array of uint64.readHalfArray(): [float]
- reads a array of half.readFloatArray(): [float]
- reads a array of float.readDoubleArray(): [float]
- reads a array of double.readStringC(): str
- reads a null terminated string.readStringCArray(): [str]
- reads an array of null terminated strings.readString(): str
- reads a string (if length is not passed as arg, read an int as length).readStringArray(): [str]
- reads an array of strings.readStringAligned(): str
- same as readString but aligned to 4 bytes after reading the string.readStringAlignedArray(): [str]
- reads an array of aligned strings.align(align_by: int): int
- aligns the cursor to the given input and returns the position after the alignment.readVarInt(): int
- reads a varint.readLSB(): bytearray
- reads the lsb data of the given size (in bytes to read -> output length is 1/8 of that)
Project details
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
File details
Details for the file binaryreader-0.1.4.tar.gz
.
File metadata
- Download URL: binaryreader-0.1.4.tar.gz
- Upload date:
- Size: 8.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 02bd527e39bddc54565af20ab8d735b7358893eb1513a1a29fbd1b44673a22be |
|
MD5 | 46f509ddab28b9f6b279c8e4c5fdc2a1 |
|
BLAKE2b-256 | e24c97f324dc1a396ec69b4c9f1cedf287405ca1ac7882ade751df6487a819c8 |
File details
Details for the file binaryreader-0.1.4-py3.10-win-amd64.egg
.
File metadata
- Download URL: binaryreader-0.1.4-py3.10-win-amd64.egg
- Upload date:
- Size: 13.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 009dc9ad1f4de523fa1a034d94c43ee79fa39fe6749621a4dd28261bf6112595 |
|
MD5 | 3856271f11bb8edc3604f14b231bea1c |
|
BLAKE2b-256 | 65c7773b2905145dcd403a0d9fe59d0e0b6535d886617a01720e26b3d2910a60 |
File details
Details for the file binaryreader-0.1.4-py3.10-win32.egg
.
File metadata
- Download URL: binaryreader-0.1.4-py3.10-win32.egg
- Upload date:
- Size: 12.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 68a8e21ecba16f1e96c711ee1955c055bab854065bf76d7aae0becab4fdd07dc |
|
MD5 | ad71d594cb436c0152050fc54f85b7d6 |
|
BLAKE2b-256 | f6ffba0c738c054d136605573bdea68b9923c051ada78411eead916de2805ad0 |
File details
Details for the file binaryreader-0.1.4-py3.10-macosx-11.7-x86_64.egg
.
File metadata
- Download URL: binaryreader-0.1.4-py3.10-macosx-11.7-x86_64.egg
- Upload date:
- Size: 11.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2caabbb2c33ee2314fefbd08833226d25522959d7497ad1d541cf7af796c6729 |
|
MD5 | cb4ee83a48e3b5924549258c70f886c5 |
|
BLAKE2b-256 | 4db4354f1e2f8489b03f4922c7f3092618aa6e63eadabbe3af947b3ddcf37a13 |
File details
Details for the file binaryreader-0.1.4-py3.10-macosx-10.14-x86_64.egg
.
File metadata
- Download URL: binaryreader-0.1.4-py3.10-macosx-10.14-x86_64.egg
- Upload date:
- Size: 11.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7f2892034427a6f2de16f0a975bde23d340d854bf399ed3dfcb64020d39a1905 |
|
MD5 | 33133b14c7fe8e12a3c888a1ed49deac |
|
BLAKE2b-256 | e0958e30f7c8525523479414be2ae4702b463f6bb7fc0fea98e6c02bfed1c1bb |
File details
Details for the file binaryreader-0.1.4-py3.9-win-amd64.egg
.
File metadata
- Download URL: binaryreader-0.1.4-py3.9-win-amd64.egg
- Upload date:
- Size: 13.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e2da85a7fc2afe2e6aa4a01b1d2f2415ce55e729fb68fa09aaead758a1551087 |
|
MD5 | f86cc1b21c5a6569d059b9bca499e2a0 |
|
BLAKE2b-256 | 68323fadd65839471f95e6f72f89f5c59e59ab33337042f66786373ffb21bcb2 |
File details
Details for the file binaryreader-0.1.4-py3.9-win32.egg
.
File metadata
- Download URL: binaryreader-0.1.4-py3.9-win32.egg
- Upload date:
- Size: 12.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 57893892a00d0feb0ca4f5d8aee9afe62ee9f67d87ca4e7b294d5766f2874327 |
|
MD5 | b7bae299e5f1e943bb92bda35c0fd332 |
|
BLAKE2b-256 | cca914c12aa1648a4ad178a5b345147604e71d3fd227f5b15ef721f83030391b |
File details
Details for the file binaryreader-0.1.4-py3.9-macosx-11.7-x86_64.egg
.
File metadata
- Download URL: binaryreader-0.1.4-py3.9-macosx-11.7-x86_64.egg
- Upload date:
- Size: 11.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c5966ed200aaf15777a73a332931782547264953812b40759ac22345edd9aea6 |
|
MD5 | 902a4cfa10ca50e6bc56a9f17182b14f |
|
BLAKE2b-256 | 070ca5439ec76c3abf179bef0241709061a507b315c39bbd5173ca62092162f7 |
File details
Details for the file binaryreader-0.1.4-py3.9-macosx-10.14-x86_64.egg
.
File metadata
- Download URL: binaryreader-0.1.4-py3.9-macosx-10.14-x86_64.egg
- Upload date:
- Size: 11.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7420fb37a43aefa72670de62452474c65b6159eb22e759edb3b0cded22be89e1 |
|
MD5 | ec2df0579b84c8553f9c62bc97c474e0 |
|
BLAKE2b-256 | 3246d048fc6f8316f9348c4819e40d293655a6d0e28037f51fcd391a9295e79a |
File details
Details for the file binaryreader-0.1.4-py3.8-win-amd64.egg
.
File metadata
- Download URL: binaryreader-0.1.4-py3.8-win-amd64.egg
- Upload date:
- Size: 13.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4c9a4d3e6a31b28ba1e7f7490b6346236e820e9a1bcf15c82fe062273864de43 |
|
MD5 | f817a268ecb51d94db7bb581a60a98de |
|
BLAKE2b-256 | 88c1dc80f1e25f651fd93822bed8db7ffab2f5f5bb2aab88705a867e09babdf3 |
File details
Details for the file binaryreader-0.1.4-py3.8-win32.egg
.
File metadata
- Download URL: binaryreader-0.1.4-py3.8-win32.egg
- Upload date:
- Size: 12.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2a9f5619ee63dda5bbdeb5fa0a600385ef1360aed102bf361a821c383c3e8b13 |
|
MD5 | 23a7cf33041f2686a6b4232bcd6511c0 |
|
BLAKE2b-256 | 81192b1c6d591011d29ac25606bb8c596cf19c937b8e2512c4f564aaca279634 |
File details
Details for the file binaryreader-0.1.4-py3.8-macosx-10.15-x86_64.egg
.
File metadata
- Download URL: binaryreader-0.1.4-py3.8-macosx-10.15-x86_64.egg
- Upload date:
- Size: 11.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d71314bb277d58ffde038ed1f356d2056027d16ed2b2238bb298e31ddda03ab6 |
|
MD5 | fcf0a45da5ce87f35a7e32d16d9f7f30 |
|
BLAKE2b-256 | bf9310b7c0c99717291e8716c1f2671706433e6627039fdbb3634f0bece1f6bc |
File details
Details for the file binaryreader-0.1.4-py3.8-macosx-10.14-x86_64.egg
.
File metadata
- Download URL: binaryreader-0.1.4-py3.8-macosx-10.14-x86_64.egg
- Upload date:
- Size: 11.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0d42f646e89394a5e467ba2df134c71e1762254a14d2e315f4efad897079d6a5 |
|
MD5 | 188a81cf234e14d1b70b63cd9d0cdb8f |
|
BLAKE2b-256 | 7196cb17e213d3d083b862470dd9f264cb613d038ee89db11ec17469df513c0a |
File details
Details for the file binaryreader-0.1.4-py3.7-win-amd64.egg
.
File metadata
- Download URL: binaryreader-0.1.4-py3.7-win-amd64.egg
- Upload date:
- Size: 13.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8cb59916a474bc804931903454f4739653f8d4127ff00cfba98ad3cbd6e91a95 |
|
MD5 | 51789ee4ff88a9e2099f1c87c9a92962 |
|
BLAKE2b-256 | 6c6c22dc098444a9b2ebee9502732f792848ad44d46c408a79ee5346cd46a135 |
File details
Details for the file binaryreader-0.1.4-py3.7-win32.egg
.
File metadata
- Download URL: binaryreader-0.1.4-py3.7-win32.egg
- Upload date:
- Size: 12.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 36fb7655b52deff53c67415fec2bc8f602f71d93f15cf975574b3600b4347221 |
|
MD5 | 39f92b271ae381f3fc26372937828996 |
|
BLAKE2b-256 | 96f6ec81cca6e72d0fa68416ad0d6a8fa621f35a2767f80cd0dfa00de29a64d3 |
File details
Details for the file binaryreader-0.1.4-py3.7-macosx-10.15-x86_64.egg
.
File metadata
- Download URL: binaryreader-0.1.4-py3.7-macosx-10.15-x86_64.egg
- Upload date:
- Size: 11.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.7.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e392eee28792b3d68d59fceeb8ef52868cb361bd7a75fd596437b7e9ad2be844 |
|
MD5 | 6b4b1efb39d16df0b461c3acf6eed31c |
|
BLAKE2b-256 | ada2ad339bc139ff3674a867d896b1e9b5008c2827e4823ba1ad686c695d1b19 |
File details
Details for the file binaryreader-0.1.4-py3.7-macosx-10.14-x86_64.egg
.
File metadata
- Download URL: binaryreader-0.1.4-py3.7-macosx-10.14-x86_64.egg
- Upload date:
- Size: 11.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b53e6de0276ca4c364bd4e0fbe6ba1b3f2267f8f3515b16a2c1c5271e5e2fdec |
|
MD5 | a84fa01d6692bf64b58a2830ac50f6b2 |
|
BLAKE2b-256 | bb2c5a872cb5acbc22c1a6497753974559df26512870d0abcf4990776da26e11 |
File details
Details for the file binaryreader-0.1.4-py3.6-win-amd64.egg
.
File metadata
- Download URL: binaryreader-0.1.4-py3.6-win-amd64.egg
- Upload date:
- Size: 13.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cdc98c287cf5f5411b7c2bb592424c070a9707a8f4557f3046c66b84d30020f9 |
|
MD5 | 1aebb17605d67e3edc0cee100da30b27 |
|
BLAKE2b-256 | 870f3fff2af9bb8b58cb10636793d25c9001a887911dc52a07824e0d0262f9e8 |
File details
Details for the file binaryreader-0.1.4-py3.6-win32.egg
.
File metadata
- Download URL: binaryreader-0.1.4-py3.6-win32.egg
- Upload date:
- Size: 12.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c615f243b9d5ce95b06218fdcc0b8afde3883ddf91a8ef5f963a5b853fa7b805 |
|
MD5 | 793121a144064f9e759021dfb0871ced |
|
BLAKE2b-256 | 3706ac04258fbbedd57ff1d7b95f7472ec875e0cfa2d15b60a190015d7fd7483 |
File details
Details for the file binaryreader-0.1.4-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: binaryreader-0.1.4-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 13.3 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cb77a9a222cbf45aaf181bf94c3bf7f97e611d1b547c8d359b4126e9a17be8bd |
|
MD5 | ef1086909c304fd6b7153f4d2467ffb7 |
|
BLAKE2b-256 | a024ffe5894640a8fbce7bd3ae223bc9a7717af965d034b1b4460d48213aaf6a |
File details
Details for the file binaryreader-0.1.4-cp310-cp310-win32.whl
.
File metadata
- Download URL: binaryreader-0.1.4-cp310-cp310-win32.whl
- Upload date:
- Size: 12.1 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fd7dc84854f5f191d33506c16781ce43f1dbcc7561174dec3f734c51e08d6105 |
|
MD5 | 52ec43369c8a840e1aa7a9600e18abd7 |
|
BLAKE2b-256 | 2171de3f70a07a07820a8e71f52ad0af174d5c86a1aa26f398d97652f0e5e560 |
File details
Details for the file binaryreader-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: binaryreader-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 43.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3a513857336d94aa569a2b85a8014b8d20cdea9cb0e9042939d905e201cb00a5 |
|
MD5 | 900ee4bb830b0301cd69049effb3e222 |
|
BLAKE2b-256 | 5119da383b9de0257867ef0a94946da1a1a6b52f60a835894f82ccc237c8dd57 |
File details
Details for the file binaryreader-0.1.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: binaryreader-0.1.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 44.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3fb5e3dad61f6eab7165a9ea6bee039fe6940c03f6c58bc1c1095093ee5d888a |
|
MD5 | eca393fc6fd177214982970263f8b4de |
|
BLAKE2b-256 | b76ff92cb320e114b9d9e0d68e029aaf43a68333c678d2c383e6b81968143360 |
File details
Details for the file binaryreader-0.1.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: binaryreader-0.1.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 41.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4c13c145dbeacdfc2d51ecc8409c1a835b31b5e43bef91925148e13d5285e614 |
|
MD5 | ddcc1cb01a522a589ab8907c5675b2c2 |
|
BLAKE2b-256 | 847b96bdac00f6fb92c7a3deb940c326510445e546b100706db2f43b0ccea500 |
File details
Details for the file binaryreader-0.1.4-cp310-cp310-macosx_11_0_x86_64.whl
.
File metadata
- Download URL: binaryreader-0.1.4-cp310-cp310-macosx_11_0_x86_64.whl
- Upload date:
- Size: 11.4 kB
- Tags: CPython 3.10, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bedaa002688874bb3653aac3035324beeba425585fc472677bed243b9e2ee8cb |
|
MD5 | 4eb0603d5e7d6e3fb242affb142de8bd |
|
BLAKE2b-256 | f280d13b1bed2db02258ddb59ef4fffeef7b82fd6891f1e14077bf657f67dcc7 |
File details
Details for the file binaryreader-0.1.4-cp310-cp310-macosx_10_14_x86_64.whl
.
File metadata
- Download URL: binaryreader-0.1.4-cp310-cp310-macosx_10_14_x86_64.whl
- Upload date:
- Size: 11.3 kB
- Tags: CPython 3.10, macOS 10.14+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a941f76774c1cddce9a1eb1c0124a0ae2631364333e36b0e6c767dea42dc96b3 |
|
MD5 | b398b5e02c9462ddade13e5502a09fbf |
|
BLAKE2b-256 | c2cce975fb43c3513eae7f1b7c14686e7405a4aa958e8fabbde70bd59c91c538 |
File details
Details for the file binaryreader-0.1.4-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: binaryreader-0.1.4-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 13.3 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6dc53e3a4f87aafd430dd750d9a8bc3d4beb56a9da86b2d2a0e1e3ab9d3d5327 |
|
MD5 | 54404e66f1d6b52efcd9714b55de2ec5 |
|
BLAKE2b-256 | 4c16b0e097eb7162a51f846fdc0c16316299fdb176d4916bb577746ce230160f |
File details
Details for the file binaryreader-0.1.4-cp39-cp39-win32.whl
.
File metadata
- Download URL: binaryreader-0.1.4-cp39-cp39-win32.whl
- Upload date:
- Size: 12.1 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5384d0f8dab1e403028e0970972bd92ca25b3d2402d909a250534748c52d2db5 |
|
MD5 | a0c612f4f2fa5ab8f1b9ca108d9f8a64 |
|
BLAKE2b-256 | b524895de69bf227baede70f73be3eb7c31ab64100267f0b226a5f012f4b8838 |
File details
Details for the file binaryreader-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: binaryreader-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 42.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 58d2f218dc44798eefa0b1fe9785335cf3f72384804f9314b49ed9dc417b0302 |
|
MD5 | 8b40d558b4a1ee999fe90ff4091ddeb6 |
|
BLAKE2b-256 | abbe9ac085c0d6c13804ce7381b0a1f67229e6ad5e84595a09eea0df940ebfd1 |
File details
Details for the file binaryreader-0.1.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: binaryreader-0.1.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 44.6 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a9031a7324460da5da5ec800f32ef0e2b842dc64a25d0611d37f4fdc660b61d3 |
|
MD5 | badf353b28b8d459080467d5f826c9af |
|
BLAKE2b-256 | 320b98d34bc6383dde66aaf97a91e680bf694ffaae34a3329cc8fd3977999d3e |
File details
Details for the file binaryreader-0.1.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: binaryreader-0.1.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 41.6 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9359a4a739e8a576954160d3121a2f63e314b750e104a6d758388a44a85bfb41 |
|
MD5 | 263e570875685e068a8e305086bb41cf |
|
BLAKE2b-256 | 66b4362816ef5972dc73a37bfe3d3f56e1dd6212d71ce7cc7ac4e124f2f3520d |
File details
Details for the file binaryreader-0.1.4-cp39-cp39-macosx_11_0_x86_64.whl
.
File metadata
- Download URL: binaryreader-0.1.4-cp39-cp39-macosx_11_0_x86_64.whl
- Upload date:
- Size: 11.4 kB
- Tags: CPython 3.9, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 665223c6da9777d6e09f364ff5b20d950f1734fd1dd6144777ebbd30433f4d95 |
|
MD5 | 4de9411fb5a8646633a1aed1a2811e3a |
|
BLAKE2b-256 | 08667ac1bb9b63e5dfa56075ea63a56469ff495d63705d5a2a39050065c84a40 |
File details
Details for the file binaryreader-0.1.4-cp39-cp39-macosx_10_14_x86_64.whl
.
File metadata
- Download URL: binaryreader-0.1.4-cp39-cp39-macosx_10_14_x86_64.whl
- Upload date:
- Size: 11.3 kB
- Tags: CPython 3.9, macOS 10.14+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bf8f57a203953973e800c870e710d7edf9a0047985831f2cbc51c6a8e44fdb10 |
|
MD5 | 86cad51c0703e905d8fc46346003f324 |
|
BLAKE2b-256 | 6c9b7cbf109dbb0093707b7f59776882ab14054de64efedb1ba7385a90a4e96c |
File details
Details for the file binaryreader-0.1.4-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: binaryreader-0.1.4-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 13.2 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3a5b23209e5da8f4ae6ce904f323112f81f77000f106705a9010ccce7af4967b |
|
MD5 | b1b6c071c50eb8a7f3e7ee5b585212a3 |
|
BLAKE2b-256 | b7adbc31197f83d491ac11f565b9d92cbf8c1eb89af406ba078bcc38017df7dd |
File details
Details for the file binaryreader-0.1.4-cp38-cp38-win32.whl
.
File metadata
- Download URL: binaryreader-0.1.4-cp38-cp38-win32.whl
- Upload date:
- Size: 12.1 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c3cdf2fcda5bd1044400e62161633fff4e92439586566585dc6038e0d5e8686e |
|
MD5 | 710b824baa8726151e8467e675ec7132 |
|
BLAKE2b-256 | a9be81b752b3bda4cbe51d10dbbb1b28f1f5423e475c05dcb27ee74e3fd1fe1e |
File details
Details for the file binaryreader-0.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: binaryreader-0.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 43.4 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0b9f862bd58885fe0f6d9f24bec8da454d3e9831dcb94c0925a848bfaa2975ad |
|
MD5 | cc36a75874d721ec09f660651dd661c0 |
|
BLAKE2b-256 | 9268ef65ce097a36015d069cf363e51abeebe405a0cd6dc540dd5d845560d463 |
File details
Details for the file binaryreader-0.1.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: binaryreader-0.1.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 45.0 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 47a5f680f19504cc9177f686bd30a8d018ca7d80c31c03bb52de5f69f3db9f86 |
|
MD5 | 852f3ff1c69c704b3dd8a5b7ef1c1ff4 |
|
BLAKE2b-256 | 0ae9186b48ce635d1f2a467b8294057b9265c0ad3ba1f64f69202ecf03158e09 |
File details
Details for the file binaryreader-0.1.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: binaryreader-0.1.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 42.1 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | da16e81b593d8d677d281617cb7d15559ed0ee7ca1b76cbd1cdb83f4bf46a774 |
|
MD5 | 50b3d3cc6f116d569a87ed1e32ea873f |
|
BLAKE2b-256 | 7e751330ae6d3d564bc808c0cb7cd531fbf723484b7c33fdfb71fd292173f089 |
File details
Details for the file binaryreader-0.1.4-cp38-cp38-macosx_10_15_x86_64.whl
.
File metadata
- Download URL: binaryreader-0.1.4-cp38-cp38-macosx_10_15_x86_64.whl
- Upload date:
- Size: 11.4 kB
- Tags: CPython 3.8, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 983930fa027be73763a7eb0ce50338a676cc7f03cdfdd5c4dc937995151228a6 |
|
MD5 | 8b596886f8f288cc5d2fcbd2a5b3ada1 |
|
BLAKE2b-256 | 0b6e87b2f5a761d81c59c75d8403ef4a1582876c7ed3c0e58760b4ad34c5b207 |
File details
Details for the file binaryreader-0.1.4-cp38-cp38-macosx_10_14_x86_64.whl
.
File metadata
- Download URL: binaryreader-0.1.4-cp38-cp38-macosx_10_14_x86_64.whl
- Upload date:
- Size: 11.2 kB
- Tags: CPython 3.8, macOS 10.14+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 73ad21354e46d2862e908c6e24601d9c4155d845b8da07fb925afabe9f561ef2 |
|
MD5 | f87d7b265732944ecc34cf2d6493b015 |
|
BLAKE2b-256 | 9fd50b5dd6cf3343ef5f460c97bd1b51655582ef8f7b093e901c7104a89a14fe |
File details
Details for the file binaryreader-0.1.4-cp37-cp37m-win_amd64.whl
.
File metadata
- Download URL: binaryreader-0.1.4-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 13.2 kB
- Tags: CPython 3.7m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6fe9e6758457cea0269e7fc00b428beb268d17881e635059c69ff2a33714f69c |
|
MD5 | e6d54216663b4ba24677c6e4db5991aa |
|
BLAKE2b-256 | d88c0e4f54ed909875138cf9e61e4cd46d6b31ec69034fa0a589b70333bae9c6 |
File details
Details for the file binaryreader-0.1.4-cp37-cp37m-win32.whl
.
File metadata
- Download URL: binaryreader-0.1.4-cp37-cp37m-win32.whl
- Upload date:
- Size: 12.1 kB
- Tags: CPython 3.7m, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8f7ff37b9f5b9d85e29be2195fabe4cd442e0f8d6a53781083d6e08010774120 |
|
MD5 | 03efbea125591eae63c839aa5488fe88 |
|
BLAKE2b-256 | bdb2a5c0cafc0638f41809917e6a797df4c3d3b6ac1c792def7ce17ca821c50b |
File details
Details for the file binaryreader-0.1.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: binaryreader-0.1.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 42.9 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 197a37ac9dcabe22e27e07865ea838a12bf18e012e0f3d4164d3ffe78350e994 |
|
MD5 | 7659108316c4d7c408c175430d35d14a |
|
BLAKE2b-256 | 441d523df4c030160be2cf3d2a506db01d6ebd1c797fe0eb0a9fbbea42ee7066 |
File details
Details for the file binaryreader-0.1.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: binaryreader-0.1.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 44.5 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 040c4677e5f5a5064e4bf73c0ea84e0343691f2645f4d55ce8a8e77620ae4f9d |
|
MD5 | c093a9c537845f2398f3ebf619aef671 |
|
BLAKE2b-256 | 9f917b6fcf93b01a1a62bc266c438b8bf3961689cd8859d38d631723b609d339 |
File details
Details for the file binaryreader-0.1.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: binaryreader-0.1.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 41.7 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 18c5e565c7b0b8c39f3a88e6ad0ff8f03dcbfb0af8029f6d6b4c4792246b6e38 |
|
MD5 | ded26204d107928c7b83abd95f26e2f2 |
|
BLAKE2b-256 | bebda8109b52a58f082d6d0b82bc246cde0d78afe371ca479aeafe315c882a4d |
File details
Details for the file binaryreader-0.1.4-cp37-cp37m-macosx_10_15_x86_64.whl
.
File metadata
- Download URL: binaryreader-0.1.4-cp37-cp37m-macosx_10_15_x86_64.whl
- Upload date:
- Size: 11.4 kB
- Tags: CPython 3.7m, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.7.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f25504576f9c572a71357169ed8b30b2e81e2b6e442a25f4e779c77951816a25 |
|
MD5 | 144454156da07e68c5e900ee64984495 |
|
BLAKE2b-256 | 0e85622ff141f0c50c65424390ad9ab1d4ed96aaa1d049df5bacc10813a12685 |
File details
Details for the file binaryreader-0.1.4-cp37-cp37m-macosx_10_14_x86_64.whl
.
File metadata
- Download URL: binaryreader-0.1.4-cp37-cp37m-macosx_10_14_x86_64.whl
- Upload date:
- Size: 11.2 kB
- Tags: CPython 3.7m, macOS 10.14+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9cf548f8a2b1dbeff4148ee6a400bd97c4f283d81cdeb2724263eea48a70969c |
|
MD5 | 4ef7c827efd32cf92bfcb378306bb41a |
|
BLAKE2b-256 | 9a6da048e4445c83b047ae97ae46bc508301203ce892d27ee4ab9b702117a2d5 |
File details
Details for the file binaryreader-0.1.4-cp36-cp36m-win_amd64.whl
.
File metadata
- Download URL: binaryreader-0.1.4-cp36-cp36m-win_amd64.whl
- Upload date:
- Size: 13.2 kB
- Tags: CPython 3.6m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 419f91374b0aaf3e2812c3ab332f0be184e039ccaa46dffb68f11cc4e08c367a |
|
MD5 | 112b4667d76b9d3dde6e86f5c2b44cc1 |
|
BLAKE2b-256 | 89a6feda91baffafc0f92d2a559b905af189cb7618f76bc6bfee9e506e0c4c92 |
File details
Details for the file binaryreader-0.1.4-cp36-cp36m-win32.whl
.
File metadata
- Download URL: binaryreader-0.1.4-cp36-cp36m-win32.whl
- Upload date:
- Size: 12.1 kB
- Tags: CPython 3.6m, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 82c896f8cdf76f059d1be48d266bab481164294777fc62a7b6808930f3f8e765 |
|
MD5 | 10fbd5625e23b1ff3e9f8c90dd7d1195 |
|
BLAKE2b-256 | 03b25067517e0c9a970180dd4dd0de3df5cb67e0f34b7e92a138c3acdb72013c |
File details
Details for the file binaryreader-0.1.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: binaryreader-0.1.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 42.9 kB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 559b0c6c1ee751b4fc02633ed26d7e80ccc519347cea1bb218855fc1ab94370a |
|
MD5 | 04e28dde6c2707792741cdbdab9a39e6 |
|
BLAKE2b-256 | 9cf6c178eeb29b39aa00864265abdfd836cdc1c32b38c9473b4e89d36de768ff |
File details
Details for the file binaryreader-0.1.4-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: binaryreader-0.1.4-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 44.5 kB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e63a52c18065c73c6be254d5e39d748a9f3be7a04137d3676b2d268a7d30d144 |
|
MD5 | 57fd72f5d2c8ceaa20061c377255652f |
|
BLAKE2b-256 | d0b09cf72bb737649fd2be664007992bc04c212fc820d635e2e88e4701c88723 |
File details
Details for the file binaryreader-0.1.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: binaryreader-0.1.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 41.7 kB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 606df3404f88830bdbdea78142c8f3e1314212c8966948724abe60ff278d75d6 |
|
MD5 | 215e36d06c89172371f2019bd6b1b493 |
|
BLAKE2b-256 | 4118208bace58dbf2cd816c5e78bc3cd074823503d42f546934a7417a201646e |