EnhEx: Enhanced Expression
Regex, Enhanced for Readability.
EnhEx is a simple, readable language for writing regular expressions. Write patterns like sentences. Get standard Regex output. Use it anywhere — Python, JavaScript, Rust, CLI, browser.
Why EnhEx?
Regex is powerful but painfully unreadable. After a few months, even your own patterns look like alien code.
EnhEx fixes this:
- Write patterns in a clean, human-readable syntax
- Compile to standard Regex that works everywhere
- One core, written in Rust, compiled to WASM — runs identically in every language
Language Support Status:
- Rust: ✅ Native
- Python: ✅
enhexat PyPI with WASM - JavaScript: ✅
enhexjsat NPM with WASM
Quick Example
EnhEx Input
start + one_or_more(word_char | dot | dash) + "@" + one_or_more(word_char | dash) + dot + tld() + end
Regex Output
^[\w\.-]+@[\w-]+\.[a-z]{2,10}$
Same logic, but you can actually read the first one.
Installation
Python
pip install enhex
Rust
cargo install enhex-core
JavaScript / TypeScript
npm install enhexjs
CLI (via Python)
pip install enhex
enhex compile "start + one_or_more(digit) + end"
# Output: ^\d+$
Usage
Python
import enhex as ex
# Compile a pattern string
pattern = ex.compile('start + one_or_more(digit) + end')
# Compile from a .enhex file
phone_pattern = ex.compile_file('phone.enhex')
# Use with standard re module
import re
if re.match(pattern, "367812009"):
print("Valid number!")
JavaScript
import { compile } from 'enhexjs';
const pattern = compile('start + one_or_more(digit) + end');
const regex = new RegExp(pattern);
if (regex.test('12345')) {
console.log('Only digits!');
}
// Or automatic RegExp creation:
const re = compileRegExp('start + one_or_more(digit) + end');
if (re.test('12345')) {
console.log('Only digits!');
}
Rust
use enhex_core::compile;
let pattern = compile("start + one_or_more(digit) + end").unwrap();
let re = regex::Regex::new(&pattern).unwrap();
assert!(re.is_match("12345"));
CLI
# Compile a pattern string
enhex compile 'start + exactly(10, digit) + end'
# Compile a .enhex file
enhex compile phone.enhex
# Show version
enhex version
Syntax Overview
Atoms (Basic Building Blocks)
| EnhEx | Description | Regex Equivalent |
|---|---|---|
digit |
Any digit 0-9 | \d |
word_char |
Letter, digit, or underscore | \w |
whitespace |
Space, tab, or newline | \s |
lowercase |
Lowercase letters a-z | [a-z] |
uppercase |
Uppercase letters A-Z | [A-Z] |
letter |
Any letter | [a-zA-Z] |
anything |
Any character | . |
dot |
Literal dot | \. |
dash |
Literal dash | \- |
tab |
Literal tab | \t |
newline |
Literal newline | \n |
hex_digit |
Single hex digit (upper or lower) | [\da-fA-F] |
Quantifiers
| EnhEx | Regex Equivalent |
|---|---|
one_or_more(X) |
X+ |
zero_or_more(X) |
X* |
optional(X) |
X? |
exactly(N, X) |
X{N} |
at_least(N, X) |
X{N,} |
between(N, M, X) |
X{N,M} |
one_or_more_lazy(X) |
X+? |
zero_or_more_lazy(X) |
X*? |
optional_lazy(X) |
X?? |
Composition & Anchors
| EnhEx | Meaning | Regex Equivalent |
|---|---|---|
X + Y |
X followed by Y | XY |
X | Y |
X or Y | X|Y |
"text" |
Literal text | escaped text |
start |
Start of string | ^ |
end |
End of string | $ |
word_boundary |
Word boundary | \b |
Groups
| EnhEx | Regex Equivalent |
|---|---|
group(X) |
(X) |
non_capturing(X) |
(?:X) |
named("name", X) |
(?P<name>X) |
not(X) |
[^X] |
Lookaround
| EnhEx | Regex Equivalent |
|---|---|
followed_by(X) |
(?=X) |
not_followed_by(X) |
(?!X) |
preceded_by(X) |
(?<=X) |
not_preceded_by(X) |
(?<!X) |
Backreferences
| EnhEx | Regex Equivalent |
|---|---|
backref(1) |
\1 |
backref("name") |
(?P=name) |
Raw Regex Literal
| EnhEx | Regex |
|---|---|
regex("\\d{3}-\\d{4}") |
\d{3}-\d{4} |
/[\w\.-]+@[\w-]+\.[a-z]{2,10}/ |
[\w\.-]+@[\w-]+\.[a-z]{2,10} |
Built-in Presets
| EnhEx | Matches |
|---|---|
tld() |
Top-level domain (com, org, ir, ...) |
email() |
Full email address |
url() |
URL |
ipv4() |
IPv4 address |
File Format
EnhEx patterns are stored in .enhex files:
email.enhex:
start + one_or_more(word_char | dot | dash) + "@" + one_or_more(word_char | dash) + "." + tld() + end
Project Structure
enhex/
├── core/ # Rust core engine
├── bindings/
│ ├── python/ # Python package
│ └── js/ # JavaScript/TypeScript package
├── examples/ # Example .enhex patterns
├── vscode/ # VSCode extension (coming soon)
├── playground/ # Web playground (coming soon)
├── SPEC.md # Full language specification
└── README.md
Roadmap
- Language specification
- Rust core engine + WASM
- Python binding
- CLI tool
- JavaScript/TypeScript binding
- VSCode extension (syntax highlighting + live preview)
- Web playground
License
MIT © Mahan Khalili
RegEx, Enhanced.
Release files for enhex 0.3.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Built distributions (wheels)
Total release size: 21.9 MB
Release files / enhex-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
| Download URL | enhex-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 462.9 kB |
| Tags | Linux musl 1.2+ x86-64 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
404756f96ca5b2b4c0d38c7a957de4425cfb68d80ad19fa70ccb233b86754f4b
|
|
BLAKE2b-256 checksum How to use checksums |
32af1a19b1887633ec091c526f9710f7e5861c9a763f5975282022199a7d46bf
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
| Download URL | enhex-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl |
|---|---|
| Size | 496.9 kB |
| Tags | Linux musl 1.2+ x86-32 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
97a51b12766987302d77fb20e43ef96ba86ee59237f690ed3187d1af5f673676
|
|
BLAKE2b-256 checksum How to use checksums |
80d000dfe5df3385eee16752f394200db98282170c5ebe3b0d5096ad3cdd7dfd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
| Download URL | enhex-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 536.1 kB |
| Tags | Linux musl 1.2+ ARMv7l PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
1efc7ad7d51b1325a7e1f95b6932321f2ddb932c86690f4ecb97c66b664efb08
|
|
BLAKE2b-256 checksum How to use checksums |
575a2c8dd419c198ecbbe8c5ab7052d270d8cff39dcbfced756d0bad73618661
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | enhex-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 260.7 kB |
| Tags | Linux glibc 2.17+ x86-64 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
dcbb0d1dd6f33366fe39a51bbddeff19c3c23b25f3d60578d8c5b0d0f3a577bc
|
|
BLAKE2b-256 checksum How to use checksums |
e4b351c0b0cafb4a379020971be9a20f2df5a6b732a919289c3c1053402202df
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | enhex-0.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 261.4 kB |
| Tags | Linux glibc 2.17+ ARMv7l PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
8d8ef3cadd9f9c2c5df5f7732063f0a8f5a356dcac4cec4677ae5bf387992502
|
|
BLAKE2b-256 checksum How to use checksums |
59a3ca3d135d56734f570d4bd5d1643e6fd597d2b823833077dba9f5925390ab
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | enhex-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 257.8 kB |
| Tags | Linux glibc 2.17+ ARM64 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
dd38ef0df784d340468a972bfd92e03402315ce1bad3632b54ec0778cb2265af
|
|
BLAKE2b-256 checksum How to use checksums |
2109c3a06287be6b5723a6a9fd731322d7c651bbafbc66fc3ebfc5f93ab44d2a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
| Download URL | enhex-0.3.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl |
|---|---|
| Size | 276.9 kB |
| Tags | Linux glibc 2.5+ x86-32 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
abaef1cdb065d4f6854e9b6cf429e6d5ad41ecb0610174fb43ebd3f57cfeaf1a
|
|
BLAKE2b-256 checksum How to use checksums |
5e2ba19f54874458daf17a92b15a39b9fc5fe87f1f77b84d3323aa3f23fb9a91
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | enhex-0.3.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 256.4 kB |
| Tags | CPython 3.15 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
c1bb4a8b0a14984b4a9caafb41603bb84958239ae66335c244e0ab27316ac311
|
|
BLAKE2b-256 checksum How to use checksums |
0ac3b1e5805703751fd3e0ffac99503b6ced54dce9fcf38b63fec672bcf7f4b6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
| Download URL | enhex-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 459.5 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
dfb1b348a20755d95eb3d67c5de933b666bae7fca4b1e2fcc0408c1fd9211707
|
|
BLAKE2b-256 checksum How to use checksums |
a7c310aad5798e85a8657ae17af7fae6da7d5b747ac5cc4d82b8b84994d32bc9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | enhex-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 256.5 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARMv7l |
|
SHA-256 checksum How to use checksums |
94bdc78a6dddcf4a43b4c163e2d0468aeef18bc0fe91260b288dc1545ad6b93a
|
|
BLAKE2b-256 checksum How to use checksums |
4206e54dfb9487bce21cf35e56a2fb0679d6e7b26729dccb217a3509e37b7419
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | enhex-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 251.7 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
04b7058d7a40c7425ca787e58d99ba99f1786640f089f919f9ad281382a7acc4
|
|
BLAKE2b-256 checksum How to use checksums |
36b2f891c6d72c741953c13cc7c7a6051847d85bcd01f5926c9745754008a3a3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp314-cp314-win_amd64.whl
| Download URL | enhex-0.3.0-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 124.0 kB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
47f0c5fc3b1c7d69e8c32ae0d981ea0fad305944c262c97c55da728888d211f1
|
|
BLAKE2b-256 checksum How to use checksums |
2e3ff36576178a2a2dc39c4b263a90bbd1e83d8de887feb8431f87da7eda71f4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp314-cp314-musllinux_1_2_i686.whl
| Download URL | enhex-0.3.0-cp314-cp314-musllinux_1_2_i686.whl |
|---|---|
| Size | 493.0 kB |
| Tags | CPython 3.14 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
686303aeffa18efe0a568f507bbb87eeb512f3dfd619e456cb2c35428c14fbf2
|
|
BLAKE2b-256 checksum How to use checksums |
18a7edac1655c9f0f017efad9f4419fa76797510166dfae30f267d709b41602a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl
| Download URL | enhex-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 533.4 kB |
| Tags | CPython 3.14 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
aeacf170961010eb3eaf78301f63a33a65455c81ed08eede7a6dff439d9246e7
|
|
BLAKE2b-256 checksum How to use checksums |
f110699cdb7298a0359e318f3aca36c9ab00cb830b663244c23cde8908fd6e69
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | enhex-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 256.5 kB |
| Tags | CPython 3.14 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
b9ac4d80315d281cefbf47984b5b9f49065b9b01e039749e6e74d61d4539f38b
|
|
BLAKE2b-256 checksum How to use checksums |
76034f8b9f0ef9eab89fa3e6aeb73d5f8b5faf614ef9e26c72f94592c2f95e1f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | enhex-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 253.7 kB |
| Tags | CPython 3.14 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
e3480e80f474558647336aaba3e784e36bb650a6cd412381f62a878cf3c96b49
|
|
BLAKE2b-256 checksum How to use checksums |
56c302ca040c70f20c8093cffd5908d1fc37dea949165f13bfd1e07afe87870e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
| Download URL | enhex-0.3.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl |
|---|---|
| Size | 271.5 kB |
| Tags | CPython 3.14 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
b106b14ae2a74eb5c2adbf1215be6f15b518a1827499c06cbaa6b490f26db13b
|
|
BLAKE2b-256 checksum How to use checksums |
cd64adb4ce1844acc0eddb259da8dfad228a76ecafd22429aa695a823f99ba6e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
| Download URL | enhex-0.3.0-cp314-cp314-macosx_11_0_arm64.whl |
|---|---|
| Size | 225.5 kB |
| Tags | CPython 3.14 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
fd98019a38ec536da949636135f8203c44f763fb02f2eaa00df6a5dd2828b863
|
|
BLAKE2b-256 checksum How to use checksums |
6861fe01e5b9bec9fcb9065ceeac3390a58b566e5114116c2a3fda16db926c43
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl
| Download URL | enhex-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl |
|---|---|
| Size | 227.8 kB |
| Tags | CPython 3.14 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
f6e36cd61d570b71d099371239274308a1b164a608d9ffdd236c5436e6bde840
|
|
BLAKE2b-256 checksum How to use checksums |
777804472393b4f71dd99ceeb3f00bce766f8f4aed1c4968775b858985174767
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl
| Download URL | enhex-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 459.7 kB |
| Tags | CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
2671b9e736b983b59b0b76dc504ba50e2dbe25516c28092508dbd2cec6f93ad8
|
|
BLAKE2b-256 checksum How to use checksums |
b07c9b4158ee9b3c2cb1427ab16b88db79f191a59d538e6c7ac89307aa756f9d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl
| Download URL | enhex-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl |
|---|---|
| Size | 492.7 kB |
| Tags | CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
973f66e3835e2beec1a51710f7bfaebac2ae07e8424546830aa0cc7ec8ae2f9d
|
|
BLAKE2b-256 checksum How to use checksums |
93772f1bb638e21ad0b348016b861f6f1d1027dc340ebb68fe71e39da209314d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl
| Download URL | enhex-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 532.2 kB |
| Tags | CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
59387c0eeb4592a96b843d7af2e72232e63109f7f874290de8767848ffbde1b5
|
|
BLAKE2b-256 checksum How to use checksums |
ac16544cb90f2e25631bb27b48fe90b523fd95ad9969349cf5420314e2878f6c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl
| Download URL | enhex-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 427.5 kB |
| Tags | CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
3079a42b7f3c0c560137ca277786e5293ce64791e2d495b8108333695461eeca
|
|
BLAKE2b-256 checksum How to use checksums |
ceeacea96eb408a3ee7a97d92b5e8e94f741002858beefaf20b76a9eec84b950
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | enhex-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 251.7 kB |
| Tags | CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
ac7a6c38babedbb3da711acbdca139ff5a8e53fe23281f64987f2ee6bd471e86
|
|
BLAKE2b-256 checksum How to use checksums |
aec8f4238a18c0d55f11ef64bdc4d385a3294595a543694589ca016434b52b01
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp313-cp313-win32.whl
| Download URL | enhex-0.3.0-cp313-cp313-win32.whl |
|---|---|
| Size | 119.8 kB |
| Tags | CPython 3.13 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
dd0f7ba67794550618764488aa66378875f2f4610acfecb3e60e595660301762
|
|
BLAKE2b-256 checksum How to use checksums |
292580f7d09113b8660917a9dc2eb03de980fa50951ac8df9c5cff9be4e32e77
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp313-cp313-musllinux_1_2_i686.whl
| Download URL | enhex-0.3.0-cp313-cp313-musllinux_1_2_i686.whl |
|---|---|
| Size | 492.8 kB |
| Tags | CPython 3.13 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
dc8844c7ba5cdeda03c2a311aac969bb03874d8c760670e2fa00460b6701095b
|
|
BLAKE2b-256 checksum How to use checksums |
a99f4d5f446d2e3583631e4cc2e36b3ee15cc500aa9cafca49254cb41c9e857d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl
| Download URL | enhex-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 533.3 kB |
| Tags | CPython 3.13 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
f7185dd4e762eb51ec9413ee0b9039ff57a10139ffffc30dc6391d04dadcbf6a
|
|
BLAKE2b-256 checksum How to use checksums |
d4c6d59db0490d0cc64053a8665f6e6339b5b8626a2037ba94a3b02f0c0c9272
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
| Download URL | enhex-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 428.1 kB |
| Tags | CPython 3.13 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
e87ef82ca5de6e59ad87c6aa34089347e0feb5ccea43fcf6791cfd6e43a69ef6
|
|
BLAKE2b-256 checksum How to use checksums |
c0d845e47fa32877d7fe3ac7cc3cb3bdbd603525b9d3727bc661ded0c4ff311a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | enhex-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 256.5 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
83de78880b10e6695fbc0dc14a1d5df3ade37db6a2f42cd46aa507ea7dfa7d95
|
|
BLAKE2b-256 checksum How to use checksums |
341e032db0e6a8e089025d6292617a8bcc2f7e3797dd620ce252b5c44236e2a3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | enhex-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 257.6 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ ARMv7l |
|
SHA-256 checksum How to use checksums |
f1d1dc06b328433d9bdfe6d584dcba80dd36a7b4734c27bdf063306235cb9f13
|
|
BLAKE2b-256 checksum How to use checksums |
36c5249dda2e96605804ca95a757930aff5314e9d9b4c8252a2a7357a7917bcd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | enhex-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 252.8 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
3faa08dc09321a2d623417468dbee4e60b15402f1acf29b3cd86ab0931d8d1f6
|
|
BLAKE2b-256 checksum How to use checksums |
eee5566b758164fcdd0b478f6b7878386990722338706ac42a14a89582814421
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | enhex-0.3.0-cp313-cp313-macosx_11_0_arm64.whl |
|---|---|
| Size | 225.5 kB |
| Tags | CPython 3.13 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
e29c1d14163cb821c32924f118b66dd80c567525429f07b7bde61d2640be3d3e
|
|
BLAKE2b-256 checksum How to use checksums |
6bb885aca514b017726b1370b59819452e51f8b56b70f060c3c722e7c136a6cd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl
| Download URL | enhex-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl |
|---|---|
| Size | 227.6 kB |
| Tags | CPython 3.13 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
3e5451418925474926ee8e84f2cec0c90c6e4081968ecbcd0091ce52eee393f8
|
|
BLAKE2b-256 checksum How to use checksums |
9fb9dc9050b3b7c050d1d5578f4319edb1d530496e96b1779be5cd9b2a0e0571
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp312-cp312-win_arm64.whl
| Download URL | enhex-0.3.0-cp312-cp312-win_arm64.whl |
|---|---|
| Size | 122.1 kB |
| Tags | CPython 3.12 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
e19594ba21e3f7768902b1a04b508f6226914e52ce0c9794d78ea09983cea6da
|
|
BLAKE2b-256 checksum How to use checksums |
815f5e5741f171c4f1955ccd3087456ba142250351a95984bb291ce51efea167
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
| Download URL | enhex-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 459.5 kB |
| Tags | CPython 3.12 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
7ecde417e77286d3db6e63f83bd217e9133b13945ec65ba0ca77f56ed34bad2d
|
|
BLAKE2b-256 checksum How to use checksums |
453a924d49c96d1f8a08ea5b6cf03c0cb18dce3aa28e8037f0b79b16948ae4db
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp312-cp312-musllinux_1_2_i686.whl
| Download URL | enhex-0.3.0-cp312-cp312-musllinux_1_2_i686.whl |
|---|---|
| Size | 492.8 kB |
| Tags | CPython 3.12 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
ef938e2e96f9344d208c0c7a2af277a0b08aff0724d26e8810cd1621884a9f42
|
|
BLAKE2b-256 checksum How to use checksums |
38684b434344adab9e2dc34ce643931d4d872b4a0ebacf14a8eb1c2678d4872e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | enhex-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 256.6 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
0ef183f452c5679224be92bece92fadbc31fb5fbda010d1b5b82cccd42faa03f
|
|
BLAKE2b-256 checksum How to use checksums |
991a57dd8be642daa9f617ecbd6e3108fc520dd2abdb505fc88670a02ec8b844
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | enhex-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 253.0 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
20c6e615300d114a582ea8e6e5a25ef7f35ed572696f4c0436687a22cc9d485e
|
|
BLAKE2b-256 checksum How to use checksums |
e071fce2ed544e166ba27e02bffa94c89062fda5c9de8168b4ea5fc8af0a6745
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
| Download URL | enhex-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl |
|---|---|
| Size | 271.6 kB |
| Tags | CPython 3.12 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
28bc7beb89d105b4f6b8902721c798136be971f91ec91470f862f31e74d60044
|
|
BLAKE2b-256 checksum How to use checksums |
f7f4ec13e0fb38ec1435c9ee1f16438dcab993d0c7e70a3cd43307a15d72c208
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | enhex-0.3.0-cp312-cp312-macosx_11_0_arm64.whl |
|---|---|
| Size | 225.5 kB |
| Tags | CPython 3.12 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
e9a5b47d6dc5f2c9895428355b188467aab0855f57d86e3f0b8cf97865c52367
|
|
BLAKE2b-256 checksum How to use checksums |
2ce65bd3bfa253428871f57aa99274f1e54e66ff2baae6e4a0637be0830c181b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
| Download URL | enhex-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl |
|---|---|
| Size | 227.6 kB |
| Tags | CPython 3.12 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
5c2d887704e21b8706b994b30bc3d624c9f591d06386d514f6e087c98facfa35
|
|
BLAKE2b-256 checksum How to use checksums |
b4eef0606c50526426fa7f91fb9395fa3e7a4305ad8eabd5309c4b4c675913ca
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp311-cp311-win_amd64.whl
| Download URL | enhex-0.3.0-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 125.7 kB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
794989e8113e0030fa68ad41ee6e1f5243be317f724691debda90ccc2e1a0fb9
|
|
BLAKE2b-256 checksum How to use checksums |
43218a2a228b37bb3f2316b7b966171628c2a98483468c7f30acad01a61a7b01
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
| Download URL | enhex-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 461.6 kB |
| Tags | CPython 3.11 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
40ac69e2f6c8c134dd7468588db8117125a4e45ee6c791eb1ba66b145f2432b5
|
|
BLAKE2b-256 checksum How to use checksums |
4e641215feb3f62eb5f7d5f7333aeab7875edb6e554e311b0f789948dd838015
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp311-cp311-musllinux_1_2_i686.whl
| Download URL | enhex-0.3.0-cp311-cp311-musllinux_1_2_i686.whl |
|---|---|
| Size | 495.0 kB |
| Tags | CPython 3.11 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
89846f5a82b18fd76bc5261571a7b752f77d7360993c6cf8b7ca21a603ae1298
|
|
BLAKE2b-256 checksum How to use checksums |
a96c68d257a72ea98168340957794e91b8f57c4c54cc2e629374e98df972db1f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl
| Download URL | enhex-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 535.0 kB |
| Tags | CPython 3.11 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
c9da80072a74e4878a63e060fff2359d626dede89c528f919d6b563d18ef9409
|
|
BLAKE2b-256 checksum How to use checksums |
d4f9817beeb09b9adf85b57afd0512c31c1da2e56c8431b7b8cf3b295b0eb7da
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
| Download URL | enhex-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 430.9 kB |
| Tags | CPython 3.11 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
4f5556ec618c94a70eec27e7d2eda03f8a3ed4664c350837a288b33103b7209a
|
|
BLAKE2b-256 checksum How to use checksums |
73e5b139453d89b00c2fbbe7a433371a2a7f872a3d7f4be5168cbd871ce1e1fa
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | enhex-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 259.3 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
de44fadcf95b8c413243c7aa16486cd1453185cd2430611bbf588c127afc1146
|
|
BLAKE2b-256 checksum How to use checksums |
b1f9a630d2f3a6c9dc0a511d6df106c9d38594d36ebde6dfab0853b33e34ab38
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | enhex-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 259.8 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ ARMv7l |
|
SHA-256 checksum How to use checksums |
a3dd00f44b5f575c209524e6a7ceded38f37337697b7720471134705c0113cdd
|
|
BLAKE2b-256 checksum How to use checksums |
7be1311026f1efc91d25bf088be743c3c6d762d4c0cc1aab19ec03b079ba6ae7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | enhex-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 256.3 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
db8b9d8a1ed36caa8d044f55ccfa5262e1d99f7f9e1de5cf6be3616a2a2fd460
|
|
BLAKE2b-256 checksum How to use checksums |
b68b6a303fa8bd36f11221dd7d625716a93852ec61e385ce61125f06525b42a6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
| Download URL | enhex-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 431.3 kB |
| Tags | CPython 3.10 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
8831dc581cec9a0705534d26945a769a639a4fc68d205740e90347ea988365dd
|
|
BLAKE2b-256 checksum How to use checksums |
f7c867ed80b360400303d30416e3e85cb71304634b5f250f8ccb2eeb3e16d1df
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | enhex-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 259.4 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
03a4aba423e347968c76aaa1e678b83829653bb54b32073c4edc6cedf8f743b3
|
|
BLAKE2b-256 checksum How to use checksums |
ca485b300765b1b988fc7ba8e9615eedc32efe428b5c13924093f8b366f45c20
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | enhex-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 256.5 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
00e6fe67f605c3546e3b350692f6f88e3ab4c76bc4f74a862f7be3e81336f147
|
|
BLAKE2b-256 checksum How to use checksums |
864f63fb022c00aa39639c14dc0ec70947fe3f597eb8952b11beb0fd6f93b568
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
| Download URL | enhex-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 461.6 kB |
| Tags | CPython 3.9 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
d7860660e9c37a592565426bc7c7abb92a9180d9360ac3c8bcb76d4e35362f2e
|
|
BLAKE2b-256 checksum How to use checksums |
008487afc6876081b26f7a54bf130416156a78b0ffb39e7d4015be8a93d5e3b7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp39-cp39-musllinux_1_2_i686.whl
| Download URL | enhex-0.3.0-cp39-cp39-musllinux_1_2_i686.whl |
|---|---|
| Size | 495.2 kB |
| Tags | CPython 3.9 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
ab6f49305b1bb17b91f029a6782fdb6a0e3bdad9730c6c2d3019eb482ca8404e
|
|
BLAKE2b-256 checksum How to use checksums |
19a7be906cf1a28fe6be70980501e20670d69231e68d9367ff017d159127a4de
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp39-cp39-musllinux_1_2_armv7l.whl
| Download URL | enhex-0.3.0-cp39-cp39-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 535.2 kB |
| Tags | CPython 3.9 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
c6b06c248045ea6e159d298b12b3b42ba027649e335f2fae46266e0d12926bf3
|
|
BLAKE2b-256 checksum How to use checksums |
905d072a7c0094fc15c5dac295b0354760f95441cfbae9ff1ec541a611162f94
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl
| Download URL | enhex-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 431.3 kB |
| Tags | CPython 3.9 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
e6d7ad8e77d19b9a980740123aec8f971ae76aafbd743277c66d2cb8f6087977
|
|
BLAKE2b-256 checksum How to use checksums |
ebf96b0e199f5c832e4db21cc7a03d6f77d7c9ea96fe22dbb45649b6e816f594
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | enhex-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 259.7 kB |
| Tags | CPython 3.9 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
be49edc70b10f11815662a56e122feb4f12d33afcab1020a7aecb05c595e3cca
|
|
BLAKE2b-256 checksum How to use checksums |
7131a537f2276996b6428df5e2c6ff98db656e483d8930878ae84d48b8df21b1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | enhex-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 260.3 kB |
| Tags | CPython 3.9 Linux glibc 2.17+ ARMv7l |
|
SHA-256 checksum How to use checksums |
9192e7e8fa95efcecb120849c533b943c13918098edc30643cd5c4a8c735dcea
|
|
BLAKE2b-256 checksum How to use checksums |
6f5c588a176ee056e64f315c541db328a9cd28d3ed312d0f67d36d54f6386a24
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | enhex-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 256.8 kB |
| Tags | CPython 3.9 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
8ea747eb5adeae0962aef92ebc79c668cefcbf20f65a280d717aab2c039b811d
|
|
BLAKE2b-256 checksum How to use checksums |
8775503b28d966d8986308e9f21dbeaa6a343c22c8325f3c2588b868fc4b4d32
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
| Download URL | enhex-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl |
|---|---|
| Size | 275.0 kB |
| Tags | CPython 3.9 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
7aeafa3aea37592615bb56bce0b4fafef78b7b3c127cfd36c860b0254bbc8e25
|
|
BLAKE2b-256 checksum How to use checksums |
c872d7320f68b819bdf2f22dd74f298c8de66bf14e524a8e9cc665d72d3ed62e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp38-cp38-musllinux_1_2_x86_64.whl
| Download URL | enhex-0.3.0-cp38-cp38-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 461.8 kB |
| Tags | CPython 3.8 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
92418b79c9f86d218de890eb9f6bcaf5a7f6a86391b6dbd0724f43ee8fa080a7
|
|
BLAKE2b-256 checksum How to use checksums |
05afc238957e1b9b64c65e141580b5081bd6fdc83bd91d846b62e6ec74e4ff40
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp38-cp38-musllinux_1_2_i686.whl
| Download URL | enhex-0.3.0-cp38-cp38-musllinux_1_2_i686.whl |
|---|---|
| Size | 494.9 kB |
| Tags | CPython 3.8 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
c1ca910c89e3a0f440c2a09a3017b02b14b09bb1a7532804c27574294334d4e6
|
|
BLAKE2b-256 checksum How to use checksums |
92f5904785fc2989b8192475a84ac77f9347dc08dee7989163fcac5721bd3738
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp38-cp38-musllinux_1_2_armv7l.whl
| Download URL | enhex-0.3.0-cp38-cp38-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 535.2 kB |
| Tags | CPython 3.8 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
b6c0cfcb20e11fd06264d3aa5282f78d72b52600aaf578cf9612e0a2b35b2ac2
|
|
BLAKE2b-256 checksum How to use checksums |
eefd568dfe0619932742f7772b47bf9a95086a2b5caaa3a2ff85c449fc61a2e2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / enhex-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | enhex-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 256.7 kB |
| Tags | CPython 3.8 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
46a07cc7f224513fbce734547bfe12ed0c853ad4b2203891b4e8486baa0ea5cf
|
|
BLAKE2b-256 checksum How to use checksums |
88f612a09b06c68179f784647b8ccc069cc30c7d845b352ad81f9c555e292188
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|