Skip to main content

e1.py

Python support for the e1 seismic compression format.

"e1" is a variable-length compression algorithm for int32 data.

Installation

PyPI

pip install e1

Conda-Forge

New: now in Conda-Forge, thanks to @jcox10!

conda install -c conda-forge e1

Usage

Decompress data from a file

import e1

file_name = 'some_file.w'
byte_offset = 0
nsamples = 1000

with open(file_name, 'rb') as f:
    f.seek(byte_offset)
    data = e1.decompress_file(f, nsamples)

Decompress raw bytes

with open(file_name, 'rb') as f:
    # Read 5 times as many bytes as you expecte from nsamples x 4-byte values,
    # just to make sure all your nsamples are in it.  Though it may be more data
    # than you need, this gaurds against poorly-compressed data.  
    # In e1, you don't know a priori how many bytes it took to compress your data.
    nbytes = 5 * nsamples * 4
    byts = f.read(nbytes)

data = decompress(byts, nsamples)

Compress a NumPy array

import e1

e1bytes = e1.compress(my_array)

compression_ratio = my_array.nbytes / len(e1bytes)
print(f"Compression ratio: {compression_ratio}")

Release files for e1 0.2.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for e1 0.2.1
File Size Uploaded
e1-0.2.1.tar.gz 15.2 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for e1 0.2.1
File
e1-0.2.1-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
e1-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
e1-0.2.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
e1-0.2.1-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
e1-0.2.1-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
e1-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
e1-0.2.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
e1-0.2.1-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
e1-0.2.1-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
e1-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
e1-0.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
e1-0.2.1-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
e1-0.2.1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
e1-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
e1-0.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
e1-0.2.1-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
e1-0.2.1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
e1-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
e1-0.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
e1-0.2.1-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
e1-0.2.1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
e1-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
e1-0.2.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
e1-0.2.1-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
e1-0.2.1-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
e1-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
e1-0.2.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
e1-0.2.1-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
e1-0.2.1-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
e1-0.2.1-cp38-cp38-musllinux_1_2_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-64 Details
e1-0.2.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
e1-0.2.1-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details

Total release size:614.9 kB

Release files / e1-0.2.1.tar.gz

Download URL e1-0.2.1.tar.gz
Size 15.2 kB
Tags Source
SHA-256 checksum
How to use checksums
ac0d74fe24270676933f4968137518b1955e6baf9aa7ad534ff4aba22da76724
BLAKE2b-256 checksum
How to use checksums
bb56c5f921ed974e75735683ed59738e05c169df2c385b9b16d61a34b5b789c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.9.23

Release files / e1-0.2.1-cp314-cp314t-win_amd64.whl

Download URL e1-0.2.1-cp314-cp314t-win_amd64.whl
Size 14.7 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
c453a5b88e6383239570942ad9ba6ff665e5fc709b0bc98a00319c29c7745ed2
BLAKE2b-256 checksum
How to use checksums
ff13f9ea3120877566015d76561ae91227839921559218affe51aed2b1ca1f55
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.9.23

Release files / e1-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL e1-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 23.8 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
9f3f228852fef30ad338cbfdca7a3f6f35e6d9422bd25429151bfa609b0d675c
BLAKE2b-256 checksum
How to use checksums
985e08eddbe68b9acd4ca90ee62afe552dcbd6059d29fca5bfb3a9097023620b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.9.23

Release files / e1-0.2.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL e1-0.2.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 25.6 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
97f5d2d145d162a896a314812318694326ad73876a64c99a2bc76c35ac444bd6
BLAKE2b-256 checksum
How to use checksums
454290d3a9ea2d71dc327fab86316718a3c048c7c2e4dd4025ce72d9336e1b29
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.9.23

Release files / e1-0.2.1-cp314-cp314t-macosx_11_0_arm64.whl

