Skip to main content

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.

Documentation status

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 threshold optional parameter to alpha2digits now applies to both ordinals and cardinals. As a consequence the signature of alpha2digits has 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

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

text2num-3.1.0.tar.gz (16.9 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

text2num-3.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (589.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

text2num-3.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (626.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

text2num-3.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (668.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

text2num-3.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (562.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

text2num-3.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (383.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

text2num-3.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (408.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

text2num-3.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (494.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

text2num-3.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (391.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

text2num-3.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (385.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

text2num-3.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (411.3 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

text2num-3.1.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (378.7 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

text2num-3.1.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl (403.4 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

text2num-3.1.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (377.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

text2num-3.1.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (405.2 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

text2num-3.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (583.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

text2num-3.1.0-cp314-cp314t-musllinux_1_2_i686.whl (619.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

text2num-3.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl (662.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

text2num-3.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (556.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

text2num-3.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (378.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

text2num-3.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (403.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

text2num-3.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (489.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

text2num-3.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (386.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

text2num-3.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (379.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

text2num-3.1.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (403.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

text2num-3.1.0-cp314-cp314-win_amd64.whl (221.4 kB view details)

Uploaded CPython 3.14Windows x86-64

text2num-3.1.0-cp314-cp314-win32.whl (220.5 kB view details)

Uploaded CPython 3.14Windows x86

text2num-3.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (583.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

text2num-3.1.0-cp314-cp314-musllinux_1_2_i686.whl (620.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

text2num-3.1.0-cp314-cp314-musllinux_1_2_armv7l.whl (663.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

text2num-3.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (557.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

text2num-3.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (377.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

text2num-3.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (404.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

text2num-3.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (489.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

text2num-3.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (387.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

text2num-3.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (379.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

text2num-3.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (404.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

text2num-3.1.0-cp314-cp314-macosx_11_0_arm64.whl (336.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

text2num-3.1.0-cp313-cp313-win_amd64.whl (220.6 kB view details)

Uploaded CPython 3.13Windows x86-64

text2num-3.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (582.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

text2num-3.1.0-cp313-cp313-musllinux_1_2_i686.whl (619.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

text2num-3.1.0-cp313-cp313-musllinux_1_2_armv7l.whl (662.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

text2num-3.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (555.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

text2num-3.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (377.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

text2num-3.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (402.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

text2num-3.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (487.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

text2num-3.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (386.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

text2num-3.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (378.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

text2num-3.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (403.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

text2num-3.1.0-cp313-cp313-macosx_11_0_arm64.whl (335.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

text2num-3.1.0-cp312-cp312-win_amd64.whl (221.7 kB view details)

Uploaded CPython 3.12Windows x86-64

text2num-3.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (583.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

text2num-3.1.0-cp312-cp312-musllinux_1_2_i686.whl (620.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

text2num-3.1.0-cp312-cp312-musllinux_1_2_armv7l.whl (663.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

text2num-3.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (556.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

text2num-3.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (378.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

text2num-3.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (404.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

text2num-3.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (487.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

text2num-3.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (387.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

text2num-3.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (379.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

text2num-3.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (404.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

text2num-3.1.0-cp312-cp312-macosx_11_0_arm64.whl (335.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

text2num-3.1.0-cp311-cp311-win_amd64.whl (223.6 kB view details)

Uploaded CPython 3.11Windows x86-64

text2num-3.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (587.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

text2num-3.1.0-cp311-cp311-musllinux_1_2_i686.whl (624.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

text2num-3.1.0-cp311-cp311-musllinux_1_2_armv7l.whl (666.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

text2num-3.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (560.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

text2num-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (381.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

text2num-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (406.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

text2num-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (492.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

text2num-3.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (390.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

text2num-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (383.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

text2num-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (409.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

text2num-3.1.0-cp311-cp311-macosx_11_0_arm64.whl (342.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

text2num-3.1.0-cp310-cp310-win_amd64.whl (223.4 kB view details)

Uploaded CPython 3.10Windows x86-64

text2num-3.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (587.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

text2num-3.1.0-cp310-cp310-musllinux_1_2_i686.whl (624.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

text2num-3.1.0-cp310-cp310-musllinux_1_2_armv7l.whl (667.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

text2num-3.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (560.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

text2num-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (381.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

text2num-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (407.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

text2num-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (493.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

text2num-3.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (390.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

text2num-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (383.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

text2num-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (408.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

text2num-3.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (590.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

text2num-3.1.0-cp39-cp39-musllinux_1_2_i686.whl (626.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

text2num-3.1.0-cp39-cp39-musllinux_1_2_armv7l.whl (668.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

text2num-3.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (562.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

text2num-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (383.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

text2num-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (409.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

text2num-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (496.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

text2num-3.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (392.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

text2num-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (386.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

text2num-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (411.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

text2num-3.1.0-cp38-cp38-musllinux_1_2_x86_64.whl (589.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

text2num-3.1.0-cp38-cp38-musllinux_1_2_i686.whl (626.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

text2num-3.1.0-cp38-cp38-musllinux_1_2_armv7l.whl (668.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

text2num-3.1.0-cp38-cp38-musllinux_1_2_aarch64.whl (562.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

text2num-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (409.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

text2num-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (496.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

text2num-3.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (392.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

text2num-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (385.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file text2num-3.1.0.tar.gz.

File metadata

  • Download URL: text2num-3.1.0.tar.gz
  • Upload date:
  • Size: 16.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for text2num-3.1.0.tar.gz
Algorithm Hash digest
SHA256 e025ab59f2273b3fef8b1fbd082f76559161e4b45cf43a6281bd5eb315a115a5
MD5 9b15028e8ed901d384bcc7ef46ef1401
BLAKE2b-256 b7253006bbc89154cf5240f6ddaf43c63bab8895dea61724f545a7b9d3cc8340

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d5eeaf4937b5d9675ee71b1ca69f9a6d6debf379a20212b5bda9bbbd1fe2562
MD5 5aafb737dc2d4f8fed8f3ea23f6337ea
BLAKE2b-256 6eb1a8bed3256dbe04082f89c7c7592f60dbe67bcf274adad57ef6b947cfa8ce

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d3df3e05d204eb3a4fe5a4d671c9c8e273c89672c07e29440fa1bd7aa03dfe0f
MD5 b585e3f3fa06bc748b481b4ec905b509
BLAKE2b-256 123ed58cbba7096e15933e905cf555442839c2c99ebdaedb19c5f34bb31f8c5b

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 867096f490395939749d7db935f6967d1e7955eaa20e78eafd8ad7640fb3c9cc
MD5 50c947afbe82233ce9d9a78c16489801
BLAKE2b-256 6cfb493613abd9d7cf57b19d9733e47dedfc76382fcb2d7648456d71cad95516

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 17bd90a4f5a468818ef2ba4b1a57adb101ab5f5fda8b2fc925869e00ba4b7fb0
MD5 241c53b45dddab3bf78c0613c69dee94
BLAKE2b-256 866f12c53ca0c7641828186c2d9d93d7ddf75cc471ef4d12cde4dc6ebe023fa7

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3846a89767072ff3e6d5cd37926b9d47233fd32a9ebb06469525228e5d124e3e
MD5 55c97df2c64b22340d67bf569078564f
BLAKE2b-256 c881db179b47600ef8c023a10a94797bd55ef04fdda123ea98b737384effcf6b

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b8c9c51ef6948a4cadc9e52acdfe007ea50ee005e1023e2e2caef2dc55e73b38
MD5 065698b620307acef39a368761f8d4d3
BLAKE2b-256 45d45c375801d30f78768d25e51767ce5aff3b419eb6cb56edcece2aaffdc59e

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c0483c602d2df34bf6d765442e2b486af34b785d202dfa7a93ba4a218af82cb2
MD5 4dee91c127d836b1bff18b106d137568
BLAKE2b-256 f704ed8f6122d4fc488a8648a03e67f4187f4e1e7393ab48e6fa3ad1aeb74731

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3a4d731c0f8aa8bc7241c9479c382e46b7d4e71ae09d79c5e097f61d59f11fa8
MD5 7d3645ab162ec15526a30431bcee3870
BLAKE2b-256 4a690e544a06f08e0fa09dad213181efaf133f4959e49644cf85974ac0c73d0b

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7b0ed6b5d7b0f3d546d29179aaf8dac5b098143a11d0f92bea26f1907c3b33a0
MD5 b779920c134695c327e4900042b14ba0
BLAKE2b-256 3082f74dc578a332826e80bff126859b0840e45ea45ec6b444c1d2577fcab122

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 061ab17bcd27813c93f9462d9c0a35d7d5a85fba2b8ccd0f897d506e39c8b783
MD5 8d0213354bf1066dcd6ac129a4374f17
BLAKE2b-256 ab59598d8c427e84996e0eaca4d4638d8c836f9026084f5af0720a54747b58d1

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a553f60cc8bcb94f330dc9327c72cc0cbc43ac133d621bdd2a5c74621319fa6c
MD5 89ec6fdbdad15024f4219b4329b16851
BLAKE2b-256 8910c775741cffd2b7f98f21305bc502c2f556323dca5d4656710fcecfec5de0

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f3a16ff4ae4e15dedcf62f33cd397e25d8adb1e364fe142f1938a381d21867ea
MD5 b5678d9588ad746bbeebc422b5704b56
BLAKE2b-256 1b854c5b13f261ebaaba53973859f0818c583329da6fde134a63be69062a46e3

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e61935909ab56c3d78e07e5537ac77876c989142434cf3ddcf262cb9ff20ccf
MD5 76bca1133790e74147c224829842b817
BLAKE2b-256 e9f691578173ea8d52c302cf38d2f3dadf0d67739b56c6176175169e97e0dcea

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2fe7d59e96d71cf913e3373b2df0f4eb2903a2f6b3ee4e3f78b6b39af934a3a0
MD5 2d91e27d6fc899bd7decdb5349aa5bdd
BLAKE2b-256 db95f98bdb5f7fd5cda807610b8a57684dfcc769c917c28a1f16777d602ab3f8

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 66b8ddfdd05e47c22e924d6f5e5e26421ffc5711e54c6426d51befd8e913eb3d
MD5 ce4cca05ff6dda87d8b92b6bffb99eb5
BLAKE2b-256 56d22c31e10560df649b629450b14413daf61229062409d7b4dddc39e0576e92

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 29fe6d35e78a1bfd980c5de4dae2c52200d978e5a80f3fdfbda69c5929627fb6
MD5 a66bc9c5665c810e8d7165c37514767e
BLAKE2b-256 c198562f7c8997776768b805410dce6f226c177118b631fe73e924332d1ca191

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 60f478f422edc8be745ad3ea434efd5a9e053fc201d50e6f1bb67283adb747b4
MD5 7a71da780d3c26451b1951c29322f316
BLAKE2b-256 689d6d3f532c35b7fc0d14853123b86e95210473090765abbcc5f1d19213f748

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ccbb5ae2cc94717e8d2e0bcabde3b43e9dda417eb48a525a7fc341e9ad127d06
MD5 fdfd73dd64c002c0c1225b3b97cdaae3
BLAKE2b-256 ba8cedd3196fa98bec2eb0a73949844b0c06668d7b4cf368ca34fcd635b7ca4c

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b898a2e392cb295fd96237332a6209317541818d5fcfd2fd5b02c5ebd73406f6
MD5 f63aefcfe7869e659a2fbdb950a5a2b5
BLAKE2b-256 7ab3a5c6ef44f68d88aeebbe10218e0186ccb4d4107a5700ce33636a1da049df

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f15137225aad36d368aeb549c029df243d99edc6bad3ea8f975be2ee2274f330
MD5 8da3ee46a408a70aee324a495db7bca8
BLAKE2b-256 b98c3fb7b9653e07bad01733c5f117036d8fd7497781c7bcccbc4b0f692f15f5

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ad6eacf2e717b4b5e54d472e4619199cee2e5900e714709bbbf3bf7b99bcdc9d
MD5 d76e93a3c700ccc58e8c09a1cd466946
BLAKE2b-256 2ba3988820e03f08ff9f865c000463d22ba94bb3f8b93a45269105ffcc446c07

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6bb77123dfb644e232b296e324796e33e247a94e61616cbace76e06bc42c798e
MD5 2e141a0c9bd850279733f1210801139d
BLAKE2b-256 4f969fd78a71520122d36fc774ce67aea3becae9b6aeafa005268b8b009bbb5d

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b695e8a6d410793db6a5faaa51ed80618f02ebf031cc6f1db99538723528175
MD5 10901387c338d398bfd9d922ce055797
BLAKE2b-256 400dd74f24c58050e1c16cee15500dafd43e3cc738173459e7b3f84c65912705

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1b122b3158f3758c97ae77d55683642b91c12f3c8459818ad92704cbbfb13b20
MD5 3078ff857f98bb05aea9f68c49c11970
BLAKE2b-256 dfb48f4f01c21957c530a63169971860abda47b0dcaa9e7fca1175e629fbb711

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 df2e4a8aa525fbf3e99b78bde852b47bfd33af6612d9155f904f3d34078ae172
MD5 43ee075537f3f27cc7498cfd45d732aa
BLAKE2b-256 d3ca85668b659b1a352ed59f65fc474d13e6a3c03204c6afcb424cabd0a65f1f

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: text2num-3.1.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 220.5 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.14.1

File hashes

Hashes for text2num-3.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7e478a0989ae14e90926185d5cf1962d6ad409c6ccb6162693b244a0c4f5dc63
MD5 d5a04103fdd09b0a507d5d2759e94d0b
BLAKE2b-256 bbae5708e58539f6c87f78d5db46a15cdd21bbc88c2359606bccbd0e11e10206

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 daa1c97f2213829d481a064d9cd96d782dffec7bb96ae6bffc2c248a2cded3f0
MD5 ee8839e05c34f4edbb3e549a5953437d
BLAKE2b-256 41d28c8b85478864b43e0a9c12d7c27895ac00c129cead939133ce02daa35ea8

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f41c10817414394be103a5c0373aff41dc285e7bf2df63d5e11a9d2c27b8b0f8
MD5 bfdf89f52234d7a501b8106797526a18
BLAKE2b-256 2cab8f27090c11dfad81b2159860b1112d3400779456614c1fcaab5fa0e0cade

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 206c03b8a4cf0363faab520d12b9f6cedaac99402539fc79a1bb304e4945f6cb
MD5 629c4da4a00bcec7b9c4381013581a69
BLAKE2b-256 7dd7a790f5dfe2faf3af1db08e797fab1a3eefea3591f3ced1aa39dd692a96cc

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 413f59875ea348bdbf8a4285a6a1654512092809aaf72a8da149141e2636396b
MD5 b988589aec5556398948bdf736343fae
BLAKE2b-256 a5e8fcde3cd774a7991b7a3de76a423294f546a1bbf65f090d31f01781119325

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1575a7e5c918fc202d9d25cd1f9b798499833bfaae6f3b5259428d697a3d5e66
MD5 314bf62a7be44f4ba24bde81729fe798
BLAKE2b-256 65d5eb98e3221557efd854b3f4b09409a047119c063cb5a7d86e85660afedc4b

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 eb7e81547518fa0f559186bed46defc7d7f9ec972f5c265fa382f908b26b3310
MD5 93e1cb963cbeeaaba3ec111f4dcaecf6
BLAKE2b-256 bf54d85130e5de295202398a6f4c9c8576a08dd5093f383363ab59ea2bb16aef

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 096927956dcf19d16974e304b302c5094188f2d1eb062912e3a82d4a15e93825
MD5 82e6f4bea05a81de83a9ffe4392aa620
BLAKE2b-256 5e67cf3134c00cab5ade6476613ad78356b082a95a23159c399eb8cc7681f4bb

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6483a491f1697c75648f5b4e5638962292280434a55022dd808bf4ff921f5a43
MD5 a88027a8af271d7f1c56364ec7a31d6b
BLAKE2b-256 372b214fa69813b8084d538d5e1e3924a0d52d7596def620799789e8ab90f4ff

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3750880cfe4a26134e5991410565392e015f39fa6364bacc2319b1f1faffc2c3
MD5 ab6ad194c931ff170f0efe93d8c224ba
BLAKE2b-256 3e8155239ade14eb72324184c051b945d16411ae6a3b24893db6fdc8c72a3083

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 03eb85fc0a73a24c95374feb1bfc9109779451f3353fea2d3b1ea0c81f5fd85d
MD5 6dea41daceccf379bbefbd376b5fb5f7
BLAKE2b-256 a6989b271fbaf1c6ae5f8dad8c5d4634bb7bd841d8ee4a1e3ba7af1b3bcc5c2f

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f16afbddeeb5b21c3da9ebb75c932fbb78e3b4310bacf888b23b6caaef814fe
MD5 1571829827875beaf7f84728336e75e8
BLAKE2b-256 db6d4cef40b5b57de8357f4318a76635011e3c13680da12c638ba4a5d618655c

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7195588e62aef1c6304cb3baa717e06dd09e9b1d32292a0c5d5abb6e8cb98648
MD5 c912d364f57ecfc85c4ea595d4221bad
BLAKE2b-256 e72e15c1071d641259d6ba79cd6edcd0dddc7c9fe247ba3e14078655955ea600

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1c08391328d4f1969dd2d033a0cb672cb480a09862c8d1e5d480bfc73ebf34f2
MD5 c96a0692c4eb08c16c36f5bf44842436
BLAKE2b-256 f19513a826df9e25c3502e24e680109cb1e094019ee1e341449e5a78ed7039a9

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 57eb863476e3cf83ad9b62b1c02ef8bc890e31919e6eee32db1a8598096847b0
MD5 738563264c274a20a33fee6e5f28e5f8
BLAKE2b-256 32a1c132da39655b24e0e773ad145ff6ab6e318253faf58fa90dce30a54efbfe

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 16b3197d488848e83fb2144501e93ee8f071e3e30b8fe7e2c1fa2f61f0e939a9
MD5 4bd0ba873105a969868f427256ab0c3a
BLAKE2b-256 b5095dd0e6c181fde54c2feabb710977e0a83348ce61adeda3c83fbb77561ded

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 12d2378e306a5437ac9ba396e6f7f7ba0e95c4e66f7286f94199d8c46613aaf3
MD5 61b4a0edc96f03cdaf76795ff7900db0
BLAKE2b-256 bcfcca5aa3c4dcacb482fb88e4db835add650eca5781658825cd94c007c3e989

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6581060324992911a5227220342b32a8c2a51c201487a057c94564e94c3b597
MD5 ffc8e4580b98e8c4c0d1a429f8dfd8f4
BLAKE2b-256 bd29c054867e3677cebfd133fb920d9b988868e71b0ce826c022d1020dd4b5e1

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f2fa8be8178882c41c82289084de027aec186d4958bc198612c6482f80279e56
MD5 a9fadc3ec57811e7ec32d86fd7e8a4ae
BLAKE2b-256 f6fef2d0d4f91a4f9ae5e4b35dcf699e7b2c9b162a82c19b8d8445b04561fcd2

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 167d1313ca2596c739a1bf7902f43232fd1560cca5ae448b4d26346564dacd76
MD5 c312065b9a22c39cc85fb6a17245d1d0
BLAKE2b-256 2e587197feaac99e0a1ef9554474850669756c240493e479a2eb1c55af73ff3f

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e42e9cc9f2c1fefceef49a7e35aae4afc4fb99b8a55ca95e113a327c20736754
MD5 33fdee253d66c7f6d960934549e90d8f
BLAKE2b-256 8dec5018c35d1cb4cead36ec5bdecea79359f143687747b52b4b18df446a8f98

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bdad292f903547540bec26ddcd8df5db104a6f3a2f049f6327c394999e7f48a4
MD5 5a66763d4cb8d9346ed01a25a928cd47
BLAKE2b-256 cabc4782e37caeba2556846dd94e5f6a4f79329138ce6b82116f8764a9d59e02

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7a04067ef41c77f439fd4c7b48c1350e6448eb74603cccdc7caf40cc544bfd9e
MD5 7d1811783eafadb9e30a0ea3522c9612
BLAKE2b-256 9784c19901b25cb7a8db29701e0a1e38052bc5e0ede54409908dbbd23ca9d15b

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4e31c265047ca2fa85df9ccd2446668b96d5bdc9304475e1b4bdb9937fa0c99
MD5 68553c8b9a5a10cdaac391cef7681e27
BLAKE2b-256 0c5e6593b96c34f45766a632fe1774554f8fa81a93280d3812e896f4c727695c

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ab95729920321ae2221d1cb95be480780dfb6e28c3be682b2e3d0585c54be1c7
MD5 c05ee28133941d6fab7b1c5bc679ffea
BLAKE2b-256 a2a4ba929f5344027de387660bd42efe57588e4502169f1c2c9c14536581d260

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c86dc685d6e324ac115b13c0291c6596f28d56226c2678ae4114b2a98fb67633
MD5 ef386e54870c7e07adf0ea37d55c2cf9
BLAKE2b-256 aa85c40b7b12b312ce5d7163c5f63557100293c47463b3a662eb1d8d8b16d2fe

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 015fc39b7fe5d78dac38730353493617bc08f26c555a184321dad3c07aba6357
MD5 6f3dce25f3a6934c5ec199a984695cb7
BLAKE2b-256 b1f71fed0d0765606a6774c9a62df9f4c7c83977c86d9e46fbf3021dc63dbf1b

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c4e4ec1e560c1b9e93f6212c0ac3d94bd4386af539cafe794d8a1eafe1f635df
MD5 f628f078005846867c4ea3b04291b519
BLAKE2b-256 9f423617221e001524f21f3cb58dcb053ccc6c6f28feb507136fb8b656339c90

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4c94e12ec56f4ad11348da546c7dbfc60b4ff0949ac20281557abc5520639c2c
MD5 d8d517942294d42624db4239a3c973e6
BLAKE2b-256 9c3003c01491622e9d7393e6c4d99e5011ae75650492641c34f49029fae6e29d

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e170e06fc538122fa34df5aaed632d4c82aaaaf919d69e445f741fc105c8dfdb
MD5 c2091da95d831e8066577f90ab5a9831
BLAKE2b-256 b6011bee1ed251bf15453c9e513d06c6afcae21b770b7d0fae09edee3296dd95

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3778a32dc3ae4cf711f4af04e2f749678c0ae90717efdd789e4441a7ba0b4031
MD5 1e723d957c273a45b01c7045ef47c6dc
BLAKE2b-256 c38a19e78982515491291155d41f99c80823fdeb6058389f89826750e0f72402

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 091bebc82d3888f449a20a93d58fec7b60db7392c3f0aa48d18e7bbd414d6282
MD5 4beadfa92f0c42d7ba665b08ca525d37
BLAKE2b-256 df3f394ee41df16fb02693472a8a762cd96baa17347e05809f2c56c0e48dc0c2

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 46393a0536ca08c91787a6190b3338da2f38242ed34988aa8739763617350105
MD5 9a4e412e92d25db664e39eb8a65fb0e2
BLAKE2b-256 2437dfb81b7bb465337bed8f4eb9ae02cb16ca8403f095f38eb23ced7dabc34b

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c7ac159b466bad33440b4db4fe74e61b9fe7bd511ffb2892ea59e5fadd5d280
MD5 80d4cf1a1f0072511673f05bc96d63aa
BLAKE2b-256 42a7beda68bea2bba433c9d5a08a8cb688138f3cb9ba9023568f57554a50e2d6

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 94bf51fe2e0bdf7aac05688ee98ee9cb735865a760540919ad949f35a263ae79
MD5 68519446c475a05b80a4434dadcda324
BLAKE2b-256 29763a61648828fe662b3caeb5eb05afe59a5fe088041407aaec7d30f5912c0a

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9bda066015ade2be641f12cb5590d4a1e916602ce9cc5bc97c1dec66cf6c7d21
MD5 768409694c84f9a4abff425907f5a8e0
BLAKE2b-256 f04efd3b402f9fb5649b974e114712743f10fe857f6f48e8de3caa77a20fef30

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1c25417ec5de8ba7ee542b90b8f5212278b38a952b47754a040e1b5929a0a099
MD5 1d0c6a83ef877a4f1b775adbae4bef95
BLAKE2b-256 fc3eb86a2f77c4c7640ee70b2e9e71cdb0b5beab6b0c589a0c9a74ab10f53d34

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bbc7665aa93b14cabc88da2f8507af65ec5a8854e4005a1706bf5187f52a0774
MD5 86da0d4698d899796ffb076c1fd569f2
BLAKE2b-256 747e432b061a858d1f714b61d18ea5a4b9975ea796013f14d2c0fb29b8ade826

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 675effedb4ac392b82051bf279ba9c811dcf50ca590d4113e59eac8ade9cff5d
MD5 81f2d2b7d468b1a21009c6ffc3e1f550
BLAKE2b-256 aea1a90b69c8c42d47e0f36b5e6d414725f43edc629e60c8a4e0ea90b32e437e

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9b8341daced46cee233ca6624cc5c48f0c11df8aec3e703fac8932be92de99bb
MD5 49668b446b3e40c339534700f01774d0
BLAKE2b-256 6c9a5fad4ac61be5573e62fdbd9f88576598fc4525d484ba246a6bcb07046c2d

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6c218cb944b88a9c2fb7a12618061f012d3f59ede235a4725b3ae5ecdeaf8b68
MD5 8f9a03ce3b15a3a3f8319e5922c09b11
BLAKE2b-256 9c5b1fd60e196cce3a8189c04584825a177777083d4f09b15d5f074c9544bc03

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 112aa5f27ba44321d21a61b3470b4111e28a467329912821ffcfdbb0bf4d184e
MD5 5d8423af7b0ca0f42446309fd5392b24
BLAKE2b-256 530826819d623784070cccb999fedf1579624376f4dd9a69e771ec7dedacab79

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0f9e048aa73e76e1c0903a07cd1ea3c858b9c300d4748119437aa5ae19f52997
MD5 1e31b5a50be15527749cab4fbab90b6c
BLAKE2b-256 dd5d99e188b454047a25814d76efdf997f75966b95e415accc3ffa5453a79de9

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d2d0ffa1bd8691f87fc5b7edcba07719eede9c026927efaa706d2080d55dc039
MD5 826fcf6d8bde34367c2a699531187ce4
BLAKE2b-256 f2de9234c37da45e40e264bb0b90ebcb733d828b4d3f5799f25d37fe3148875a

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 38f453f61b8233962bda6f4dadb38beacf6ce6a491a96fe71d0cf4ba915e3361
MD5 6c7ab7a7028b8eefffed7738c4abd235
BLAKE2b-256 ed6c62a167e3b6ca5fbb30f02854e0c7a4b58994e5002da6abec4577004b4d44

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f6f822c5800ab54e091fe5fc7d73619aa9b00284b1b14dd24a6b7c31948ca4d
MD5 719c6c095ffff700179644056aae5e9d
BLAKE2b-256 2f32eebef0c1a0195cf1f22af06ab5388ef4db47b99b6f4562ea70109be9cca6

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 036c58473a0d77ad297fb0a09fe4150fe81f0d169f46e5d1ebf2a9adb51e9a70
MD5 6cf2785554a2c7fc6ba5cb35cbbd40e6
BLAKE2b-256 c6d7736acc16346ea6d1d6709baaf6af5fc2b57a941a43293014aee3a2f5b05a

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86ee527807fe1135f6902918318ce575968553522764c943922ab773e1b6899f
MD5 1faa5627cb51a9288aca4f13950ef7b7
BLAKE2b-256 7a5157b692ff3ad530f4c39a8e8c0c2cdbc5f66574d473db8611e652e766a1e0

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b06b117092f31c548f59c1d4f5de539371d7fd44ee459f1869e7a4f2f5a6b37f
MD5 a7b03ba64954bcb759eb636fc8a2f0eb
BLAKE2b-256 a3ef5cd564492917d5284e9c67b10301113236c390cee204561c2fcb203b99ed

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 62973b4ccc16cba8f0f50df1e7e589d84965e962ec91b8924a998e1f3da96fb7
MD5 cf6c792865484d8e47df001de49389da
BLAKE2b-256 21f56d4a379d3afae58e295650392402c0f7adb3bcbe94cad4be2477f84b97e8

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6c86b6027eb7668076f06638697ad4c9d78c30c77ba5f5f871e244d41616727d
MD5 acfb9965ea2a97e3aeb4eb513a6de26c
BLAKE2b-256 3d22b6a4486c75fb6970e5693b585329096fa9d4339cb4bcca3c0b4dca0410d8

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f67db0cec99f72973b9f77438be9b0a77761bdb328a2b46c81db376eb72ad5e7
MD5 0bf08126b6d938e40120992928001bcb
BLAKE2b-256 3214a339400bb7aae4a3a9250b2bccdd8f34cfde24d6d55254a3fa786fa8b3c9

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e8d6cc052933b441181885e94317b4bf3f2510d672f59af50f052780cc9369f2
MD5 baa02f4b07289007dc59efa92e121c13
BLAKE2b-256 92210584c5bc6bf491d72a7e960e7289476122891a7dff3e2e56cdfd2f597c48

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae7b63054cdba766fd79bbf29c8f25c1da5946679fd0923fa94478059c2c0dc0
MD5 31633f2745d60bda92464d797a3bad16
BLAKE2b-256 a7efca31a62d134d7dd9e91f9044be36c3b5f6fe142eb643e50e883f68132d7e

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6da121a7813d60da7bf5aae60cb1e1e0e54e009dfe0b7c8a0c13a02af245a25d
MD5 ce79e345d632186e234383dd63c4e195
BLAKE2b-256 b995e15f82c438546612a42f64e1c9b2d4b5d494952a49e1533620892326e016

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 205125ae3c1c3135badb7994a2e3b372d9d19a2e7d21c21deacb8dc7b645573c
MD5 9c449ad04eb8d9f6c051c96a5f94abeb
BLAKE2b-256 dc2a2ca9c9e16aae59901731d2d2719c64a9bdb23f52b63a5f69ed53d5e564c3

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 851d7310c012b415e3c615644f0f1ada8b126fdf16c2b9b029953d715e0e6f1a
MD5 e5d8d4086ce86e1bad4e5b591a3e384b
BLAKE2b-256 79fa2c157657d76d69d647cabc43eab9e069a583014050cbabebc1e20f80c4dc

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c71890962e88cad15ff1b69e153036bc156cd7d7b3e3503ae27c102036fbaf1
MD5 61495d9092cbb0c65d84bf68a7c26a9a
BLAKE2b-256 e25c08ceef4adc4c29d9877373c1d4e311d51adc04e7c302cd292f853e21b67b

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ff7199b61fbb7bf51e45d9e4647b3dfe5a50eb2807fda54de919751d46ec9860
MD5 f8265e412b1c7e0c88a4a1e2cdebca40
BLAKE2b-256 590ac58cf4a734837cad34bacfb0d9435893731044be6eede9aacd5f96726ef9

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ae8a23a3169cd939a7fcb23641390e69f750cf459d684475fe260147cfa41316
MD5 618c4146cb86053e3aae424393f84256
BLAKE2b-256 ff5fbd815ff0fe6e72b411a3425028971eb8d4c453d76bdac45f027ce5bc6380

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5e2bea88151f4f7d36e9c000b84caf6b94f256772468018d3b1b9ffa727f9b2d
MD5 224d980ef6488ddc2d0ec8e6a55fae27
BLAKE2b-256 9c9f3a840527e5a929efc5562b81fb0f68152419b6d70dc5b0a277fd8164101c

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8b90ab01e1fdc3e1c2ff471fa4729ae49e193e6aaf8726ff3a535fee82686456
MD5 520d91e6a06e7819b115c9547eb993a0
BLAKE2b-256 25de06b38773c6f20122bbb1a7f04050d6df441bea75ea3c7ad82ca6ea28cf47

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b62aa77dcfb68381edc2801798cb7b0018d9d9849405bf337195d6ae6fbcb825
MD5 82ccf327f10c6e76e81db8e207052f70
BLAKE2b-256 108f82ab437de5362b4f3a3cee49ad90a6f6b58b46504db2d4e7d1132010b78d

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33ea841b39cbcd831f15e053e76c2a2c28272807706219373e02f2393403948c
MD5 e28bc34bd72c0109e3924453e084e4de
BLAKE2b-256 59948150eb68f077a7c8a8979e5b405b330f482c82c0102a2ea1c57f831d88a1

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d78a6e8a1a182fa4ebb5236a83d80e8fa3a514bd2aa2169db2f07fd852d448cb
MD5 da39520ee20f9a50b6d4cbc3b93972f0
BLAKE2b-256 9c963869789edd2f75a14fe86f4fe62021dbed25dd80dbaf2de21181da2bac34

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dc18a801070b36fa417a8c8a7ccb256fd1e2395729e7887ab48cb436bb51979d
MD5 da502fa34fefddd2886dd779eec5488b
BLAKE2b-256 abdadcfc7f6790501a7208a0d24652e46fed97ddb652958cf9fb0589ec6037c1

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d0eb3cd715dd9492d87e3ec9ca7e90f5d0a3afa016c473db9dfbf270f02ca25a
MD5 e8ce86c44c6ba71501ea0430698db533
BLAKE2b-256 de3819f9a398693a57384adaaba0d3ed7f6067dfea6b35abea4678ebaa95430d

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 61e588e782219ff1f208ef2d837a8c161c2ccdc721ed2767a9dc740b203d77d2
MD5 0a96dcf624066cff94653398344e7803
BLAKE2b-256 48027d5f1d3790d267019f350a07cd156abd6a3776af6a2e3ca94ae8af83dc7a

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b9bb46143732e2c7ed1b0b59dea7a97fa41a1568aafd287e62312286cb065def
MD5 8d151890c7e7b76962b1133af9eaba4e
BLAKE2b-256 649e03174bb1377f010f1e0032a63ab9652ca1be1056defd919e8884fbfad8d4

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 84a32a7b033b8f461f25923609347c0e26e970426dc0dab19c42613a99074ba9
MD5 efcc80ec05a5cce2810f2f547003b5ad
BLAKE2b-256 ed64082257eb507fe71d13b966b99cde25ac93c204ed300af1b67ab6144635e1

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3b85fde175e6cd137948e4e36b3dc9955e83e74909a70929c472614bec6547e1
MD5 8104a056481115a946b1fc7eda4260b2
BLAKE2b-256 46fbf1fc28e39a1731f1863abd5c4660f88dabb61dfcb066203b8a524f716cab

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fbf2a7cd70e27e4afd57e804f6736fe763e423137e68dc57c628b14cc477767f
MD5 0d97e299d6ac1e2bfc328083076a44e5
BLAKE2b-256 8a9bb7dd3f3654f7d922c8709c88f6a8f5f289b95e0b006a9b864a28f2fa8df2

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e380c7f83db8120223d1cc55e8464dcdd966eb23fc783ef3e7c798f4fee33221
MD5 e1c4629a6f904ab8d22e86c94e9f7432
BLAKE2b-256 004ff93d07f9910f8253a42cb53f632f43e8ee2dbae0538ec1a12dc0c6536759

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2d1c4c6e1b0127fb91756aed1c62da6a3d9a7dda5734c879556e277ac6cb490f
MD5 a5abfb6dc291d44481d54d7086c1d79d
BLAKE2b-256 6df1a2acbe86c564a1e989d35d98a142df5b653473950ef3d0f82be561805a74

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5979db7df4cf8012b48b26f76721e625a66db2c604f33cb3ee47c7a59309e956
MD5 ed9d9cfd0fdbb691a1507a2ff81f7e2e
BLAKE2b-256 da604b44828fb18e9999fa111ddfffba5b6c00a48bd55ecbecd125c29cc1d8c5

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2248c77676520072098178dff2d114ab10583e601f4e82f9b4e78499dde6b401
MD5 885e458cad8b77b4666a8b515db26898
BLAKE2b-256 a369400cb3084d80eb8cff69808594d087c79f0476858bbb6926d40a03fbde25

See more details on using hashes here.

File details

Details for the file text2num-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for text2num-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b13ecf214af4801beab27ce31dac78413a7c6b17a569b702a1c725850dcf6e81
MD5 a3d6d72cf0647c8ac4eb641378cf26e7
BLAKE2b-256 6931c45214ae833b8acf0ba53f1975334f6206956dad1e98bb79b53d1a6d8cea

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

3.1.0 This release

103 files

3.0.2

107 files

3.0.1

107 files

3.0.0

112 files

2.5.2

2 files

2.5.1

2 files

2.5.0

1 file

2.4.0

1 file

2.3.0

1 file

2.2.1

1 file

2.2.0

1 file

2.1.1

1 file

2.1.0

1 file

2.0.1

1 file

2.0.0

1 file

1.4.0

1 file

1.3.0

1 file

1.2.0

1 file

1.1.0

1 file

1.0.0

1 file

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page