emval is a blazingly fast email validator
Project description
📬 emval
emval
is a blazingly fast Python email validator written in Rust, offering performance improvements of 100-1000x over traditional validators.
Features
- Drop-in replacement for popular email validators like
python-email-validator
,verify-email
, andpyIsEmail
. - 100-1000x faster than python-email-validator.
- Validates email address syntax according to RFC 5322 and RFC 6531.
- Checks domain deliverability (coming soon).
- Supports internationalized domain names (IDN) and local parts.
- Provides user-friendly syntax errors.
- Normalizes addresses.
- Rejects invalid and unsafe Unicode characters.
Getting Started
Install emval
from PyPI:
pip install emval
Usage
Quick Start
To validate an email address:
from emval import validate_email, EmailValidator
email = "example@domain.com"
try:
# Check if the email is valid.
val_email = validate_email(email)
# Utilize the normalized form for storage.
normalized_email = val_email.normalized
except Exception as e:
# Example: "Invalid Local Part: Quoting the local part before the '@' sign is not permitted in this context."
print(str(e))
Configurations
Customize email validation behavior using the EmailValidator
class:
from emval import EmailValidator
emval = EmailValidator(
allow_smtputf8=False,
allow_empty_local=True,
allow_quoted_local=True,
allow_domain_literal=True,
deliverable_address=False,
)
email = "user@[192.168.1.1]"
try:
validated_email = emval.validate_email(email)
print(validated_email)
except Exception as e:
print(str(e))
Options
allow_smtputf8
: Allows internationalized email addresses.allow_empty_local
: Allows an empty local part (e.g.,@domain.com
).allow_quoted_local
: Allows quoted local parts (e.g.,"user name"@domain.com
).allow_domain_literal
: Allows domain literals (e.g.,[192.168.0.1]
).deliverable_address
: Checks if the email address is deliverable by verifying the domain's MX records.
Technical Details
Email Address Syntax
emval adheres to the syntax rules defined in RFC 5322 and RFC 6531. It supports both ASCII and internationalized characters.
Internationalized Email Addresses
Domain Names
emval converts non-ASCII domain names into their ASCII "Punycode" form according to IDNA 2008. This ensures compatibility with systems that do not support Unicode.
Local Parts
emval allows international characters in the local part of email addresses, following RFC 6531. It offers options to handle environments without SMTPUTF8 support.
Unsafe Unicode Characters
emval rejects unsafe Unicode characters to enhance security, preventing display and interpretation issues.
Normalization
emval normalizes email addresses to ensure consistency:
- Lowercasing domains: Domain names are standardized to lowercase.
- Unicode NFC normalization: Characters are transformed into their precomposed forms.
- Removing unnecessary characters: Quotes and backslashes in the local part are removed.
Acknowledgements
This project draws inspiration from python-email-validator. While python-email-validator
is more comprehensive, emval
aims to provide a faster solution.
Getting Help
For questions and issues, please open an issue in the GitHub issue tracker.
License
emval is licensed under the MIT License. See the LICENSE file for more details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
File details
Details for the file emval-0.1.3.tar.gz
.
File metadata
- Download URL: emval-0.1.3.tar.gz
- Upload date:
- Size: 27.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7ed6188c00acaffa6ccd3125c752fa4a64c0f1045bfd628fea5add156928f500 |
|
MD5 | 3e5408f83b60c6910fd70906d5cde9fa |
|
BLAKE2b-256 | 437b612777d09fad7bf0f443f7e2ad184d742cfb7cc1157cca5be82f45e5d1c1 |
File details
Details for the file emval-0.1.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: emval-0.1.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8788d72ca8fba422225fbf2f3e47d1df277d745a04b619c38d0bef0dce652603 |
|
MD5 | e4f9857b3505ab01fde78018e35ba296 |
|
BLAKE2b-256 | 4e0c56d3b5bfd394617bc599d22196e5365eb1c379db56e38a0f26dcc709325d |
File details
Details for the file emval-0.1.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl
.
File metadata
- Download URL: emval-0.1.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 132dc8bf3537af9d9a8637c5a6ff4cf1940ef435974c6b8a639066ee7fd20498 |
|
MD5 | 4ba29a58d10040247cdcedbcffab6ac5 |
|
BLAKE2b-256 | 6eeae493c0ce2cb87e9efcea5a22ae51d95377f265b6f3e711066834da9a1516 |
File details
Details for the file emval-0.1.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: emval-0.1.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | acd85da202efd280e1a386310c88042dab011fdf03adb41aa7d6d990103c77ea |
|
MD5 | e686f53a23e4967ef1d592cb801334cc |
|
BLAKE2b-256 | d068a319ac59eead7f701a1367a53e2c34c374be2715928051bbd8939eebac74 |
File details
Details for the file emval-0.1.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: emval-0.1.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a3340f3a7fe777afc839ae18ea41286766a0ea888d3a1722e448ce9f3e196243 |
|
MD5 | 7af5dec682c394cba0eb4907325ec748 |
|
BLAKE2b-256 | 471ed8d4dbf6bba42da85b9b910d5c3c3bd7460e46f3d10ed5a69d91fe3ddae1 |
File details
Details for the file emval-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: emval-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8aab3c891c83e1f55ba11e224405ba0930702f32a23fd0221f9ea50bc7c95cf2 |
|
MD5 | d4a72c26bd8fe20ee145944b8b632892 |
|
BLAKE2b-256 | b34e297b1ccf831afd8ea97d4750f1da77aa8ee95a0bf750807f5d3782ac1a9e |
File details
Details for the file emval-0.1.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: emval-0.1.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bd61e97fb1c3337bc71306d2ab6a54e0e609a8ab52ca47256039461988cc62d5 |
|
MD5 | d59c54ce4c81b88b56b963b97e701230 |
|
BLAKE2b-256 | 623326be23da91e31d11050dbb751eb0c2bddc49bea41c364cd4616b471bb6c4 |
File details
Details for the file emval-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: emval-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c97183a3c78f43f3aa13e8a89a1ac55bd29ee8d2ec413a52b76ac0d77868cc06 |
|
MD5 | 7b5a7a6699799ce58da228f5426b8f93 |
|
BLAKE2b-256 | 216a0f99ce88d72e60a024d9ae4a369fb9d6e0a7d69298ef41345cf8118bd8d4 |
File details
Details for the file emval-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: emval-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a9246c57649e993e22356089b3692eb316cc189bceaa6c2c246239e7c6684f6 |
|
MD5 | c115decd4a722f33d0e7dcc2a58afad0 |
|
BLAKE2b-256 | bb4a9b4d7a5e23045dffb9800d083a7e133ea5375c541381b8e8d5c62d0710d7 |
File details
Details for the file emval-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: emval-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0eea67e033c6290d3331b344ff751b4b7b4914cab779ebf61b650047a5a7caac |
|
MD5 | a5122581068cf0ac8027bc56a99c22b4 |
|
BLAKE2b-256 | 1cbb22e1072bf5371f847b6552a3e846385b70bdc77012624a671cc800737fd3 |
File details
Details for the file emval-0.1.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: emval-0.1.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1cdd05e5de0598d0eb3a8529bb6d51281032eb9e2938cb98bce6d6f10c5a8ec8 |
|
MD5 | 1cfb01b63c21684a4fc10a643830f1d2 |
|
BLAKE2b-256 | 277fe2711a5143fbded46187ded12625417fc0e60b334524372bb25d37a7dd77 |
File details
Details for the file emval-0.1.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: emval-0.1.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 21f86837a4cb8a78ecdbbee606a9b6e80d69225bd691e3b416702176bf98f446 |
|
MD5 | 8ad41aff1a60351267f8c9116bbfaebb |
|
BLAKE2b-256 | d7cd2b5866128f672d7d2bac322790470be0e0073318392555c000339179265b |
File details
Details for the file emval-0.1.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl
.
File metadata
- Download URL: emval-0.1.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9f9bd279bf3d938202356e71978eafde236b5bf66ccd6e5d7ca817219be963ed |
|
MD5 | c9082e39884c0f74d91a1615aed273f7 |
|
BLAKE2b-256 | bab3134c89227275c7ec3aebeb51c4bce546f3f4d5d3dceb36221bd6621583f0 |
File details
Details for the file emval-0.1.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: emval-0.1.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0b5d741b584f25aace0c05f917a06254d510e0499e34f8eedc898a6ff2c67ed6 |
|
MD5 | ad6dfc3b267c16a7a32a0c2f514227bb |
|
BLAKE2b-256 | e8ae327fea989048835f4146997f09ed1bc9627c963a361d55a893424e3633e7 |
File details
Details for the file emval-0.1.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: emval-0.1.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8f189c8692354f7060b90590051ff397798e1d58c95bff6a3a0ea60e63dffa01 |
|
MD5 | 588feafbd74decdc105365570c5d47ac |
|
BLAKE2b-256 | 0e88ced2ab15698dbea5a31f9eff1ab0373f093222d3b55ff7208e5d52097d71 |
File details
Details for the file emval-0.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: emval-0.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ea3c3ad4406facff0a57a0d16c16e8f1d2d8bb5f3bab13841d4a2f3871bc3bce |
|
MD5 | 0371de0cfcc59ca6a889468b3b72553c |
|
BLAKE2b-256 | 31810de99b0fdbed28962ac0d1617572ba3ecee4071ff6e89ab10f04ca9d1dd2 |
File details
Details for the file emval-0.1.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: emval-0.1.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ca9b1cd2994ea6c7a8c0adf8386b34b56bc58cee0b3ac1d9f49f46278aab4a3c |
|
MD5 | 170c0c88ce7a4ba15363b48fa632bf4e |
|
BLAKE2b-256 | fdccf218ea6681217a374d24b80354a6d9f85b353c7b2173daacc549c589593d |
File details
Details for the file emval-0.1.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: emval-0.1.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ecce6f91f57cf18a28bf3ec676bea40b6e8caee83252579532db85e612ae3fa9 |
|
MD5 | c24dbc3811e92803168e8c8ab316bf7c |
|
BLAKE2b-256 | f06e536e08492eac2b670cb10dacf83225ff15b23df632a661ee040ba022be92 |
File details
Details for the file emval-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: emval-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0fafbf6a874aa6a83d58b4d66669a4bdbd3db8c03bb13395e653391c098ac560 |
|
MD5 | 8b8a997e5f5b5681c29d7949fd3898ab |
|
BLAKE2b-256 | 9cd4ec48e1aaf1a00460388a9343b9446c85fb75f8b1a1269a73f23a770b0551 |
File details
Details for the file emval-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: emval-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 51506b02d537002fa09ea3f06edb8999d4e6901799a2adab22d8f1ed4a008ac0 |
|
MD5 | 862ed0e4d4d83309f51e96533a051c83 |
|
BLAKE2b-256 | 50b721821eb52b929b3fa388ea530769e2a9be2b753ddfe3644229b6a8d1d99c |
File details
Details for the file emval-0.1.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: emval-0.1.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5f628e94144fea4a6510acb1bd640abd181e4d9947baa5e8fc0322ce0bcbd1cb |
|
MD5 | 6581af54ab37a8a2cf02f9a8ddd600ab |
|
BLAKE2b-256 | 59af37ae5a385e6a717a042ec3e5c22ce8557fbc6ffa05f62cb1ea6ade8c7261 |
File details
Details for the file emval-0.1.3-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: emval-0.1.3-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1f61f20ad989e133dfdd35df51392542c88d9d7631e9e3e98905a6c2d26ace7a |
|
MD5 | 517463affc48ea69551704825630826d |
|
BLAKE2b-256 | 3d65c8ad402a30edaa19c293afcedc2749397b18561885e1df8779a4835eccd1 |
File details
Details for the file emval-0.1.3-pp38-pypy38_pp73-musllinux_1_2_i686.whl
.
File metadata
- Download URL: emval-0.1.3-pp38-pypy38_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fd1e6aa4277aab1a0708a70fc88ec7401389483332a04d141df820c54ff6626b |
|
MD5 | ae0f36bfa0b249915b2deb644303b38c |
|
BLAKE2b-256 | b5e62fc3daba8a52925f1f3c034a4854a43481898f6cfd993458c12585cf75b3 |
File details
Details for the file emval-0.1.3-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: emval-0.1.3-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e4d7d8d41436d921c1048bba9e3105c49a62345ee277a0a93b95623760586491 |
|
MD5 | c0653521d2b32edc37e161b0459c2fc1 |
|
BLAKE2b-256 | 11de41f01358b602db91d5b46af2ccb6d9d01009ded9a8536af612777e289fbe |
File details
Details for the file emval-0.1.3-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: emval-0.1.3-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8acba59480be6069e398d15ab32964caad283325409d44bdc96399d6b649c600 |
|
MD5 | ee82147b50aa376eed8e5a6f581af22c |
|
BLAKE2b-256 | 2c3f39b8738b16a6e3b94bbbdd8eacc87f22d58e3003b72a3aa6d49e3075b8e5 |
File details
Details for the file emval-0.1.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: emval-0.1.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1ee954d031f56c5c3a4f135bac71cdf96008925e179eb24fabc1e90a154e003b |
|
MD5 | eb3df930eaaa609736664af92447ac21 |
|
BLAKE2b-256 | dea6b4c00396c76b5dcfd99ac1a216b60fad684b85a977397c0af55468bb416f |
File details
Details for the file emval-0.1.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: emval-0.1.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2173ba1fba27e2fec0c580828617a0a2fea7d807047d50bc52df9d94c03e249b |
|
MD5 | fe7885815bd6c18efcd60ae14d8c9439 |
|
BLAKE2b-256 | 87431a996f815e1d5da619a00df99e031ebb227f61d15e505c0a74d5474ad62c |
File details
Details for the file emval-0.1.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: emval-0.1.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c443b3546db38ab2c306fb2ffdfb4e2b427a53968efccec0fda21783a484c53f |
|
MD5 | d82039cb3f118640cd1a3b621fa7f05c |
|
BLAKE2b-256 | 33bc23f5c298192095eab6b5fd5826f13c5c409b8c994e924cb411c818951cc1 |
File details
Details for the file emval-0.1.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: emval-0.1.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 444a084bec08668b89b54ae343a39d10e939b34a3b1d93f7ce1b50d6bad9a2b8 |
|
MD5 | 22fc1f633d67a57d26467c8a7b47f279 |
|
BLAKE2b-256 | 94e3f0516c9e03478a29a51f16124485984f62f7e3ee0beea242cd4d5dd33042 |
File details
Details for the file emval-0.1.3-cp312-none-win_amd64.whl
.
File metadata
- Download URL: emval-0.1.3-cp312-none-win_amd64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 592f4962ec6f5bd866c28dae535ba71f110e52029ef25e83dbba64ad42038fe6 |
|
MD5 | 8b6f7185033d3215b341842dc365dbb2 |
|
BLAKE2b-256 | e76b68094f7b32e6577edc58769213af59f138c8668b184c9523af1017c3d79b |
File details
Details for the file emval-0.1.3-cp312-none-win32.whl
.
File metadata
- Download URL: emval-0.1.3-cp312-none-win32.whl
- Upload date:
- Size: 947.2 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9f1cb878e98c7e998a415afce419f5f9dec4684cfd7b9bb3ea00bdf95bca5e8a |
|
MD5 | 712f96ecd03d180445ce8eecbe458011 |
|
BLAKE2b-256 | f789c0dc27b0b11e96d3c50cfb69236ce7ad5eac1f6ea39d4bdbc57039fde6fe |
File details
Details for the file emval-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: emval-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ff5f2c539098368cd5faa8e62006323f1183ef370e23667b919582566d0c4d51 |
|
MD5 | 0f8db1247e5ee6d91487febe894b819b |
|
BLAKE2b-256 | 366159bc8c7a6f9d1fde10be80c87f553c3e5b7b56621ca230e2fc889babe0dd |
File details
Details for the file emval-0.1.3-cp312-cp312-musllinux_1_2_i686.whl
.
File metadata
- Download URL: emval-0.1.3-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 86e06096381508bc25f69a4de79feb3967e335e019164dde1e246bcea8a9f330 |
|
MD5 | ba16b75ac0c9aa0b14be697268a96660 |
|
BLAKE2b-256 | 2d00b3b57e716692379e12fb5271b7fddd09d196117dcb235ebc895d12a653bf |
File details
Details for the file emval-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: emval-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f724acde4a6a608bde513e1e720cd3985b8d8b08de6402e035788db09575a983 |
|
MD5 | 66f0a5350ae0ea999f66af5cb28fbd66 |
|
BLAKE2b-256 | 1f1b93d3f5a15a47785e3536fedc1f1f3dcc1933d6b2f823f53c7468b4b0e0d6 |
File details
Details for the file emval-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: emval-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 26b4588af223aec7dbbef65fdfebab63fbdc26eb5a070723ee1535a668464aa6 |
|
MD5 | 071cb9dd7511bcaf77f290e847e91858 |
|
BLAKE2b-256 | 568eddfb5cdd630613dd9597c1182a9fe1d11e5d3b2ac8841a2653092fe0c1c6 |
File details
Details for the file emval-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: emval-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 89584ea515a14ae6b68c7190dc5587f7cd75975354d497d9775482ba3cd053bd |
|
MD5 | c1045da90739a0684df9cc50f07029aa |
|
BLAKE2b-256 | 9772aad87b2b6c246a75f207712612c18e50d3dfecb841acd224894e2b8f2c46 |
File details
Details for the file emval-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: emval-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 623f7b84a538ed17e1e60bbfec74d50801603d54baa3934288d4f447b669a9eb |
|
MD5 | 1149d8899df25f008d1778a133bec584 |
|
BLAKE2b-256 | 4bbda6224c10b0b494a60aeddc3ec46b310720c7981ee413fcac6d0cd4f9f39b |
File details
Details for the file emval-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: emval-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 795fd9a561145dfce61b0c41d7a10e565dc505c63d9f3307fea4bb4f7a02a09c |
|
MD5 | 54d2c3a0ac8ba0dc155a03f9993e8d5b |
|
BLAKE2b-256 | e45aed722b1973abc66ced20f9d78a9293323de7be3a07e9962819e6e41cf381 |
File details
Details for the file emval-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: emval-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6aeb02858b271cf218bdbac1675723067f0dcb59577eab0bbe822fac362909ca |
|
MD5 | dc0a847540321ef8813ea193e8b03ff3 |
|
BLAKE2b-256 | 8fa52d96abc64f1e0e01663c4b7a477aceada81d0b60d5fd829acd8d713b1260 |
File details
Details for the file emval-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: emval-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b75ac49846a21dcafe5bb95e0a5fcec473656c484cfc20aa7410711d0322e597 |
|
MD5 | aa497275fd5b13f053656a380e319d21 |
|
BLAKE2b-256 | 68cb4ec58f67a658cd252bf404efb7cd9309276f23403775c36cc7ef19c1eaf9 |
File details
Details for the file emval-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: emval-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 09c2b892f49e493dde98cd1df4764436a7894e72a9e564ba2fa3f4a47d7c5aea |
|
MD5 | 7351486ac615efb61e7d7e386f7e4f1a |
|
BLAKE2b-256 | 80ea7b8bc0a95254126c81fdd95238a65ecb009dd305f19682888560605401c8 |
File details
Details for the file emval-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: emval-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 95077b8f3f208bae26f87b2461000c31dce79f25599bba631e69f7af286087e5 |
|
MD5 | 1932c31959c434bcc23ca6138adb0ac6 |
|
BLAKE2b-256 | fd73b346a2aa14eebb17f662f6c965f5045b6d9734b92dd32f2ad4a76c434d04 |
File details
Details for the file emval-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: emval-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 219b81e1eef9523ebaf79acad664fc44842db28922b47d865449327debbdea15 |
|
MD5 | 4e47890bfe60f9c1e8d26ae5298f7078 |
|
BLAKE2b-256 | d19ff584f7439803202bbaf84242133aae1e24a9483087be3772ed0ec0b8b161 |
File details
Details for the file emval-0.1.3-cp311-none-win_amd64.whl
.
File metadata
- Download URL: emval-0.1.3-cp311-none-win_amd64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3a7322c0224befdd1d738a31d49498f9a22cb2a44efbee2a8accc3a9b96018fb |
|
MD5 | 8638009223a099e884cee2fbe42c9a94 |
|
BLAKE2b-256 | a47862b813457bc7ee081fb2a589a561822d10f7afbebcae4c5243cefe17e92a |
File details
Details for the file emval-0.1.3-cp311-none-win32.whl
.
File metadata
- Download URL: emval-0.1.3-cp311-none-win32.whl
- Upload date:
- Size: 948.1 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 676a43b62e49cbbeb2224bf7925ff1272a53505fe1a119927d7445144346fc02 |
|
MD5 | 9e428886d24807e67dc8ed8f73140a97 |
|
BLAKE2b-256 | cb013828953deb811f8dcfcf95f60762c8f7f26912b0ffcf940a7d65e1ab59ba |
File details
Details for the file emval-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: emval-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 85bb7a9d03048cd10c2ed2034819c08f206af50a49f3a817d814049877311fab |
|
MD5 | 0cbb055444314a225c521577abd5eff3 |
|
BLAKE2b-256 | 1833a24ad519797e8b2bf86f39f26f49b268580a8c1c49acc35554d6424264b0 |
File details
Details for the file emval-0.1.3-cp311-cp311-musllinux_1_2_i686.whl
.
File metadata
- Download URL: emval-0.1.3-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 93398c178d20b7663493d032a2410f70c05e2847954edde6847d7c9d6ec4e046 |
|
MD5 | f13d83a6bd68f9f684e0306b9dcbdf8f |
|
BLAKE2b-256 | d850313614c24c5480ebf5e4fc51896e7fce30b29d62b055f48fe6b51700ddd7 |
File details
Details for the file emval-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: emval-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 63dc052418162f49493642eb5202e5b74679778543a783ae9e3667b6d9b7fe72 |
|
MD5 | c38c8971d71e779af2bba961a4596369 |
|
BLAKE2b-256 | 41686c5d1b8db59f9766ecb551e22f8efeee57cf5359c2776573d0121802a9d3 |
File details
Details for the file emval-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: emval-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7347fefad7b79579d1008ca84c52b02340aac6a42fe3e70e0446c9cbd050583d |
|
MD5 | d7483572a5ef811d1d2db3062129af74 |
|
BLAKE2b-256 | b76233e38853846a67ff65f6b0bbf290d6f4b07853419cd5f7094ec20e19f137 |
File details
Details for the file emval-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: emval-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d7ccd79564e3d8015fbf8898961913435df6a48f4eb9caf2ae3a23edbc69c670 |
|
MD5 | ddf6c1a17ed034f9655f5c7c0aada6a2 |
|
BLAKE2b-256 | 07884bb744ea3bda4d453d539a501f6b83f8c301dcdb0a15ced0fc9aadee180b |
File details
Details for the file emval-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: emval-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 82bcee4a8554d266e7986f8b6a2f60eeaff4d20db33e084e1a679e79d20b68a2 |
|
MD5 | de3fa99ca1b0d797402778f8bc4dbde7 |
|
BLAKE2b-256 | a375f255e4efea020198f713461ec892153e77bf2c9aa40311c16521f1acf096 |
File details
Details for the file emval-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: emval-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dcc50f5ab09686ceeec6920294c88cef732b2dda15e6d35ecf402a621a5caf19 |
|
MD5 | dfbfa19d979ef17130d4af9f7f4e7303 |
|
BLAKE2b-256 | 50ed451f223ccea037604784298faf20f8cc90b2666345521d72e9d7cd45f089 |
File details
Details for the file emval-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: emval-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 12bb8d13212a6d324c4b2a64fe1edbd4999034a57fdd95f5a5e64458c62fa457 |
|
MD5 | dd53f6e0c077997b6245dec2d1cc369f |
|
BLAKE2b-256 | 7e54a62481fb9bd029e423cf08957166345a2db6840a23686b5db783fb976209 |
File details
Details for the file emval-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: emval-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 60b34080bed4d371d20d96183bc36d66c2e9983eda629b34385d005bcb3ec232 |
|
MD5 | 961bbe17730a535ebc59439b1d59ec2d |
|
BLAKE2b-256 | e2d8bce38f3013a2eb7516cb8dd523ccc1ae96011f887e25964aaf151ce75a80 |
File details
Details for the file emval-0.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: emval-0.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 35b964fe6e4c928bd2df6e337c005625b87379531df678550f86ddc06f98ef18 |
|
MD5 | 20019517c8a6f572d436e9ee0ce63b97 |
|
BLAKE2b-256 | 33af46a4003caddb97e20a8ad12aa1823fc36e523b3767160f0a535622c117aa |
File details
Details for the file emval-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: emval-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 00cc3f5615dabc93a68e6ee335512818b6f48b1e7434b63215ceb16b44554b21 |
|
MD5 | 2a47bd9970034febdb0a5e663844d3e3 |
|
BLAKE2b-256 | 029c6a108b0f19cf63eacd7794d36d04e1c1b5c28ad3bf9a098ef65f5c694ded |
File details
Details for the file emval-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: emval-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 94f2124ba7f0d26b14a801e3cce66f65e686e9bcf253313081c74bdaf7fba7f9 |
|
MD5 | 1ef7fff9e182b883db30e3fe2f827cca |
|
BLAKE2b-256 | ab90a190646b47194933bbbd3216ee0bd4b2cbb8373287af99c4088cc8b9c08e |
File details
Details for the file emval-0.1.3-cp310-none-win_amd64.whl
.
File metadata
- Download URL: emval-0.1.3-cp310-none-win_amd64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ad93516551002d7c2b27a0afd1a7fcd1be6b3d218bce3356e612b6f04e71dac9 |
|
MD5 | 0d285ab382f8875846b83f53d442d783 |
|
BLAKE2b-256 | 356e248d3bcde69d5a78d6e5e65dbddc74ff7d9724999a974d93aa892b02088a |
File details
Details for the file emval-0.1.3-cp310-none-win32.whl
.
File metadata
- Download URL: emval-0.1.3-cp310-none-win32.whl
- Upload date:
- Size: 948.1 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3c86f4634a3a4e684ad16c04e19af37284bb12fa9a16aabfb28cc7542a0a30f0 |
|
MD5 | 4ec5d96298dbdb9809fa8eabfec48cb6 |
|
BLAKE2b-256 | b48afc4b0ea858cc60455e03925d2fc0af78a1513a3f1008a19d1e40cd3f0dff |
File details
Details for the file emval-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: emval-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 79954a14e42fa2a37fb2e692d080769b84aae7a1744b2ff1179b3df85fd69416 |
|
MD5 | 03db362dfc33b644d1f3d5d440554049 |
|
BLAKE2b-256 | eaa306e16cffc327070ae41550f6bf699a45475cca2dc04f289e07295300eb02 |
File details
Details for the file emval-0.1.3-cp310-cp310-musllinux_1_2_i686.whl
.
File metadata
- Download URL: emval-0.1.3-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c502adf1da8fba87bad77aaecd5b0736e3ce1dc91e33848b4d45399b684a5f4f |
|
MD5 | 3bdb098d3b9cc1cf2a65f2c461b2b946 |
|
BLAKE2b-256 | 47c7146bc69ebd56d6d7aa303aa3968d8ff65314c6ce7ec6eb0bbcd392e73125 |
File details
Details for the file emval-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: emval-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 93f551fd5dffca0e2341b1b52cc6cc0842130ec4243c89a4f7c48dd2416aeaac |
|
MD5 | bb47c1b33dfb1b81f8653d3b85b15399 |
|
BLAKE2b-256 | 9ab199dee035ed1802faedbacce7787b3a0d1b0a1be7a89165f8c1cebed93a61 |
File details
Details for the file emval-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: emval-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c195eb0c49e1f49b74db236438c8d78eda7254ef4e2bce8bdbed905befdf6b93 |
|
MD5 | 75ee25d9175e370471b225bd19d8c99f |
|
BLAKE2b-256 | 04ef46bd42f5e65f6f9925e39d953b4f8676cf4e54720115cd3718d90a1824f4 |
File details
Details for the file emval-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: emval-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0cea1444c6338bf6ee4241c93ab4ea42b0b3a06339be12b8fb08697fb381efeb |
|
MD5 | e6df9b23477270f1030df56172e5030c |
|
BLAKE2b-256 | a78976c6bf628e0ce65b1d642cdf410352706b1d70b08a5e571cd712b4915b70 |
File details
Details for the file emval-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: emval-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 58b9ff5c36f75a9bec7387c08ae3f66e3aff79b9d234cebe67833886f7126508 |
|
MD5 | 613324be519d8ccd04d0b01da41fc8b6 |
|
BLAKE2b-256 | 780f93c0153ab37d47bc3e5f79d958509a4f95a7a98349778bcedd9bede61545 |
File details
Details for the file emval-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: emval-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 97d0b6aade815bbfba031584617093c36e5ddd177b0c4629280be68598ee890c |
|
MD5 | 81493e0c431e8edf92eb499a1e2d6de8 |
|
BLAKE2b-256 | 1c613caf6f7f08a2fe38ecf887091b2933e3c6a531f0754013261e5bef1e60b9 |
File details
Details for the file emval-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: emval-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1a632b5b7da147b2f8932e3f702a089fd24be5ba6388fc91323e28f7b03990a8 |
|
MD5 | 5db818af8a59d08a2622d99c25d61c87 |
|
BLAKE2b-256 | 41e3285a4db51febb032a70776f2ad21e4552905608a025580ab810318b385c4 |
File details
Details for the file emval-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: emval-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3594bb7e3e6f8da8d1b15890a37f5991ad250ec3175bcd6fcbac903466f7c924 |
|
MD5 | f96e3a30a85d0bb0e1ade0557487bd3f |
|
BLAKE2b-256 | bc2e64795d4ed14e69cd542615f672b8f2f1eeb64c06d427f5f2d0c31990d93e |
File details
Details for the file emval-0.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: emval-0.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1359cda35e12de92ee28f16f567aad6cfafe75b8fa6bfea2e876891344bfd6ab |
|
MD5 | 065678561b071f071a5b80ec5a38cae7 |
|
BLAKE2b-256 | 7c02c8d524a8ecd5b1595bab3170a8c473594bfeccf23466d91c085310ac567b |
File details
Details for the file emval-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: emval-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 13d6bce427f9d3b0ca7a842121b1cffb3c9b620fce5264dbb7f7ed4f1665cdd1 |
|
MD5 | 0215c56369429933e53ed727c48deb1d |
|
BLAKE2b-256 | 259f92ded32bb1feeb6971ee0658ec40aecc31bf87c7ee12611a33daea829219 |
File details
Details for the file emval-0.1.3-cp39-none-win_amd64.whl
.
File metadata
- Download URL: emval-0.1.3-cp39-none-win_amd64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bdd7c6fe960aa1a4f9ad94288c7aa64d60b3d798ec48bfcf7fca1cd9cf073e9a |
|
MD5 | 9e61325ec8e37fdcff23c9f6a1a99b62 |
|
BLAKE2b-256 | 1a92b3e3ed6f376a5771cc9f37c179e43818c59688250ee58fd6f881f25e416b |
File details
Details for the file emval-0.1.3-cp39-none-win32.whl
.
File metadata
- Download URL: emval-0.1.3-cp39-none-win32.whl
- Upload date:
- Size: 948.3 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fbb22b1180a43ee0b97bfd1951263bde84d40784adb0ed41274ecb973f72ed4a |
|
MD5 | 4de6b0e8717787984e9874641b920c2c |
|
BLAKE2b-256 | 09126b6b1b9684ca4a5a0fa453461eba68ed63c3c93eaaa7e854154988c08c74 |
File details
Details for the file emval-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: emval-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb44fa9198495ef300db2a1ba0a26d37a1b3696766193def70ea653bd3aef2d2 |
|
MD5 | 35e29ba886db529eb20df975629134c0 |
|
BLAKE2b-256 | 75f0e0b8cd6e68051a0d8106fc7d9411e10b7b97eac1202c2b7b2114797e97e6 |
File details
Details for the file emval-0.1.3-cp39-cp39-musllinux_1_2_i686.whl
.
File metadata
- Download URL: emval-0.1.3-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | baa604567a30ff8a11ad7d334eeda71f4cd35a3abb5cb32ba7bf5ea6c88228da |
|
MD5 | 4b4d696a707362933fcc441fe6783b4d |
|
BLAKE2b-256 | f132541af1fa337d39f07822cffba76ca76e4f3147f7f3a03ff7b2f8b03b8e01 |
File details
Details for the file emval-0.1.3-cp39-cp39-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: emval-0.1.3-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6891a07c89522a8c0991e026ac95470c46291ab549a9eb7a154087a0c032f0eb |
|
MD5 | c5599288bf4a5b7dddbbffe68563a29f |
|
BLAKE2b-256 | 66dbd6287adb15847199a3c3b50010322425eb18445e67b959010c590a83197d |
File details
Details for the file emval-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: emval-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4153e7fd47781ab8d34e19b30af948361ee88507b5377e5cf5f7522d9560619f |
|
MD5 | c029d099597d28b3749baabdd03caeaf |
|
BLAKE2b-256 | 881070a9acfedd7ceecdb9043e41746b71a12ae4566419ca3880936d806dc583 |
File details
Details for the file emval-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: emval-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7c8eec5a4020f09a4fa61b8d67c838ff09e0c14990a6236ba5e2b104c919b3fb |
|
MD5 | 891462b90b18680126d131b826f81cdd |
|
BLAKE2b-256 | ea807e4a47148d8b184389b629df39bbfb404148439ae7c0aa35fe05ee8069f6 |
File details
Details for the file emval-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: emval-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 26919236922fd91ee0d0b817cdceb8f3580e1c3efa261870a114604cd043a9c4 |
|
MD5 | 2f8a417647bb8cffdcf64e5b9a7f4c18 |
|
BLAKE2b-256 | de41a0bd6f8c4a553d1b66249518d0b849930af4d60c99554803a0f39eab0421 |
File details
Details for the file emval-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: emval-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8dc70b2087d439b5820ffadaf0e9204a9c1fd7d142dce154a72cb7882d96e736 |
|
MD5 | 8e022e3d2261f634c23a8c0181801eee |
|
BLAKE2b-256 | 252ebc6052f13c36154bc74d12bb2337c35ddb3240f81ef776db238af82ad641 |
File details
Details for the file emval-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: emval-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b70b25d8dcd4cb7dbf01de4e17f967eb67f3830d6fde1e821e92695a6c48dda |
|
MD5 | ffcd07b98149cc33083fc57e37d259c1 |
|
BLAKE2b-256 | 57c1a7fc410155d370f96accfea7330931088717d83f2846996ec0b91ef56660 |
File details
Details for the file emval-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: emval-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 186b3719bfedb931f1961912dbde34727590819de9c02f33f53e8bdec85e19a2 |
|
MD5 | caf5cf566078c961270bd1db362900ea |
|
BLAKE2b-256 | 2eccdbedfb8a32930bb164c935f0b9085b6f5dcaaf33aba1406e02407274fc31 |
File details
Details for the file emval-0.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: emval-0.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9a1bbcfee1b812db009b42559c3f7b19c60711b80c551451d46017015ac58106 |
|
MD5 | 8f35f6f0532f5293fad8c05d8b8cd313 |
|
BLAKE2b-256 | e0ab29224d014835b90be865946ba39687a476b85ad5b239eb3184b18c114f91 |
File details
Details for the file emval-0.1.3-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: emval-0.1.3-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 74a8c971c6d760cd50f2aa785c13900095d5a071837d57c78f1f8153cefb8d43 |
|
MD5 | c65628510e45048f12470573ea740aef |
|
BLAKE2b-256 | 4346ac5e6f251e7287d421031a59a39e6eb2e383035d4e12a3aa928055b89b09 |
File details
Details for the file emval-0.1.3-cp38-none-win_amd64.whl
.
File metadata
- Download URL: emval-0.1.3-cp38-none-win_amd64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0d386673322366f354c7ca182112f1404d8722e535c1a7bf2f9cf9a6815d4ee1 |
|
MD5 | dc3d51807316edee653d9f3734436359 |
|
BLAKE2b-256 | 8d5de284dd104bca9ea37c041587f23cbd53836b20dd415d362312d3ef3b3005 |
File details
Details for the file emval-0.1.3-cp38-none-win32.whl
.
File metadata
- Download URL: emval-0.1.3-cp38-none-win32.whl
- Upload date:
- Size: 948.2 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0647fe615348d3c6744baf51fc87992803edf469a5b1d6c7f2580027122ca6a4 |
|
MD5 | 853369165f16d06303bf6b3a397a0c2e |
|
BLAKE2b-256 | 583eaa74c1eb1519628d4ee06a9ae38203fb57f895b8a165520f93ea0f4e0e46 |
File details
Details for the file emval-0.1.3-cp38-cp38-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: emval-0.1.3-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 09947145ae98b4e89be9976c5064f8e78aff96ee010ecd4d395a246ee3337dd1 |
|
MD5 | 1406520ed55e667b5127c300e2b65021 |
|
BLAKE2b-256 | dcb0296c5790713a4bd2bd8a7fc335e48edbf43114cfce74bacf3d4799b25f9f |
File details
Details for the file emval-0.1.3-cp38-cp38-musllinux_1_2_i686.whl
.
File metadata
- Download URL: emval-0.1.3-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 47dfd42f89bb4231ecc7c93f5ef6cb90a38a30ecb558043ff88817e4693c0f3a |
|
MD5 | 50804f0ab9850c5a59e40a9a156dedb8 |
|
BLAKE2b-256 | f7a3f889f99e17eeac6b6f99b0d7ee1b35a82a230a116f53c9a557d83f86adfe |
File details
Details for the file emval-0.1.3-cp38-cp38-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: emval-0.1.3-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6afa2f9a290ebed845db1d975c02de8a793fb3d02b5baaa6c77b1f8bb28c862a |
|
MD5 | e478d780627515c33b089979a669b719 |
|
BLAKE2b-256 | dc75a7390d2dea594bf9f9cacf3f139981d5aac053a7bbcb8cac2a22151d17db |
File details
Details for the file emval-0.1.3-cp38-cp38-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: emval-0.1.3-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9fc09348834b0659dd351ad1fc86654f4ba769cce2448f6b491617f645c15ab7 |
|
MD5 | fd351667e555e6aad07f5d5b06485d94 |
|
BLAKE2b-256 | 9694828ed44e498ce95d44587ed843dc255e71f04a0752c1b7e184a13c38990a |
File details
Details for the file emval-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: emval-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 820881aabfee1b0594e86a55708016682f0e56a1a0c0b23e7f6d59319393b9b0 |
|
MD5 | 6219207efce64877ac466cac1e7ec5dc |
|
BLAKE2b-256 | 037acecc25b2960e4923ef773fcf03269d3dce29526a176661307d3c0c71bad2 |
File details
Details for the file emval-0.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: emval-0.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 554e89386e23aa9b5d9ef22b7f029db3fc8f0ab3c4c14fa231edef4ba73fc5ac |
|
MD5 | cb18461530da50d73a062c3cf495fc47 |
|
BLAKE2b-256 | 54686be0bf0a61b1ab2ba6e0558803704bad793ed51f845f4751f0447798b7eb |
File details
Details for the file emval-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: emval-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1b716839f51758bca95293bbb11bc204036014c5e520a80bf595382aab0ae853 |
|
MD5 | 6482fc37058e554c1cb7c6b997c5f8d2 |
|
BLAKE2b-256 | 1af4617cb051bb91e0d03ab995d996318bbd423daae4c2fc81fc319046bea507 |
File details
Details for the file emval-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: emval-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fea735057e5ea24a77057847d53d0c0ae35fc2df8c593bca23a9dc0027d1bd08 |
|
MD5 | d4035d17e729eb0f3af0765bb59baabd |
|
BLAKE2b-256 | a4bcd3181dab830f349d3801041cf4a17c6a999e8d528eefa01e94986445b3f3 |
File details
Details for the file emval-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: emval-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0b138992c9d7989be2497301ac5e4168615595e321982c59bd90a7fbeff2aa13 |
|
MD5 | d41d4f61d23f80c1e7dfca60129a4260 |
|
BLAKE2b-256 | fe33e414e06249e0f6bf4431800d1271ea77580e2909f5ccda92a62d207756d3 |
File details
Details for the file emval-0.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: emval-0.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.8, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4e184ad62c9c8e3c20d9f6c12420a5fd7514ac27f15b1fae6089d1f40d1afb69 |
|
MD5 | b11c511c311fdc59fcef05f96c4878c6 |
|
BLAKE2b-256 | fdec85e3c9899b9e83ab5cb48166f316313c7a8f9d9f0c36a8a885b11e3aa4ac |