Download URL e1-0.2.1-cp314-cp314t-macosx_11_0_arm64.whl
Size 11.3 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
47386b116932d4c2840f8fcd3257ce3bc400e21ca1840eed02dafa790e5a1234
BLAKE2b-256 checksum
How to use checksums
2f68b9f63a503e1b44eff59ae04e7e0db9f98d8e2fca4d3afebd74c01bba8b1d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.9.23

Release files / e1-0.2.1-cp314-cp314-win_amd64.whl

Download URL e1-0.2.1-cp314-cp314-win_amd64.whl
Size 14.6 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
1e90d236b72ed79239a0837bba1270c5357339c7bafa7766a2fa0318c10ceca2
BLAKE2b-256 checksum
How to use checksums
5b687dc898a748a40fdab218748d596b071555d4cfa7ddf91ed118778c4fa72d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.9.23

Release files / e1-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL e1-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Size 23.8 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
f32a1b5166d1b9d12d4ff761bf97ad33da45de30ce5bd021c5d0ba571ce485d8
BLAKE2b-256 checksum
How to use checksums
7731838e05f39c6a449796af9fc034077dcd8ea880272129c0269fa2ba94af35
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.9.23

Release files / e1-0.2.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL e1-0.2.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 25.6 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
cb8db9995ea5f9618c49cd1a8b8875f790e2565f070d4543b718253fbf84f7f3
BLAKE2b-256 checksum
How to use checksums
a60be15c277ceb91764810ce9b6b2eb89438300ec08e0564d5478900cd8bd54a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.9.23

Release files / e1-0.2.1-cp314-cp314-macosx_11_0_arm64.whl

Download URL e1-0.2.1-cp314-cp314-macosx_11_0_arm64.whl
Size 11.2 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4d98c73b970019584956b261fbe8e83c74aec72e36121a19ae45a5a67028a4cb
BLAKE2b-256 checksum
How to use checksums
28a83b99b905d05f497a57663023914a0c906f084370ae4f2454f3820a1d4720
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.9.23

Release files / e1-0.2.1-cp313-cp313-win_amd64.whl

Download URL e1-0.2.1-cp313-cp313-win_amd64.whl
Size 14.3 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
fce5e4750021968173ac99be3ea8d4d1a1342a29d20199032febb71ca666bd42
BLAKE2b-256 checksum
How to use checksums
065c264389bbf6ab532351112cd7188af0a2b4841732c9f06bc28a2365160612
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.9.23

Release files / e1-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL e1-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Size 23.8 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
8025cf8deda82e4677144dda442c654a948ece472d82ac1a5ba92991af07ee98
BLAKE2b-256 checksum
How to use checksums
aad0c632cf21ebecb8f1fbd7c508d11e90ca772e0182a7239fbdb13311d72c78
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.9.23

Release files / e1-0.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL e1-0.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 25.6 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
c513d71105e91b351eb478b188f7a6cfa77a92586c0ee0fabaa5cbfd3be0c818
BLAKE2b-256 checksum
How to use checksums
7d4b599b6b62fb2f0e013ffeab5e100bd84a9c324123c280c0ffb01377e62cc3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.9.23

Release files / e1-0.2.1-cp313-cp313-macosx_11_0_arm64.whl

Download URL e1-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Size 11.2 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
45dfea6535b1305f777581d51d86b4ae04e7e20e0d32a1071c6b4a9bda5ed718
BLAKE2b-256 checksum
How to use checksums
1eed3d14378bb95f9771ccc9194463a5e84407322d5f03e748187bcfad7e423b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.9.23

Release files / e1-0.2.1-cp312-cp312-win_amd64.whl

Download URL e1-0.2.1-cp312-cp312-win_amd64.whl
Size 14.3 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
77f3554a2dd37769c7b9af0cf7442928a816cd23eaa7be192c674cfe351ea31a
BLAKE2b-256 checksum
How to use checksums
a65251ae28b252a7766d68cdda4c07b7cffaac35aaed426cc56ef30ab2549d6c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.9.23

