text2num
A fast and robust text2num converter library a library for recognizing, parsing and transcribing into digits (base 10) numbers expressed in natural language. It works on strings as well as on custom token lists.
No IA involved: it is low on resources (and energy!) consumption and the latency is very small.
text2num is a python package that provides functions and parser classes for:
- Parsing numbers expressed as natural language words and converting them to integer values.
- Detection of ordinal, cardinal and decimal numbers in a stream of natural language words and get their decimal digit representations.
Supported natural languages (in alphabetical order):
- Danish;
- Dutch;
- English;
- French;
- German;
- Italian;
- Portuguese (Brazilian and European);
- Spanish;
- and more to come.
Versions 3.X vs 2.X
This new generation of text2num relies on a new and improved algorithm implemented in Rust whereas the 2.X branch
is in pure python and uses a less capable algorithm and has now been retired.
You don't need Rust to install and run text2num! as we provide precompiled wheels.
Backward incompatible changes:
- dropped support for signed numbers — the feature was broken anyway;
- parsing mode is relaxed by default (i.e. "greedy") — you can use punctuation (e.g. commas) to separate groups in text, or voice pauses if processing Speech-to-Text token streams;
- the
thresholdoptional parameter toalpha2digitsnow applies to both ordinals and cardinals. As a consequence the signature ofalpha2digitshas changed. - the Russian and Catalan languages have not been ported yet.
Installation
We provide pre-compiled wheels for Linux, MacOS and Windows:
| py 3.8 | py 3.9 | py 3.10 | py 3.11 | py 3.12 | py 3.13 | |
|---|---|---|---|---|---|---|
| Linux aarch64 | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| Linux armv7l | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| Linux ppc64le | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| Linux s390x | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| Linux x86_64 | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| Linux i686 | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| win32 | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| win amd64 | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| macos 11 | ❌ | ❌ | ❌ | ✅ | ✅ | ✅ |
So all you need to do is this:
pip install text2num
# or, if using an `uv` project:
uv add text2num
Quickstart by example
Not every supported language is covered in these examples, but it gives you an idea.
Parse and convert
French examples:
>>> from text_to_num import text2num
>>> text2num('quatre-vingt-quinze', "fr")
95
>>> text2num('nonante-cinq', "fr")
95
>>> text2num('mille neuf cent quatre-vingt dix-neuf', "fr")
1999
>>> text2num('dix-neuf cent quatre-vingt dix-neuf', "fr")
1999
>>> text2num("cinquante et un million cinq cent soixante dix-huit mille trois cent deux", "fr")
51578302
>>> text2num('mille mille deux cents', "fr")
Traceback (most recent call last):
...
ValueError: invalid literal for text2num: 'mille mille deux cents'
English examples:
>>> from text_to_num import text2num
>>> text2num("fifty-one million five hundred seventy-eight thousand three hundred two", "en")
51578302
>>> text2num("eighty-one", "en")
81
Spanish examples:
>>> from text_to_num import text2num
>>> text2num("ochenta y uno", "es")
81
>>> text2num("nueve mil novecientos noventa y nueve", "es")
9999
>>> text2num("cincuenta y tres millones doscientos cuarenta y tres mil setecientos veinticuatro", "es")
53243724
Portuguese examples:
>>> from text_to_num import text2num
>>> text2num("trinta e dois", "pt")
32
>>> text2num("mil novecentos e seis", "pt")
1906
>>> text2num("vinte e quatro milhões duzentos mil quarenta e sete", "pt")
24200047
German examples:
>>> from text_to_num import text2num
>>> text2num("einundfünfzigmillionenfünfhundertachtundsiebzigtausenddreihundertzwei", "de")
51578302
>>> text2num("ein und achtzig", "de")
81
Find and transcribe
Any numbers, even ordinals.
French:
>>> from text_to_num import alpha2digit
>>> sentence = (
... "Huit cent quarante-deux pommes, vingt-cinq chiens, mille trois chevaux, "
... "douze mille six cent quatre-vingt-dix-huit clous.\n"
... "Quatre-vingt-quinze vaut nonante-cinq. On tolère l'absence de tirets avant les unités : "
... "soixante seize vaut septante six.\n"
... "Nombres en série : douze, quinze, zéro zéro quatre, vingt, cinquante-deux, cent trois, cinquante deux, "
... "trente et un.\n"
... "Ordinaux: cinquième troisième vingt et unième centième mille deux cent trentième.\n"
... "Décimaux: douze virgule quatre-vingt dix-neuf, cent vingt virgule zéro cinq ; "
... "mais soixante zéro deux."
... )
>>> print(alpha2digit(sentence, "fr"))
842 pommes, 25 chiens, 1003 chevaux, 12698 clous.
95 vaut 95. On tolère l'absence de tirets avant les unités : 76 vaut 76.
Nombres en série : 12, 15, 004, 20, 52, 103, 52, 31.
Ordinaux: 5ème 3ème 21ème 100ème 1230ème.
Décimaux: 12,99, 120,05 ; mais 60 02.
>>> sentence = "Cinquième premier deuxième troisième vingt et unième centième mille deux cent trentième."
>>> print(alpha2digit(sentence, "fr"))
5ème 1er 2ème 3ème 21ème 100ème 1230ème.
English:
>>> from text_to_num import alpha2digit
>>> text = "On May twenty-third, I bought twenty-five cows, twelve chickens and one hundred twenty five point four zero kg of potatoes."
>>> alpha2digit(text, "en")
'On May 23rd, I bought 25 cows, 12 chickens and 125.40 kg of potatoes.'
>>> alpha2digit("I finished the race in the twelfth position!", "en")
'I finished the race in the 12th position!'
Spanish:
>>> from text_to_num import alpha2digit
>>> text = "Compramos veinticinco vacas, doce gallinas y ciento veinticinco coma cuarenta kg de patatas."
>>> alpha2digit(text, "es")
'Compramos 25 vacas, 12 gallinas y 125,40 kg de patatas.'
>>> text = "Compramos veinticinco vacas, doce gallinas y ciento veinticinco punto cuarenta kg de patatas."
>>> alpha2digit(text, "es")
'Compramos 25 vacas, 12 gallinas y 125.40 kg de patatas.'
>>> text = "Ella ha quedado tercera"
>>> alpha2digit(text, "es", threshold=0)
'Ella ha quedado 3ª'
Portuguese:
>>> from text_to_num import alpha2digit
>>> text = "Comprámos vinte e cinco vacas, doze galinhas e cento e vinte e cinco vírgula quarenta kg de batatas."
>>> alpha2digit(text, "pt")
'Comprámos 25 vacas, 12 galinhas e 125,40 kg de batatas.'
>>> text = "Ordinais: quinto, terceiro, vigésima, vigésimo primeiro, centésimo quarto"
>>> alpha2digit(text, "pt")
'Ordinais: 5º, 3º, 20ª, 21º, 104º'
German:
>>> from text_to_num import alpha2digit
>>> text = "Ich habe fünfundzwanzig Kühe, zwölf Hühner und einhundertfünfundzwanzig kg Kartoffeln gekauft."
>>> alpha2digit(text, "de")
'Ich habe 25 Kühe, 12 Hühner und 125 kg Kartoffeln gekauft.'
>>> text = "Die Telefonnummer lautet dreiunddreißig neun sechzig null sechs zwölf einundzwanzig."
>>> alpha2digit(text, "de")
'Die Telefonnummer lautet 33 9 60 06 12 21.'
>>> text = "Der zweiundzwanzigste Januar zweitausendzweiundzwanzig."
>>> alpha2digit(text, "de")
'Der 22. Januar 2022.'
>>> text = "Es ist ein Buch mit dreitausend Seiten aber nicht das erste."
>>> alpha2digit(text, "de", threshold=0)
'Es ist 1 Buch mit 3000 Seiten aber nicht das 1..'
>>> text = "Pi ist drei Komma eins vier und so weiter, aber nicht drei Komma vierzehn :-p"
>>> alpha2digit(text, "de", threshold=0)
'Pi ist 3,14 und so weiter, aber nicht 3 Komma 14 :-p'
Working with tokens
Imagine that we have an ASR application that returns a transcript as a list of tokens (text, start timestamp, end timestamp) where the timestamps are integers representing milliseconds relative to the beginning of the speech.
from text_to_num import (Token, find_numbers)
class DecodedWord(Token):
def __init__(self, text, start, end):
self._text = text
self.start = start
self.end = end
def text(self):
return self._text
def nt_separated(self, previous):
# we consider a voice gap of more that 100 ms as significant
return self.start - previous.end > 100
# Let's simulate ASR output
stream = [
DecodedWord("We", 0, 100),
DecodedWord("have", 100, 200),
DecodedWord("respectively", 200, 400),
DecodedWord("twenty", 400, 500),
DecodedWord("nine", 610, 700),
DecodedWord("and", 700, 800),
DecodedWord("thirty", 800, 900),
DecodedWord("four", 950, 1000),
DecodedWord("dollars", 1010, 1410)
]
occurences = find_numbers(stream, "en")
for num in occurences:
print(f"found number {num.text} ({num.value}) at range [{num.start}, {num.end}] in the stream")
When executed, that code snippet prints::
found number 20 (20.0) at range [3, 4] in the stream
found number 9 (9.0) at range [4, 5] in the stream
found number 34 (34.0) at range [6, 8] in the stream
Read the complete documentation on ReadTheDocs.
Contribute
Join us on https://github.com/allo-media/text2num
Release files for text2num 3.1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| text2num-3.1.0.tar.gz | 16.9 kB | Details |
Built distributions (wheels)
Total release size: 47.5 MB
Release files / text2num-3.1.0.tar.gz
| Download URL | text2num-3.1.0.tar.gz |
|---|---|
| Size | 16.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
e025ab59f2273b3fef8b1fbd082f76559161e4b45cf43a6281bd5eb315a115a5
|
|
BLAKE2b-256 checksum How to use checksums |
b7253006bbc89154cf5240f6ddaf43c63bab8895dea61724f545a7b9d3cc8340
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
| Download URL | text2num-3.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 589.4 kB |
| Tags | Linux musl 1.2+ x86-64 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
7d5eeaf4937b5d9675ee71b1ca69f9a6d6debf379a20212b5bda9bbbd1fe2562
|
|
BLAKE2b-256 checksum How to use checksums |
6eb1a8bed3256dbe04082f89c7c7592f60dbe67bcf274adad57ef6b947cfa8ce
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
| Download URL | text2num-3.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl |
|---|---|
| Size | 626.3 kB |
| Tags | Linux musl 1.2+ x86-32 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
d3df3e05d204eb3a4fe5a4d671c9c8e273c89672c07e29440fa1bd7aa03dfe0f
|
|
BLAKE2b-256 checksum How to use checksums |
123ed58cbba7096e15933e905cf555442839c2c99ebdaedb19c5f34bb31f8c5b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
| Download URL | text2num-3.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 668.0 kB |
| Tags | Linux musl 1.2+ ARMv7l PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
867096f490395939749d7db935f6967d1e7955eaa20e78eafd8ad7640fb3c9cc
|
|
BLAKE2b-256 checksum How to use checksums |
6cfb493613abd9d7cf57b19d9733e47dedfc76382fcb2d7648456d71cad95516
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
| Download URL | text2num-3.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 562.1 kB |
| Tags | Linux musl 1.2+ ARM64 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
17bd90a4f5a468818ef2ba4b1a57adb101ab5f5fda8b2fc925869e00ba4b7fb0
|
|
BLAKE2b-256 checksum How to use checksums |
866f12c53ca0c7641828186c2d9d93d7ddf75cc471ef4d12cde4dc6ebe023fa7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | text2num-3.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 383.2 kB |
| Tags | Linux glibc 2.17+ x86-64 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
3846a89767072ff3e6d5cd37926b9d47233fd32a9ebb06469525228e5d124e3e
|
|
BLAKE2b-256 checksum How to use checksums |
c881db179b47600ef8c023a10a94797bd55ef04fdda123ea98b737384effcf6b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | text2num-3.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 408.9 kB |
| Tags | Linux glibc 2.17+ IBM System/390x PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
b8c9c51ef6948a4cadc9e52acdfe007ea50ee005e1023e2e2caef2dc55e73b38
|
|
BLAKE2b-256 checksum How to use checksums |
45d45c375801d30f78768d25e51767ce5aff3b419eb6cb56edcece2aaffdc59e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | text2num-3.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 494.1 kB |
| Tags | Linux glibc 2.17+ PowerPC 64-le PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
c0483c602d2df34bf6d765442e2b486af34b785d202dfa7a93ba4a218af82cb2
|
|
BLAKE2b-256 checksum How to use checksums |
f704ed8f6122d4fc488a8648a03e67f4187f4e1e7393ab48e6fa3ad1aeb74731
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | text2num-3.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 391.9 kB |
| Tags | Linux glibc 2.17+ ARMv7l PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
3a4d731c0f8aa8bc7241c9479c382e46b7d4e71ae09d79c5e097f61d59f11fa8
|
|
BLAKE2b-256 checksum How to use checksums |
4a690e544a06f08e0fa09dad213181efaf133f4959e49644cf85974ac0c73d0b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | text2num-3.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 385.9 kB |
| Tags | Linux glibc 2.17+ ARM64 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
7b0ed6b5d7b0f3d546d29179aaf8dac5b098143a11d0f92bea26f1907c3b33a0
|
|
BLAKE2b-256 checksum How to use checksums |
3082f74dc578a332826e80bff126859b0840e45ea45ec6b444c1d2577fcab122
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
| Download URL | text2num-3.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl |
|---|---|
| Size | 411.3 kB |
| Tags | Linux glibc 2.5+ x86-32 PyPy 3.11 PyPy 3.11 7.3 |
|
SHA-256 checksum How to use checksums |
061ab17bcd27813c93f9462d9c0a35d7d5a85fba2b8ccd0f897d506e39c8b783
|
|
BLAKE2b-256 checksum How to use checksums |
ab59598d8c427e84996e0eaca4d4638d8c836f9026084f5af0720a54747b58d1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | text2num-3.1.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 378.7 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
a553f60cc8bcb94f330dc9327c72cc0cbc43ac133d621bdd2a5c74621319fa6c
|
|
BLAKE2b-256 checksum How to use checksums |
8910c775741cffd2b7f98f21305bc502c2f556323dca5d4656710fcecfec5de0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
| Download URL | text2num-3.1.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl |
|---|---|
| Size | 403.4 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
f3a16ff4ae4e15dedcf62f33cd397e25d8adb1e364fe142f1938a381d21867ea
|
|
BLAKE2b-256 checksum How to use checksums |
1b854c5b13f261ebaaba53973859f0818c583329da6fde134a63be69062a46e3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | text2num-3.1.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 377.6 kB |
| Tags | CPython 3.15 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
4e61935909ab56c3d78e07e5537ac77876c989142434cf3ddcf262cb9ff20ccf
|
|
BLAKE2b-256 checksum How to use checksums |
e9f691578173ea8d52c302cf38d2f3dadf0d67739b56c6176175169e97e0dcea
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
| Download URL | text2num-3.1.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl |
|---|---|
| Size | 405.2 kB |
| Tags | CPython 3.15 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
2fe7d59e96d71cf913e3373b2df0f4eb2903a2f6b3ee4e3f78b6b39af934a3a0
|
|
BLAKE2b-256 checksum How to use checksums |
db95f98bdb5f7fd5cda807610b8a57684dfcc769c917c28a1f16777d602ab3f8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
| Download URL | text2num-3.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 583.0 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
66b8ddfdd05e47c22e924d6f5e5e26421ffc5711e54c6426d51befd8e913eb3d
|
|
BLAKE2b-256 checksum How to use checksums |
56d22c31e10560df649b629450b14413daf61229062409d7b4dddc39e0576e92
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp314-cp314t-musllinux_1_2_i686.whl
| Download URL | text2num-3.1.0-cp314-cp314t-musllinux_1_2_i686.whl |
|---|---|
| Size | 619.6 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
29fe6d35e78a1bfd980c5de4dae2c52200d978e5a80f3fdfbda69c5929627fb6
|
|
BLAKE2b-256 checksum How to use checksums |
c198562f7c8997776768b805410dce6f226c177118b631fe73e924332d1ca191
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl
| Download URL | text2num-3.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 662.8 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
60f478f422edc8be745ad3ea434efd5a9e053fc201d50e6f1bb67283adb747b4
|
|
BLAKE2b-256 checksum How to use checksums |
689d6d3f532c35b7fc0d14853123b86e95210473090765abbcc5f1d19213f748
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
| Download URL | text2num-3.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 556.7 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
ccbb5ae2cc94717e8d2e0bcabde3b43e9dda417eb48a525a7fc341e9ad127d06
|
|
BLAKE2b-256 checksum How to use checksums |
ba8cedd3196fa98bec2eb0a73949844b0c06668d7b4cf368ca34fcd635b7ca4c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | text2num-3.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 378.4 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
b898a2e392cb295fd96237332a6209317541818d5fcfd2fd5b02c5ebd73406f6
|
|
BLAKE2b-256 checksum How to use checksums |
7ab3a5c6ef44f68d88aeebbe10218e0186ccb4d4107a5700ce33636a1da049df
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | text2num-3.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 403.6 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
f15137225aad36d368aeb549c029df243d99edc6bad3ea8f975be2ee2274f330
|
|
BLAKE2b-256 checksum How to use checksums |
b98c3fb7b9653e07bad01733c5f117036d8fd7497781c7bcccbc4b0f692f15f5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | text2num-3.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 489.6 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
ad6eacf2e717b4b5e54d472e4619199cee2e5900e714709bbbf3bf7b99bcdc9d
|
|
BLAKE2b-256 checksum How to use checksums |
2ba3988820e03f08ff9f865c000463d22ba94bb3f8b93a45269105ffcc446c07
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | text2num-3.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 386.0 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARMv7l |
|
SHA-256 checksum How to use checksums |
6bb77123dfb644e232b296e324796e33e247a94e61616cbace76e06bc42c798e
|
|
BLAKE2b-256 checksum How to use checksums |
4f969fd78a71520122d36fc774ce67aea3becae9b6aeafa005268b8b009bbb5d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | text2num-3.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 379.1 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
0b695e8a6d410793db6a5faaa51ed80618f02ebf031cc6f1db99538723528175
|
|
BLAKE2b-256 checksum How to use checksums |
400dd74f24c58050e1c16cee15500dafd43e3cc738173459e7b3f84c65912705
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
| Download URL | text2num-3.1.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl |
|---|---|
| Size | 403.4 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
1b122b3158f3758c97ae77d55683642b91c12f3c8459818ad92704cbbfb13b20
|
|
BLAKE2b-256 checksum How to use checksums |
dfb48f4f01c21957c530a63169971860abda47b0dcaa9e7fca1175e629fbb711
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp314-cp314-win_amd64.whl
| Download URL | text2num-3.1.0-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 221.4 kB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
df2e4a8aa525fbf3e99b78bde852b47bfd33af6612d9155f904f3d34078ae172
|
|
BLAKE2b-256 checksum How to use checksums |
d3ca85668b659b1a352ed59f65fc474d13e6a3c03204c6afcb424cabd0a65f1f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp314-cp314-win32.whl
| Download URL | text2num-3.1.0-cp314-cp314-win32.whl |
|---|---|
| Size | 220.5 kB |
| Tags | CPython 3.14 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
7e478a0989ae14e90926185d5cf1962d6ad409c6ccb6162693b244a0c4f5dc63
|
|
BLAKE2b-256 checksum How to use checksums |
bbae5708e58539f6c87f78d5db46a15cdd21bbc88c2359606bccbd0e11e10206
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
| Download URL | text2num-3.1.0-cp314-cp314-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 583.0 kB |
| Tags | CPython 3.14 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
daa1c97f2213829d481a064d9cd96d782dffec7bb96ae6bffc2c248a2cded3f0
|
|
BLAKE2b-256 checksum How to use checksums |
41d28c8b85478864b43e0a9c12d7c27895ac00c129cead939133ce02daa35ea8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp314-cp314-musllinux_1_2_i686.whl
| Download URL | text2num-3.1.0-cp314-cp314-musllinux_1_2_i686.whl |
|---|---|
| Size | 620.3 kB |
| Tags | CPython 3.14 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
f41c10817414394be103a5c0373aff41dc285e7bf2df63d5e11a9d2c27b8b0f8
|
|
BLAKE2b-256 checksum How to use checksums |
2cab8f27090c11dfad81b2159860b1112d3400779456614c1fcaab5fa0e0cade
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp314-cp314-musllinux_1_2_armv7l.whl
| Download URL | text2num-3.1.0-cp314-cp314-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 663.8 kB |
| Tags | CPython 3.14 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
206c03b8a4cf0363faab520d12b9f6cedaac99402539fc79a1bb304e4945f6cb
|
|
BLAKE2b-256 checksum How to use checksums |
7dd7a790f5dfe2faf3af1db08e797fab1a3eefea3591f3ced1aa39dd692a96cc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
| Download URL | text2num-3.1.0-cp314-cp314-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 557.0 kB |
| Tags | CPython 3.14 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
413f59875ea348bdbf8a4285a6a1654512092809aaf72a8da149141e2636396b
|
|
BLAKE2b-256 checksum How to use checksums |
a5e8fcde3cd774a7991b7a3de76a423294f546a1bbf65f090d31f01781119325
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | text2num-3.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 377.8 kB |
| Tags | CPython 3.14 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
1575a7e5c918fc202d9d25cd1f9b798499833bfaae6f3b5259428d697a3d5e66
|
|
BLAKE2b-256 checksum How to use checksums |
65d5eb98e3221557efd854b3f4b09409a047119c063cb5a7d86e85660afedc4b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | text2num-3.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 404.2 kB |
| Tags | CPython 3.14 Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
eb7e81547518fa0f559186bed46defc7d7f9ec972f5c265fa382f908b26b3310
|
|
BLAKE2b-256 checksum How to use checksums |
bf54d85130e5de295202398a6f4c9c8576a08dd5093f383363ab59ea2bb16aef
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | text2num-3.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 489.9 kB |
| Tags | CPython 3.14 Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
096927956dcf19d16974e304b302c5094188f2d1eb062912e3a82d4a15e93825
|
|
BLAKE2b-256 checksum How to use checksums |
5e67cf3134c00cab5ade6476613ad78356b082a95a23159c399eb8cc7681f4bb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | text2num-3.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 387.5 kB |
| Tags | CPython 3.14 Linux glibc 2.17+ ARMv7l |
|
SHA-256 checksum How to use checksums |
6483a491f1697c75648f5b4e5638962292280434a55022dd808bf4ff921f5a43
|
|
BLAKE2b-256 checksum How to use checksums |
372b214fa69813b8084d538d5e1e3924a0d52d7596def620799789e8ab90f4ff
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | text2num-3.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 379.4 kB |
| Tags | CPython 3.14 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
3750880cfe4a26134e5991410565392e015f39fa6364bacc2319b1f1faffc2c3
|
|
BLAKE2b-256 checksum How to use checksums |
3e8155239ade14eb72324184c051b945d16411ae6a3b24893db6fdc8c72a3083
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
| Download URL | text2num-3.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl |
|---|---|
| Size | 404.4 kB |
| Tags | CPython 3.14 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
03eb85fc0a73a24c95374feb1bfc9109779451f3353fea2d3b1ea0c81f5fd85d
|
|
BLAKE2b-256 checksum How to use checksums |
a6989b271fbaf1c6ae5f8dad8c5d4634bb7bd841d8ee4a1e3ba7af1b3bcc5c2f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp314-cp314-macosx_11_0_arm64.whl
| Download URL | text2num-3.1.0-cp314-cp314-macosx_11_0_arm64.whl |
|---|---|
| Size | 336.3 kB |
| Tags | CPython 3.14 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
2f16afbddeeb5b21c3da9ebb75c932fbb78e3b4310bacf888b23b6caaef814fe
|
|
BLAKE2b-256 checksum How to use checksums |
db6d4cef40b5b57de8357f4318a76635011e3c13680da12c638ba4a5d618655c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp313-cp313-win_amd64.whl
| Download URL | text2num-3.1.0-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 220.6 kB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
7195588e62aef1c6304cb3baa717e06dd09e9b1d32292a0c5d5abb6e8cb98648
|
|
BLAKE2b-256 checksum How to use checksums |
e72e15c1071d641259d6ba79cd6edcd0dddc7c9fe247ba3e14078655955ea600
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
| Download URL | text2num-3.1.0-cp313-cp313-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 582.7 kB |
| Tags | CPython 3.13 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
1c08391328d4f1969dd2d033a0cb672cb480a09862c8d1e5d480bfc73ebf34f2
|
|
BLAKE2b-256 checksum How to use checksums |
f19513a826df9e25c3502e24e680109cb1e094019ee1e341449e5a78ed7039a9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp313-cp313-musllinux_1_2_i686.whl
| Download URL | text2num-3.1.0-cp313-cp313-musllinux_1_2_i686.whl |
|---|---|
| Size | 619.0 kB |
| Tags | CPython 3.13 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
57eb863476e3cf83ad9b62b1c02ef8bc890e31919e6eee32db1a8598096847b0
|
|
BLAKE2b-256 checksum How to use checksums |
32a1c132da39655b24e0e773ad145ff6ab6e318253faf58fa90dce30a54efbfe
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
| Download URL | text2num-3.1.0-cp313-cp313-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 662.7 kB |
| Tags | CPython 3.13 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
16b3197d488848e83fb2144501e93ee8f071e3e30b8fe7e2c1fa2f61f0e939a9
|
|
BLAKE2b-256 checksum How to use checksums |
b5095dd0e6c181fde54c2feabb710977e0a83348ce61adeda3c83fbb77561ded
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
| Download URL | text2num-3.1.0-cp313-cp313-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 555.9 kB |
| Tags | CPython 3.13 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
12d2378e306a5437ac9ba396e6f7f7ba0e95c4e66f7286f94199d8c46613aaf3
|
|
BLAKE2b-256 checksum How to use checksums |
bcfcca5aa3c4dcacb482fb88e4db835add650eca5781658825cd94c007c3e989
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | text2num-3.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 377.3 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
c6581060324992911a5227220342b32a8c2a51c201487a057c94564e94c3b597
|
|
BLAKE2b-256 checksum How to use checksums |
bd29c054867e3677cebfd133fb920d9b988868e71b0ce826c022d1020dd4b5e1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | text2num-3.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 402.9 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
f2fa8be8178882c41c82289084de027aec186d4958bc198612c6482f80279e56
|
|
BLAKE2b-256 checksum How to use checksums |
f6fef2d0d4f91a4f9ae5e4b35dcf699e7b2c9b162a82c19b8d8445b04561fcd2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | text2num-3.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 487.6 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
167d1313ca2596c739a1bf7902f43232fd1560cca5ae448b4d26346564dacd76
|
|
BLAKE2b-256 checksum How to use checksums |
2e587197feaac99e0a1ef9554474850669756c240493e479a2eb1c55af73ff3f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | text2num-3.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 386.3 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ ARMv7l |
|
SHA-256 checksum How to use checksums |
e42e9cc9f2c1fefceef49a7e35aae4afc4fb99b8a55ca95e113a327c20736754
|
|
BLAKE2b-256 checksum How to use checksums |
8dec5018c35d1cb4cead36ec5bdecea79359f143687747b52b4b18df446a8f98
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | text2num-3.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 378.6 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
bdad292f903547540bec26ddcd8df5db104a6f3a2f049f6327c394999e7f48a4
|
|
BLAKE2b-256 checksum How to use checksums |
cabc4782e37caeba2556846dd94e5f6a4f79329138ce6b82116f8764a9d59e02
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
| Download URL | text2num-3.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl |
|---|---|
| Size | 403.3 kB |
| Tags | CPython 3.13 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
7a04067ef41c77f439fd4c7b48c1350e6448eb74603cccdc7caf40cc544bfd9e
|
|
BLAKE2b-256 checksum How to use checksums |
9784c19901b25cb7a8db29701e0a1e38052bc5e0ede54409908dbbd23ca9d15b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | text2num-3.1.0-cp313-cp313-macosx_11_0_arm64.whl |
|---|---|
| Size | 335.4 kB |
| Tags | CPython 3.13 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
a4e31c265047ca2fa85df9ccd2446668b96d5bdc9304475e1b4bdb9937fa0c99
|
|
BLAKE2b-256 checksum How to use checksums |
0c5e6593b96c34f45766a632fe1774554f8fa81a93280d3812e896f4c727695c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp312-cp312-win_amd64.whl
| Download URL | text2num-3.1.0-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 221.7 kB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
ab95729920321ae2221d1cb95be480780dfb6e28c3be682b2e3d0585c54be1c7
|
|
BLAKE2b-256 checksum How to use checksums |
a2a4ba929f5344027de387660bd42efe57588e4502169f1c2c9c14536581d260
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
| Download URL | text2num-3.1.0-cp312-cp312-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 583.3 kB |
| Tags | CPython 3.12 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
c86dc685d6e324ac115b13c0291c6596f28d56226c2678ae4114b2a98fb67633
|
|
BLAKE2b-256 checksum How to use checksums |
aa85c40b7b12b312ce5d7163c5f63557100293c47463b3a662eb1d8d8b16d2fe
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp312-cp312-musllinux_1_2_i686.whl
| Download URL | text2num-3.1.0-cp312-cp312-musllinux_1_2_i686.whl |
|---|---|
| Size | 620.1 kB |
| Tags | CPython 3.12 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
015fc39b7fe5d78dac38730353493617bc08f26c555a184321dad3c07aba6357
|
|
BLAKE2b-256 checksum How to use checksums |
b1f71fed0d0765606a6774c9a62df9f4c7c83977c86d9e46fbf3021dc63dbf1b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
| Download URL | text2num-3.1.0-cp312-cp312-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 663.8 kB |
| Tags | CPython 3.12 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
c4e4ec1e560c1b9e93f6212c0ac3d94bd4386af539cafe794d8a1eafe1f635df
|
|
BLAKE2b-256 checksum How to use checksums |
9f423617221e001524f21f3cb58dcb053ccc6c6f28feb507136fb8b656339c90
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
| Download URL | text2num-3.1.0-cp312-cp312-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 556.9 kB |
| Tags | CPython 3.12 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
4c94e12ec56f4ad11348da546c7dbfc60b4ff0949ac20281557abc5520639c2c
|
|
BLAKE2b-256 checksum How to use checksums |
9c3003c01491622e9d7393e6c4d99e5011ae75650492641c34f49029fae6e29d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | text2num-3.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 378.1 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
e170e06fc538122fa34df5aaed632d4c82aaaaf919d69e445f741fc105c8dfdb
|
|
BLAKE2b-256 checksum How to use checksums |
b6011bee1ed251bf15453c9e513d06c6afcae21b770b7d0fae09edee3296dd95
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | text2num-3.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 404.3 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
3778a32dc3ae4cf711f4af04e2f749678c0ae90717efdd789e4441a7ba0b4031
|
|
BLAKE2b-256 checksum How to use checksums |
c38a19e78982515491291155d41f99c80823fdeb6058389f89826750e0f72402
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | text2num-3.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 487.7 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
091bebc82d3888f449a20a93d58fec7b60db7392c3f0aa48d18e7bbd414d6282
|
|
BLAKE2b-256 checksum How to use checksums |
df3f394ee41df16fb02693472a8a762cd96baa17347e05809f2c56c0e48dc0c2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | text2num-3.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 387.5 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ ARMv7l |
|
SHA-256 checksum How to use checksums |
46393a0536ca08c91787a6190b3338da2f38242ed34988aa8739763617350105
|
|
BLAKE2b-256 checksum How to use checksums |
2437dfb81b7bb465337bed8f4eb9ae02cb16ca8403f095f38eb23ced7dabc34b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | text2num-3.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 379.6 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
2c7ac159b466bad33440b4db4fe74e61b9fe7bd511ffb2892ea59e5fadd5d280
|
|
BLAKE2b-256 checksum How to use checksums |
42a7beda68bea2bba433c9d5a08a8cb688138f3cb9ba9023568f57554a50e2d6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
| Download URL | text2num-3.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl |
|---|---|
| Size | 404.7 kB |
| Tags | CPython 3.12 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
94bf51fe2e0bdf7aac05688ee98ee9cb735865a760540919ad949f35a263ae79
|
|
BLAKE2b-256 checksum How to use checksums |
29763a61648828fe662b3caeb5eb05afe59a5fe088041407aaec7d30f5912c0a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | text2num-3.1.0-cp312-cp312-macosx_11_0_arm64.whl |
|---|---|
| Size | 335.9 kB |
| Tags | CPython 3.12 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
9bda066015ade2be641f12cb5590d4a1e916602ce9cc5bc97c1dec66cf6c7d21
|
|
BLAKE2b-256 checksum How to use checksums |
f04efd3b402f9fb5649b974e114712743f10fe857f6f48e8de3caa77a20fef30
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp311-cp311-win_amd64.whl
| Download URL | text2num-3.1.0-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 223.6 kB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
1c25417ec5de8ba7ee542b90b8f5212278b38a952b47754a040e1b5929a0a099
|
|
BLAKE2b-256 checksum How to use checksums |
fc3eb86a2f77c4c7640ee70b2e9e71cdb0b5beab6b0c589a0c9a74ab10f53d34
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
| Download URL | text2num-3.1.0-cp311-cp311-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 587.3 kB |
| Tags | CPython 3.11 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
bbc7665aa93b14cabc88da2f8507af65ec5a8854e4005a1706bf5187f52a0774
|
|
BLAKE2b-256 checksum How to use checksums |
747e432b061a858d1f714b61d18ea5a4b9975ea796013f14d2c0fb29b8ade826
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp311-cp311-musllinux_1_2_i686.whl
| Download URL | text2num-3.1.0-cp311-cp311-musllinux_1_2_i686.whl |
|---|---|
| Size | 624.8 kB |
| Tags | CPython 3.11 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
675effedb4ac392b82051bf279ba9c811dcf50ca590d4113e59eac8ade9cff5d
|
|
BLAKE2b-256 checksum How to use checksums |
aea1a90b69c8c42d47e0f36b5e6d414725f43edc629e60c8a4e0ea90b32e437e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
| Download URL | text2num-3.1.0-cp311-cp311-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 666.6 kB |
| Tags | CPython 3.11 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
9b8341daced46cee233ca6624cc5c48f0c11df8aec3e703fac8932be92de99bb
|
|
BLAKE2b-256 checksum How to use checksums |
6c9a5fad4ac61be5573e62fdbd9f88576598fc4525d484ba246a6bcb07046c2d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
| Download URL | text2num-3.1.0-cp311-cp311-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 560.3 kB |
| Tags | CPython 3.11 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
6c218cb944b88a9c2fb7a12618061f012d3f59ede235a4725b3ae5ecdeaf8b68
|
|
BLAKE2b-256 checksum How to use checksums |
9c5b1fd60e196cce3a8189c04584825a177777083d4f09b15d5f074c9544bc03
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | text2num-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 381.6 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
112aa5f27ba44321d21a61b3470b4111e28a467329912821ffcfdbb0bf4d184e
|
|
BLAKE2b-256 checksum How to use checksums |
530826819d623784070cccb999fedf1579624376f4dd9a69e771ec7dedacab79
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | text2num-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 406.7 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
0f9e048aa73e76e1c0903a07cd1ea3c858b9c300d4748119437aa5ae19f52997
|
|
BLAKE2b-256 checksum How to use checksums |
dd5d99e188b454047a25814d76efdf997f75966b95e415accc3ffa5453a79de9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | text2num-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 492.3 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
d2d0ffa1bd8691f87fc5b7edcba07719eede9c026927efaa706d2080d55dc039
|
|
BLAKE2b-256 checksum How to use checksums |
f2de9234c37da45e40e264bb0b90ebcb733d828b4d3f5799f25d37fe3148875a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | text2num-3.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 390.3 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ ARMv7l |
|
SHA-256 checksum How to use checksums |
38f453f61b8233962bda6f4dadb38beacf6ce6a491a96fe71d0cf4ba915e3361
|
|
BLAKE2b-256 checksum How to use checksums |
ed6c62a167e3b6ca5fbb30f02854e0c7a4b58994e5002da6abec4577004b4d44
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | text2num-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 383.0 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
4f6f822c5800ab54e091fe5fc7d73619aa9b00284b1b14dd24a6b7c31948ca4d
|
|
BLAKE2b-256 checksum How to use checksums |
2f32eebef0c1a0195cf1f22af06ab5388ef4db47b99b6f4562ea70109be9cca6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
| Download URL | text2num-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl |
|---|---|
| Size | 409.2 kB |
| Tags | CPython 3.11 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
036c58473a0d77ad297fb0a09fe4150fe81f0d169f46e5d1ebf2a9adb51e9a70
|
|
BLAKE2b-256 checksum How to use checksums |
c6d7736acc16346ea6d1d6709baaf6af5fc2b57a941a43293014aee3a2f5b05a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | text2num-3.1.0-cp311-cp311-macosx_11_0_arm64.whl |
|---|---|
| Size | 342.3 kB |
| Tags | CPython 3.11 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
86ee527807fe1135f6902918318ce575968553522764c943922ab773e1b6899f
|
|
BLAKE2b-256 checksum How to use checksums |
7a5157b692ff3ad530f4c39a8e8c0c2cdbc5f66574d473db8611e652e766a1e0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp310-cp310-win_amd64.whl
| Download URL | text2num-3.1.0-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 223.4 kB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
b06b117092f31c548f59c1d4f5de539371d7fd44ee459f1869e7a4f2f5a6b37f
|
|
BLAKE2b-256 checksum How to use checksums |
a3ef5cd564492917d5284e9c67b10301113236c390cee204561c2fcb203b99ed
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
| Download URL | text2num-3.1.0-cp310-cp310-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 587.8 kB |
| Tags | CPython 3.10 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
62973b4ccc16cba8f0f50df1e7e589d84965e962ec91b8924a998e1f3da96fb7
|
|
BLAKE2b-256 checksum How to use checksums |
21f56d4a379d3afae58e295650392402c0f7adb3bcbe94cad4be2477f84b97e8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp310-cp310-musllinux_1_2_i686.whl
| Download URL | text2num-3.1.0-cp310-cp310-musllinux_1_2_i686.whl |
|---|---|
| Size | 624.1 kB |
| Tags | CPython 3.10 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
6c86b6027eb7668076f06638697ad4c9d78c30c77ba5f5f871e244d41616727d
|
|
BLAKE2b-256 checksum How to use checksums |
3d22b6a4486c75fb6970e5693b585329096fa9d4339cb4bcca3c0b4dca0410d8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
| Download URL | text2num-3.1.0-cp310-cp310-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 667.2 kB |
| Tags | CPython 3.10 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
f67db0cec99f72973b9f77438be9b0a77761bdb328a2b46c81db376eb72ad5e7
|
|
BLAKE2b-256 checksum How to use checksums |
3214a339400bb7aae4a3a9250b2bccdd8f34cfde24d6d55254a3fa786fa8b3c9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
| Download URL | text2num-3.1.0-cp310-cp310-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 560.6 kB |
| Tags | CPython 3.10 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
e8d6cc052933b441181885e94317b4bf3f2510d672f59af50f052780cc9369f2
|
|
BLAKE2b-256 checksum How to use checksums |
92210584c5bc6bf491d72a7e960e7289476122891a7dff3e2e56cdfd2f597c48
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | text2num-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 381.7 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
ae7b63054cdba766fd79bbf29c8f25c1da5946679fd0923fa94478059c2c0dc0
|
|
BLAKE2b-256 checksum How to use checksums |
a7efca31a62d134d7dd9e91f9044be36c3b5f6fe142eb643e50e883f68132d7e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | text2num-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 407.9 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
6da121a7813d60da7bf5aae60cb1e1e0e54e009dfe0b7c8a0c13a02af245a25d
|
|
BLAKE2b-256 checksum How to use checksums |
b995e15f82c438546612a42f64e1c9b2d4b5d494952a49e1533620892326e016
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | text2num-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 493.2 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
205125ae3c1c3135badb7994a2e3b372d9d19a2e7d21c21deacb8dc7b645573c
|
|
BLAKE2b-256 checksum How to use checksums |
dc2a2ca9c9e16aae59901731d2d2719c64a9bdb23f52b63a5f69ed53d5e564c3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | text2num-3.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 390.3 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ ARMv7l |
|
SHA-256 checksum How to use checksums |
851d7310c012b415e3c615644f0f1ada8b126fdf16c2b9b029953d715e0e6f1a
|
|
BLAKE2b-256 checksum How to use checksums |
79fa2c157657d76d69d647cabc43eab9e069a583014050cbabebc1e20f80c4dc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | text2num-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 383.1 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
2c71890962e88cad15ff1b69e153036bc156cd7d7b3e3503ae27c102036fbaf1
|
|
BLAKE2b-256 checksum How to use checksums |
e25c08ceef4adc4c29d9877373c1d4e311d51adc04e7c302cd292f853e21b67b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
| Download URL | text2num-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl |
|---|---|
| Size | 408.6 kB |
| Tags | CPython 3.10 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
ff7199b61fbb7bf51e45d9e4647b3dfe5a50eb2807fda54de919751d46ec9860
|
|
BLAKE2b-256 checksum How to use checksums |
590ac58cf4a734837cad34bacfb0d9435893731044be6eede9aacd5f96726ef9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
| Download URL | text2num-3.1.0-cp39-cp39-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 590.4 kB |
| Tags | CPython 3.9 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
ae8a23a3169cd939a7fcb23641390e69f750cf459d684475fe260147cfa41316
|
|
BLAKE2b-256 checksum How to use checksums |
ff5fbd815ff0fe6e72b411a3425028971eb8d4c453d76bdac45f027ce5bc6380
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp39-cp39-musllinux_1_2_i686.whl
| Download URL | text2num-3.1.0-cp39-cp39-musllinux_1_2_i686.whl |
|---|---|
| Size | 626.5 kB |
| Tags | CPython 3.9 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
5e2bea88151f4f7d36e9c000b84caf6b94f256772468018d3b1b9ffa727f9b2d
|
|
BLAKE2b-256 checksum How to use checksums |
9c9f3a840527e5a929efc5562b81fb0f68152419b6d70dc5b0a277fd8164101c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
| Download URL | text2num-3.1.0-cp39-cp39-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 668.7 kB |
| Tags | CPython 3.9 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
8b90ab01e1fdc3e1c2ff471fa4729ae49e193e6aaf8726ff3a535fee82686456
|
|
BLAKE2b-256 checksum How to use checksums |
25de06b38773c6f20122bbb1a7f04050d6df441bea75ea3c7ad82ca6ea28cf47
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
| Download URL | text2num-3.1.0-cp39-cp39-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 562.8 kB |
| Tags | CPython 3.9 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
b62aa77dcfb68381edc2801798cb7b0018d9d9849405bf337195d6ae6fbcb825
|
|
BLAKE2b-256 checksum How to use checksums |
108f82ab437de5362b4f3a3cee49ad90a6f6b58b46504db2d4e7d1132010b78d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | text2num-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl |
|---|---|
| Size | 383.9 kB |
| Tags | CPython 3.9 Linux glibc 2.17+ x86-64 |
|
SHA-256 checksum How to use checksums |
33ea841b39cbcd831f15e053e76c2a2c28272807706219373e02f2393403948c
|
|
BLAKE2b-256 checksum How to use checksums |
59948150eb68f077a7c8a8979e5b405b330f482c82c0102a2ea1c57f831d88a1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | text2num-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 409.9 kB |
| Tags | CPython 3.9 Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
d78a6e8a1a182fa4ebb5236a83d80e8fa3a514bd2aa2169db2f07fd852d448cb
|
|
BLAKE2b-256 checksum How to use checksums |
9c963869789edd2f75a14fe86f4fe62021dbed25dd80dbaf2de21181da2bac34
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | text2num-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 496.5 kB |
| Tags | CPython 3.9 Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
dc18a801070b36fa417a8c8a7ccb256fd1e2395729e7887ab48cb436bb51979d
|
|
BLAKE2b-256 checksum How to use checksums |
abdadcfc7f6790501a7208a0d24652e46fed97ddb652958cf9fb0589ec6037c1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | text2num-3.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 392.3 kB |
| Tags | CPython 3.9 Linux glibc 2.17+ ARMv7l |
|
SHA-256 checksum How to use checksums |
d0eb3cd715dd9492d87e3ec9ca7e90f5d0a3afa016c473db9dfbf270f02ca25a
|
|
BLAKE2b-256 checksum How to use checksums |
de3819f9a398693a57384adaaba0d3ed7f6067dfea6b35abea4678ebaa95430d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | text2num-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 386.1 kB |
| Tags | CPython 3.9 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
61e588e782219ff1f208ef2d837a8c161c2ccdc721ed2767a9dc740b203d77d2
|
|
BLAKE2b-256 checksum How to use checksums |
48027d5f1d3790d267019f350a07cd156abd6a3776af6a2e3ca94ae8af83dc7a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
| Download URL | text2num-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl |
|---|---|
| Size | 411.8 kB |
| Tags | CPython 3.9 Linux glibc 2.5+ x86-32 |
|
SHA-256 checksum How to use checksums |
b9bb46143732e2c7ed1b0b59dea7a97fa41a1568aafd287e62312286cb065def
|
|
BLAKE2b-256 checksum How to use checksums |
649e03174bb1377f010f1e0032a63ab9652ca1be1056defd919e8884fbfad8d4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
| Download URL | text2num-3.1.0-cp38-cp38-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 589.6 kB |
| Tags | CPython 3.8 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
84a32a7b033b8f461f25923609347c0e26e970426dc0dab19c42613a99074ba9
|
|
BLAKE2b-256 checksum How to use checksums |
ed64082257eb507fe71d13b966b99cde25ac93c204ed300af1b67ab6144635e1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp38-cp38-musllinux_1_2_i686.whl
| Download URL | text2num-3.1.0-cp38-cp38-musllinux_1_2_i686.whl |
|---|---|
| Size | 626.4 kB |
| Tags | CPython 3.8 Linux musl 1.2+ x86-32 |
|
SHA-256 checksum How to use checksums |
3b85fde175e6cd137948e4e36b3dc9955e83e74909a70929c472614bec6547e1
|
|
BLAKE2b-256 checksum How to use checksums |
46fbf1fc28e39a1731f1863abd5c4660f88dabb61dfcb066203b8a524f716cab
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp38-cp38-musllinux_1_2_armv7l.whl
| Download URL | text2num-3.1.0-cp38-cp38-musllinux_1_2_armv7l.whl |
|---|---|
| Size | 668.3 kB |
| Tags | CPython 3.8 Linux musl 1.2+ ARMv7l |
|
SHA-256 checksum How to use checksums |
fbf2a7cd70e27e4afd57e804f6736fe763e423137e68dc57c628b14cc477767f
|
|
BLAKE2b-256 checksum How to use checksums |
8a9bb7dd3f3654f7d922c8709c88f6a8f5f289b95e0b006a9b864a28f2fa8df2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp38-cp38-musllinux_1_2_aarch64.whl
| Download URL | text2num-3.1.0-cp38-cp38-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 562.6 kB |
| Tags | CPython 3.8 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
e380c7f83db8120223d1cc55e8464dcdd966eb23fc783ef3e7c798f4fee33221
|
|
BLAKE2b-256 checksum How to use checksums |
004ff93d07f9910f8253a42cb53f632f43e8ee2dbae0538ec1a12dc0c6536759
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
| Download URL | text2num-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl |
|---|---|
| Size | 409.1 kB |
| Tags | CPython 3.8 Linux glibc 2.17+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
2d1c4c6e1b0127fb91756aed1c62da6a3d9a7dda5734c879556e277ac6cb490f
|
|
BLAKE2b-256 checksum How to use checksums |
6df1a2acbe86c564a1e989d35d98a142df5b653473950ef3d0f82be561805a74
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
| Download URL | text2num-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl |
|---|---|
| Size | 496.3 kB |
| Tags | CPython 3.8 Linux glibc 2.17+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
5979db7df4cf8012b48b26f76721e625a66db2c604f33cb3ee47c7a59309e956
|
|
BLAKE2b-256 checksum How to use checksums |
da604b44828fb18e9999fa111ddfffba5b6c00a48bd55ecbecd125c29cc1d8c5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
| Download URL | text2num-3.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl |
|---|---|
| Size | 392.4 kB |
| Tags | CPython 3.8 Linux glibc 2.17+ ARMv7l |
|
SHA-256 checksum How to use checksums |
2248c77676520072098178dff2d114ab10583e601f4e82f9b4e78499dde6b401
|
|
BLAKE2b-256 checksum How to use checksums |
a369400cb3084d80eb8cff69808594d087c79f0476858bbb6926d40a03fbde25
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|
Release files / text2num-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | text2num-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 385.8 kB |
| Tags | CPython 3.8 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
b13ecf214af4801beab27ce31dac78413a7c6b17a569b702a1c725850dcf6e81
|
|
BLAKE2b-256 checksum How to use checksums |
6931c45214ae833b8acf0ba53f1975334f6206956dad1e98bb79b53d1a6d8cea
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
maturin/1.14.1
|