Release files / e1-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL e1-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Size 23.8 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
9924816f25b4e30660585ca882aa35ab428b648aec3f18e723c9adbc41095a5c
BLAKE2b-256 checksum
How to use checksums
7e7da395cf2075eca761e0c9c11b8395b7fa200e486b19d2a3e1a035664f130a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.9.23

Release files / e1-0.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL e1-0.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 25.6 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
0acaeecdb04075e5e3091eb7e9a5045c6f9add628163b237d9b43662f08fbc0d
BLAKE2b-256 checksum
How to use checksums
690c4baa3910091b783db276a1ef97ad3275aa6c7b67076be658c438cbd1ffba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.9.23

Release files / e1-0.2.1-cp312-cp312-macosx_11_0_arm64.whl

Download URL e1-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Size 11.3 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f1a30970d8f69feb5aca4ca8548fa0f14dffb645fce4bf390e3f0ce55d1eab8b
BLAKE2b-256 checksum
How to use checksums
480b6de83de812e3f39e5ad29f9ec7f8b97b2cd3e4048c7c76af93aa3cd13aed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.9.23

Release files / e1-0.2.1-cp311-cp311-win_amd64.whl

Download URL e1-0.2.1-cp311-cp311-win_amd64.whl
Size 14.3 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
2ad8bee077112e8f1939b3c2c3a0f0ce3876876e2a10c4dd9a3d2773f32094f8
BLAKE2b-256 checksum
How to use checksums
41f774661a810ff58cd5fe0db227cb64aab0b7770ad919319eba9902b342b1e9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.9.23

Release files / e1-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL e1-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Size 23.8 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
086563c0061829aedf369f0f90527302b258153a4cc4fab2c7fef3d86a997bc7
BLAKE2b-256 checksum
How to use checksums
20012615b39007708d7d7590049d8a2aeaea197dab716aec66a77ac9c199d563
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.9.23

Release files / e1-0.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL e1-0.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 25.6 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
6b17da25496faac00f1ba57609c48cf662beef98d3c147b591bf4f88b762d1b1
BLAKE2b-256 checksum
How to use checksums
76bef482fcc015c8db8d2b7165f905762ff0d6c708a788991e3f176d57e3089f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.9.23

Release files / e1-0.2.1-cp311-cp311-macosx_11_0_arm64.whl

Download URL e1-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Size 11.2 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4e3934d5fa9a666aa8ddc623c77adc68561d120eab3ad11aad4142b75bd925d6
BLAKE2b-256 checksum
How to use checksums
5e02e86ca289737e7683846a0bdd2811683618f44a9d33383c533ca48a9394e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.9.23

Release files / e1-0.2.1-cp310-cp310-win_amd64.whl

Download URL e1-0.2.1-cp310-cp310-win_amd64.whl
Size 14.3 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
fceef70e0f8684117206fce4a2c05d011ec9dc1af7000d3b0c2d29cf4d0c6462
BLAKE2b-256 checksum
How to use checksums
99af91cf6e3987a94c65e64e1e571826d5084e19601b2f18c58c9d562b9d045f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.9.23

Release files / e1-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL e1-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Size 23.8 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
af76355c9a47002d9bc1142dedb2502015db5d10bd92c0940b8315ab417bb14f
BLAKE2b-256 checksum
How to use checksums
280ce2e465c85a35517e81459f7eb1a949c90768b0db4556104bba31c6935b27
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.9.23

Release files / e1-0.2.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL e1-0.2.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 25.6 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
a9c9636b5f55663841a924dcc72b8d26373555bb261b8837b07edc7c53f941e4
BLAKE2b-256 checksum
How to use checksums
0043bdd55bc174866834fd8f3545fa951ca56d04e60f1f79239012e5d1d1b075
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.9.23

Release files / e1-0.2.1-cp310-cp310-macosx_11_0_arm64.whl

Download URL e1-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
Size 11.2 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9d1820708fb2b413ca9afcb86225ed892a69f580e004e88ff358602cab367c30
BLAKE2b-256 checksum
How to use checksums
66cd104e9acbbea1fcb0cf5615e2534ecef8551b26e8a97bbda3871341e5ae8e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.9.23

Release files / e1-0.2.1-cp39-cp39-win_amd64.whl

Download URL e1-0.2.1-cp39-cp39-win_amd64.whl
Size 14.3 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
eaed5f59fe6c8f0a65416fee3648ca755d09de64d0b1d51a724fc0cb9d51633d
BLAKE2b-256 checksum
How to use checksums
750933c496b5d3aa132147b7fe6b712d1e04ff0d881c37782e3f12bcd3ce8f33
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.9.23

Release files / e1-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL e1-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
Size 23.8 kB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d79651fa03619c441374d79b9726e19b5dd54f67b2bdd84ae5daecf2b9e8b09d
BLAKE2b-256 checksum
How to use checksums
1c0dfa50671e6f6798bc544e269e151eda220f7a85e58a03a337449cfb2bcc86
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.9.23

Release files / e1-0.2.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL e1-0.2.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 25.6 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
a4f4e3dcd0824fa029736b241f0e512580adcc39fb27959390f6ec1c11eca306
BLAKE2b-256 checksum
How to use checksums
c20babfc3a2526987fa2444f1fa5ed12bff27ac2383513594ffce04155f61158
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.9.23

Release files / e1-0.2.1-cp39-cp39-macosx_11_0_arm64.whl

Download URL e1-0.2.1-cp39-cp39-macosx_11_0_arm64.whl
Size 11.2 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
14a789e20f9637870a2082336474a212983a233886af7c87178f6aa1b14b5ac2
BLAKE2b-256 checksum
How to use checksums
f6c7bc8d305ae1c47c6a387c75f4b3444f0f804899149921fe3ca9bd76200fc7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.9.23

Release files / e1-0.2.1-cp38-cp38-win_amd64.whl

Download URL e1-0.2.1-cp38-cp38-win_amd64.whl
Size 14.2 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
c3a27248c668585e7e1abdf0445d29033e905f5fd8209417f1d8ecec705e1a47
BLAKE2b-256 checksum
How to use checksums
58d52438b82aa87f161c70d819baf9f6822ba6bde8f6aacb37fdada4bbe98a9d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.9.23

Release files / e1-0.2.1-cp38-cp38-musllinux_1_2_x86_64.whl

Download URL e1-0.2.1-cp38-cp38-musllinux_1_2_x86_64.whl
Size 23.5 kB
Tags CPython 3.8 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
fba2737569fd67186259f5567f9d9196b0073c29264bc16ace815896886e3da0
BLAKE2b-256 checksum
How to use checksums
19a68637be5797f0a7f00494d1e4eda6e8e68e32997d402595a4e7d0db7cc68b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.9.23

Release files / e1-0.2.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL e1-0.2.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 25.4 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
0528021d905a0d9f46c974de0ed0574a5828e3c223ff7f110bb500333adc2964
BLAKE2b-256 checksum
How to use checksums
f869cd22449cc830d8d1976b463dcf529540f69d53763d8af11b1a3623d482d4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.9.23

Release files / e1-0.2.1-cp38-cp38-macosx_11_0_arm64.whl

Download URL e1-0.2.1-cp38-cp38-macosx_11_0_arm64.whl
Size 11.0 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
317c9df01b71c55068e59e2980ebf7668f7ec23b23956e12d85308eca7a95bfa
BLAKE2b-256 checksum
How to use checksums
0c4bbc38537143d7fb5374ba2704e3025907d7108d8602a3a3ef715c37ec7ca4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.9.23

Release history Release notifications | RSS feed

This release

0.2.1 This release

33 release files

0.1.2

30 release files

0.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page