Skip to main content

pyahocorasick is a fast and memory efficient library for exact or approximate multi-pattern string search. With the "ahocorasick.Automaton" class, you can find multiple key string occurrences at once in some input text. You can use it as a plain dict-like Trie or convert a Trie to an automaton for efficient Aho-Corasick search. And pickle to disk for easy reuse of large automatons. Implemented in C and tested on Python 3.6+. Works on Linux, macOS and Windows. BSD-3-Cause license.

Project description

Appveyor Windows Master branch tests status GitHub Action build on test -  Master branch status Documentation Status

pyahocorasick is a fast and memory efficient library for exact or approximate multi-pattern string search meaning that you can find multiple key strings occurrences at once in some input text. The strings “index” can be built ahead of time and saved (as a pickle) to disk to re re-sed later. The library provides an ahocorasick Python module that you can use as a plain dict-like Trie or convert a Trie to an automaton for efficient Aho-Corasick search.

pyahocorasick is implemented in C and tested on Python 3.6 and up. It works on Linux, maOS and Windows.

Older versions until 1.4.2 were tested and worked on Python 2.7 too. 1.4.3 and later may work on Python 2.7+ but it is no longer tested in Python 2.

The license is BSD-3-clause. Some utilities, such as tests and the pure Python automaton are dedicated to the Public Domain.

Testimonials

Many thanks for this package. Wasn’t sure where to leave a thank you note but this package is absolutely fantastic in our application where we have a library of 100k+ CRISPR guides that we have to count in a stream of millions of DNA sequencing reads. This package does it faster than the previous C program we used for the purpose and helps us stick to just Python code in our pipeline.

Miika (AstraZeneca Functional Genomics Centre) https://github.com/WojciechMula/pyahocorasick/issues/145

Download and source code

You can fetch pyahocorasick from:

The documentation is published at https://pyahocorasick.readthedocs.io/

Quick start

This module is written in C. You need a C compiler installed to compile native CPython extensions. To install:

pip install pyahocorasick

Then create an Automaton:

>>> import ahocorasick
>>> A = ahocorasick.Automaton()

You can use the Automaton class as a trie. Add some string keys and their associated value to this trie. Here we associate a tuple of (insertion index, original string) as a value to each key string we add to the trie:

>>> for idx, key in enumerate('he her hers she'.split()):
...   A.add_word(key, (idx, key))

Then check if some string exists in the trie:

>>> 'he' in A
True
>>> 'HER' in A
False

And play with the get() dict-like method:

>>> A.get('he')
(0, 'he')
>>> A.get('she')
(3, 'she')
>>> A.get('cat', 'not exists')
'not exists'
>>> A.get('dog')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
KeyError

Now convert the trie to an Aho-Corasick automaton to enable Aho-Corasick search:

>>> A.make_automaton()

Then search all occurrences of the keys (the needles) in an input string (our haystack).

Here we print the results and just check that they are correct. The Automaton.iter() method return the results as two-tuples of the end index where a trie key was found in the input string and the associated value for this key. Here we had stored as values a tuple with the original string and its trie insertion order:

>>> for end_index, (insert_order, original_value) in A.iter(haystack):
...     start_index = end_index - len(original_value) + 1
...     print((start_index, end_index, (insert_order, original_value)))
...     assert haystack[start_index:start_index + len(original_value)] == original_value
...
(1, 2, (0, 'he'))
(1, 3, (1, 'her'))
(1, 4, (2, 'hers'))
(4, 6, (3, 'she'))
(5, 6, (0, 'he'))

You can also create an eventually large automaton ahead of time and pickle it to re-load later. Here we just pickle to a string. You would typically pickle to a file instead:

>>> import cPickle
>>> pickled = cPickle.dumps(A)
>>> B = cPickle.loads(pickled)
>>> B.get('he')
(0, 'he')
See also:

Documentation

The full documentation including the API overview and reference is published on readthedocs.

Overview

With an Aho-Corasick automaton you can efficiently search all occurrences of multiple strings (the needles) in an input string (the haystack) making a single pass over the input string. With pyahocorasick you can eventually build large automatons and pickle them to reuse them over and over as an indexed structure for fast multi pattern string matching.

One of the advantages of an Aho-Corasick automaton is that the typical worst-case and best-case runtimes are about the same and depends primarily on the size of the input string and secondarily on the number of matches returned. While this may not be the fastest string search algorithm in all cases, it can search for multiple strings at once and its runtime guarantees make it rather unique. Because pyahocorasick is based on a Trie, it stores redundant keys prefixes only once using memory efficiently.

A drawback is that it needs to be constructed and “finalized” ahead of time before you can search strings. In several applications where you search for several pre-defined “needles” in a variable “haystacks” this is actually an advantage.

Aho-Corasick automatons are commonly used for fast multi-pattern matching in intrusion detection systems (such as snort), anti-viruses and many other applications that need fast matching against a pre-defined set of string keys.

Internally an Aho-Corasick automaton is typically based on a Trie with extra data for failure links and an implementation of the Aho-Corasick search procedure.

Behind the scenes the pyahocorasick Python library implements these two data structures: a Trie and an Aho-Corasick string matching automaton. Both are exposed through the Automaton class.

In addition to Trie-like and Aho-Corasick methods and data structures, pyahocorasick also implements dict-like methods: The pyahocorasick Automaton is a Trie a dict-like structure indexed by string keys each associated with a value object. You can use this to retrieve an associated value in a time proportional to a string key length.

pyahocorasick is available in two flavors:

  • a CPython C-based extension, compatible with Python 2 and 3.

  • a simpler pure Python module, compatible with Python 2 and 3. This is only available in the source repository (not on Pypi) under the py/ directory and has a slightly different API.

Unicode and bytes

The type of strings accepted and returned by Automaton methods are either unicode or bytes, depending on a compile time settings (preprocessor definition of AHOCORASICK_UNICODE as set in setup.py).

The Automaton.unicode attributes can tell you how the library was built. On Python 3, unicode is the default. On Python 2, bytes is the default and only value.

Build and install from PyPi

To install for common operating systems, use pip. Pre-built wheels should be available on Pypi at some point in the future:

pip install pyahocorasick

To build from sources you need to have a C compiler installed and configured which should be standard on Linux and easy to get on MacOSX.

On Windows and Python 2.7 you need the Microsoft Visual C++ Compiler for Python 2.7 (aka. Visual Studio 2008). There have been reports that pyahocorasick does not build yet with MinGW. It may build with cygwin but this has not been tested. If you get this working with these platforms, please report in a ticket!

To build from sources, clone the git repository or download and extract the source archive.

Install pip (and its setuptools companion) and then run (in a virtualenv of course!):

pip install .

If compilation succeeds, the module is ready to use.

Support

Support is available through the GitHub issue tracker to report bugs or ask questions.

Contributing

You can submit contributions through GitHub pull requests.

Authors

The initial author and maintainer is Wojciech Muła. Philippe Ombredanne, the current co-owner, rewrote documentation, setup CI servers and did a whole lot of work to make this module better accessible to end users.

Alphabetic list of authors:

  • Andrew Grigorev

  • Bogdan

  • David Woakes

  • Edward Betts

  • Frankie Robertson

  • Frederik Petersen

  • gladtosee

  • INADA Naoki

  • Jan Fan

  • Pastafarianist

  • Philippe Ombredanne

  • Renat Nasyrov

  • Sylvain Zimmer

  • Xiaopeng Xu

This library would not be possible without help of many people, who contributed in various ways. They created pull requests, reported bugs as GitHub issues or via direct messages, proposed fixes, or spent their valuable time on testing.

Thank you.

License

This library is licensed under very liberal BSD-3-Clause license. Some portions of the code are dedicated to the public domain such as the pure Python automaton and test code.

Full text of license is available in LICENSE file.

Other Aho-Corasick implementations for Python you can consider

While pyahocorasick tries to be the finest and fastest Aho Corasick library for Python you may consider these other libraries:

  • Written in pure Python.

  • Poor performance.

  • Written in pure Python.

  • Better performance than py-aho-corasick.

  • Using pypy, ahocorapy’s search performance is only slightly worse than pyahocorasick’s.

  • Performs additional suffix shortcutting (more setup overhead, less search overhead for suffix lookups).

  • Includes visualization tool for resulting automaton (using pygraphviz).

  • MIT-licensed, 100% test coverage, tested on all major python versions (+ pypy)

  • Written in C. Does not return overlapping matches.

  • Does not compile on Windows (July 2016).

  • No support for the pickle protocol.

  • Written in Cython.

  • Large automaton may take a long time to build (July 2016)

  • No support for a dict-like protocol to associate a value to a string key.

  • Written in C.

  • seems unmaintained (last update in 2005).

  • GPL-licensed.

Project details


Download files

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

Source Distribution

pyahocorasick-1.4.4.tar.gz (95.1 kB view details)

Uploaded Source

Built Distributions

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

pyahocorasick-1.4.4-cp310-cp310-win_amd64.whl (39.4 kB view details)

Uploaded CPython 3.10Windows x86-64

pyahocorasick-1.4.4-cp310-cp310-win32.whl (32.3 kB view details)

Uploaded CPython 3.10Windows x86

pyahocorasick-1.4.4-cp310-cp310-musllinux_1_1_x86_64.whl (104.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pyahocorasick-1.4.4-cp310-cp310-musllinux_1_1_i686.whl (98.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

pyahocorasick-1.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (109.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyahocorasick-1.4.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (100.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pyahocorasick-1.4.4-cp310-cp310-macosx_10_9_x86_64.whl (32.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pyahocorasick-1.4.4-cp39-cp39-win_amd64.whl (39.4 kB view details)

Uploaded CPython 3.9Windows x86-64

pyahocorasick-1.4.4-cp39-cp39-win32.whl (32.4 kB view details)

Uploaded CPython 3.9Windows x86

pyahocorasick-1.4.4-cp39-cp39-musllinux_1_1_x86_64.whl (104.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

pyahocorasick-1.4.4-cp39-cp39-musllinux_1_1_i686.whl (97.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

pyahocorasick-1.4.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (109.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pyahocorasick-1.4.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (100.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pyahocorasick-1.4.4-cp39-cp39-macosx_10_9_x86_64.whl (32.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pyahocorasick-1.4.4-cp38-cp38-win_amd64.whl (39.4 kB view details)

Uploaded CPython 3.8Windows x86-64

pyahocorasick-1.4.4-cp38-cp38-win32.whl (32.4 kB view details)

Uploaded CPython 3.8Windows x86

pyahocorasick-1.4.4-cp38-cp38-musllinux_1_1_x86_64.whl (105.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

pyahocorasick-1.4.4-cp38-cp38-musllinux_1_1_i686.whl (98.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

pyahocorasick-1.4.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (110.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pyahocorasick-1.4.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (100.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pyahocorasick-1.4.4-cp38-cp38-macosx_10_9_x86_64.whl (32.8 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pyahocorasick-1.4.4-cp37-cp37m-win_amd64.whl (39.3 kB view details)

Uploaded CPython 3.7mWindows x86-64

pyahocorasick-1.4.4-cp37-cp37m-win32.whl (32.2 kB view details)

Uploaded CPython 3.7mWindows x86

pyahocorasick-1.4.4-cp37-cp37m-musllinux_1_1_x86_64.whl (102.6 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

pyahocorasick-1.4.4-cp37-cp37m-musllinux_1_1_i686.whl (95.9 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

pyahocorasick-1.4.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (106.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pyahocorasick-1.4.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (97.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pyahocorasick-1.4.4-cp37-cp37m-macosx_10_9_x86_64.whl (32.6 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

pyahocorasick-1.4.4-cp36-cp36m-win_amd64.whl (39.3 kB view details)

Uploaded CPython 3.6mWindows x86-64

pyahocorasick-1.4.4-cp36-cp36m-win32.whl (32.2 kB view details)

Uploaded CPython 3.6mWindows x86

pyahocorasick-1.4.4-cp36-cp36m-musllinux_1_1_x86_64.whl (101.7 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ x86-64

pyahocorasick-1.4.4-cp36-cp36m-musllinux_1_1_i686.whl (95.0 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ i686

pyahocorasick-1.4.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (106.5 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

pyahocorasick-1.4.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (97.2 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pyahocorasick-1.4.4-cp36-cp36m-macosx_10_9_x86_64.whl (32.6 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file pyahocorasick-1.4.4.tar.gz.

File metadata

  • Download URL: pyahocorasick-1.4.4.tar.gz
  • Upload date:
  • Size: 95.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.10

File hashes

Hashes for pyahocorasick-1.4.4.tar.gz
Algorithm Hash digest
SHA256 32545cad135660ceef556f1d987aee3206e00096735405d7a8de84eb0a15bb27
MD5 fde609ca3bd7e3f9ba271eaaaea13569
BLAKE2b-256 8aba9a870b3ad3ff5fa4a4d8d5905ae1fcbf02f4181cde85d91a2279ad7fdd81

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyahocorasick-1.4.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 39.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.10

File hashes

Hashes for pyahocorasick-1.4.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 35d45492ebd1248f15f8e7500114a8156de63d45c9e6a675ab53b717bfb94bd2
MD5 e951c4ef41e57a5d8b226f6bba8dcf0b
BLAKE2b-256 4109d79b4e175e410c0dd407ecd2e6b6c34593d4b88dae917ff03d2bca2221af

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp310-cp310-win32.whl.

File metadata

  • Download URL: pyahocorasick-1.4.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 32.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.10

File hashes

Hashes for pyahocorasick-1.4.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0bc164eeebac0bfee721aef74843a566247fe85ea05bd30a51ede91a9786156c
MD5 31053f57b4c93d5db042018f0807eea0
BLAKE2b-256 d5a3dc1966e18f73e1aab94599b4de845e02151d8512b1c7d4d764e55070d3f7

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pyahocorasick-1.4.4-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 104.6 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.10

File hashes

Hashes for pyahocorasick-1.4.4-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e3cdeda23a1b2530b787440b0d22ba8f10a3e424b1c53d00ed963d68941fcbb7
MD5 f245d06ac4611e8cef1c76e9b93b55fe
BLAKE2b-256 2989620637e2c23d936bb0059895e0457b92582127b11b51d5a6dbd7e3d315e0

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

  • Download URL: pyahocorasick-1.4.4-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 98.2 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.10

File hashes

Hashes for pyahocorasick-1.4.4-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8fa7618f1fef1c25f4f375a4c2c7c24ba3aa300eff48c732c0035f2f9750b29b
MD5 bb3583b2b9c9192c9447cfb043f49727
BLAKE2b-256 49ba45595dc6731b8cab6210eb5e230d353a1ab28cbfe210c1264c002b332de6

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyahocorasick-1.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 109.8 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.10

File hashes

Hashes for pyahocorasick-1.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8dfa16ea7ad3297f925964d6fb5553cb6c365b224c6dd749cf0e6cdf91fc2212
MD5 a712d0653b2c264626e5b047ed591f6f
BLAKE2b-256 ec3c2e75b1ff46bc391aff3fa48f6632bb8ef96c59277019c82021a6be4b2ca4

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyahocorasick-1.4.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 737d331377936fb229529e830d9a654623d7714e8823bfa49433ae7158f0d01c
MD5 6a4044cfc28eabe86e8d9c510272bae3
BLAKE2b-256 ccfbe8452c897b6fd7d00b63fc89cc23ae09b96a59ce79db7979a465a51e5940

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyahocorasick-1.4.4-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 32.8 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.10

File hashes

Hashes for pyahocorasick-1.4.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8d46bbb579205a73adee0a8ec73667e6fb5b4b92f9d837f8a9eedb69c2f5a252
MD5 cee1c0526ff5b025ecc0874e5be8f26d
BLAKE2b-256 cb6ed1d50dfb5bc260b0599ec4413854efdcb9b6bf599c33993051feca124dde

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyahocorasick-1.4.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 39.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.10

File hashes

Hashes for pyahocorasick-1.4.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 062c5ac842e3fe51f231ada754acb1e5ad986cd28a2181c9a22b21268e22f8c7
MD5 9c2555d87f0b1e38502de3482fff1e71
BLAKE2b-256 42be3eaaa3ba20a7a842c46940c2de11f56d5ff035deb301f614a4a2601619ec

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp39-cp39-win32.whl.

File metadata

  • Download URL: pyahocorasick-1.4.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 32.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.10

File hashes

Hashes for pyahocorasick-1.4.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ef24ec2b11a09e0aba1f2a9c47f3c07444771a8b8def672713f79901509ed6b7
MD5 95b2d6e8ddf24342979b51af00f1e817
BLAKE2b-256 993e83c1bef6b4f2f98117f4e1c4467051d37cbd96319044e76c03c67eb2083e

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pyahocorasick-1.4.4-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 104.0 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.10

File hashes

Hashes for pyahocorasick-1.4.4-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 89085980232cc9cd2da2466a8a6232b0e1ff196ef275b2ed4e866941b35bf775
MD5 0236425aa4e6a2a5b5eda4dcd76c2bb9
BLAKE2b-256 dce55552b54437016c45e7222aac1ab6de09d4ca66f28daa209d6dca9ae98f03

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

  • Download URL: pyahocorasick-1.4.4-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 97.7 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.10

File hashes

Hashes for pyahocorasick-1.4.4-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 94894f5794b9e62a4c7b47a4fd3dc85bae952fe2b220396a627fae74b3eb7ad0
MD5 f54cf8b09a396c16729fe0617bd8cb78
BLAKE2b-256 b1f00131f52e85036c02da815d1b0480dc8b7765db6c505ace0109d33057f4f2

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyahocorasick-1.4.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 109.4 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.10

File hashes

Hashes for pyahocorasick-1.4.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b1b7ba6d9c717bb6d7310ab8185f739ff416b8c9323d8adf7b5bbbf48e2e775
MD5 f934f48634818d03e87c8c74ddf28e1d
BLAKE2b-256 8c542a5693b862f2c03f71a8ce13ccc00b165d3faeeaf592ea908aefe7988d76

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyahocorasick-1.4.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 38172bfa186da136cadc7438946d0d6d4fc1d64f62cad4d1a3038c20b37d5182
MD5 f83ea08572280f29fca4c43037983661
BLAKE2b-256 aa83082030f5313f1735f7d39db0afcb5af033978ca84b4adc862c57df6ff7d8

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyahocorasick-1.4.4-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 32.8 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.10

File hashes

Hashes for pyahocorasick-1.4.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c13190af4dd382c915ca37f173a407736be4dc1912d834bbc6555a79a2e6c9e2
MD5 893b3f0541935d98044c675ee2b9e86e
BLAKE2b-256 68ce44b77c5847e16b9d2d0d030e0ae912fb716f475ca74e0d6537a29e0ac040

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pyahocorasick-1.4.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 39.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.10

File hashes

Hashes for pyahocorasick-1.4.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4f37a464dbf4f091560a02e135f917259fde6c0a43f6cdf5558480a102bc1843
MD5 fd1547894f3a457582228db5aa056e8f
BLAKE2b-256 c27f590b18281b44e183a8b49cee4b0207bec09bc75fe7dc7a0c632dd97c7bc4

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp38-cp38-win32.whl.

File metadata

  • Download URL: pyahocorasick-1.4.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 32.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.10

File hashes

Hashes for pyahocorasick-1.4.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 31108e1cdf055acb9d0ba5e302926bf4e904db61dfbaa08c4d40284802950414
MD5 02ad3f4fa6413c46f11220c0ab580edf
BLAKE2b-256 ba8b634a08071b4d218006275af5a4f4f7355c575f5a8bb33760851d641d0a3d

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pyahocorasick-1.4.4-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 105.0 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.10

File hashes

Hashes for pyahocorasick-1.4.4-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8fea989f2802eae1aacf26b817e4d532fe9f42434b49ddbff38b412bdeb763ac
MD5 69afdb2c21fbbcf7c948a1b6da3f4fdf
BLAKE2b-256 3751dea1c1b19d3a1c0db778d6d9ee918642ca387061d9c31256c2997ce53258

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

  • Download URL: pyahocorasick-1.4.4-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 98.6 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.10

File hashes

Hashes for pyahocorasick-1.4.4-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e61994166562e8460115aa5a57fb0aafa852a173f4207a1a1381ba4322adf174
MD5 7604b55492df11f80133df8852daf652
BLAKE2b-256 60b1eec789e310b685d87a66f2eef27fd082d3527daf401ca5b3a037f521ad6e

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyahocorasick-1.4.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 110.1 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.10

File hashes

Hashes for pyahocorasick-1.4.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 23cf21893b6ba3b47637f007c1e355c45726b98cd9cf473ea6dc706c47332646
MD5 ca033686f73d61e34476a70211ca6c2a
BLAKE2b-256 d1d899fe14486594aadf431fbef6853e3c8731feeac3f4f013ea0ed055197d12

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyahocorasick-1.4.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bee494e54939b737e4e44a04cbdbcfdf9b62c8bd762c05d435f4a7883dae8a94
MD5 95cd3acbcf141f95717ad8f1ae7f0fa8
BLAKE2b-256 71b78cf7711291b074636020f7f8538c0d1533c7812f05a78bf78b99ee1c3ac1

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyahocorasick-1.4.4-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 32.8 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.10

File hashes

Hashes for pyahocorasick-1.4.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 df422bf5c50115c58cdb972e9086d99bdd34367c56ba8827a939c8cc973f17d8
MD5 30bb15bf9a7ae272366b5262a23e63ce
BLAKE2b-256 01ad1b598e636577eab669ba1ab69494dfbca012cd652f18038314ca123358c4

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pyahocorasick-1.4.4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 39.3 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.10

File hashes

Hashes for pyahocorasick-1.4.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ab84c9425eb245c1baa2f91218c977561e01b700773ee232389222458a32316e
MD5 37f03df1d068fe2fbe85659b2e8b1737
BLAKE2b-256 d7696f41680a228fc967bc247e83f5f0495af666cf2ec39ec21996da6ab764fa

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pyahocorasick-1.4.4-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 32.2 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.10

File hashes

Hashes for pyahocorasick-1.4.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 1ab503f0bff5537ef3da37681cfd52a3f964553f69eef561bd157b70b4aedf84
MD5 f1d79073508b043dafb7820411342ef6
BLAKE2b-256 ba26bc062aaf13d3e35edee65b63816b19894936ea7c4395972d632d148b4060

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pyahocorasick-1.4.4-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 102.6 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.10

File hashes

Hashes for pyahocorasick-1.4.4-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e3d7f2c7a0442540f373d0bf13d19d5d213136e217d050010da705afd09c3a00
MD5 6f8c099ad02a88f1e31edd5d542aba3a
BLAKE2b-256 368f53c25736eaaf3a547c543efabf53f1fad44ee9ff8c134c8c304d4134250f

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: pyahocorasick-1.4.4-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 95.9 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.10

File hashes

Hashes for pyahocorasick-1.4.4-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3b20cc27c03c84f7a5d305012f302d0e7b3faa43ab02da665bb11b60135a1dd3
MD5 f4e50df1caaf2c0f1966ee3be5ee2171
BLAKE2b-256 6584951a1b282b9915a9060898666c8afd89d212337be7ba1ac2f6d64551c488

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyahocorasick-1.4.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 106.5 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.10

File hashes

Hashes for pyahocorasick-1.4.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f46bc7b8ec0e0cee499c5066684397ac93ed8c2ca4529d396ceda775ce05a445
MD5 afdfc92a77c0585cd5f526940426b786
BLAKE2b-256 7d70d16c0239e1fac43e1ba01bbd0986a67e407ec1e163e24b9092c2587a8c86

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyahocorasick-1.4.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 67bac0152c08d8cf40b738e011c36d8fab99f0610f5e709eb4929dd8be2a781d
MD5 7dfe85ca8572346e3ca1924659afa416
BLAKE2b-256 029c1312054353553e973079ac8a4439f06734ec44bd40c831ff09284511d909

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyahocorasick-1.4.4-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 32.6 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.10

File hashes

Hashes for pyahocorasick-1.4.4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 12aabdadc3354da6d846186629c80e52fe9b021bdc01e5d5718ca197441e121f
MD5 cf24af1520fcdebe2b6a7477e4b26ebf
BLAKE2b-256 48b24c4c94c666f154d850c83fff9b20d039f22c3bc571708f0dace0275c0051

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pyahocorasick-1.4.4-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 39.3 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.10

File hashes

Hashes for pyahocorasick-1.4.4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 e6eee473787ca1dc49b4f94a62b5456251f6976141da60ea0e006507eb0f11b8
MD5 e175102142dfea937922f19dbff96560
BLAKE2b-256 c4cd29680392637f7a4bcddd23e1235e00e9f78028a285a39166f9469146c95e

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pyahocorasick-1.4.4-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 32.2 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.10

File hashes

Hashes for pyahocorasick-1.4.4-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 e2fe9dc5114c0778234a96ba11807681ccf38fe92bdf2d70d69e701533c51cab
MD5 d559b42148f4a7be8ba31445eeca4414
BLAKE2b-256 734d22030c1b8ff7bddfe3eda51f01f3c184048382c21e4ffd118a6a96d7a87d

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pyahocorasick-1.4.4-cp36-cp36m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 101.7 kB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.10

File hashes

Hashes for pyahocorasick-1.4.4-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 04d73bec7d1289378f5948f7f1d68b94c1b4d2a29d7e26ac9085ad403cc4e739
MD5 2e026bef7ca0e844f15387cd05323c0e
BLAKE2b-256 7b936ca50d08aa94f9d7dc7f4f2f0c3df26f5425d8af671a30fd39df45e60196

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: pyahocorasick-1.4.4-cp36-cp36m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 95.0 kB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.10

File hashes

Hashes for pyahocorasick-1.4.4-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 50d88355ac8ef495a582615d639bb80712505d2d8cdadfb93b9123063a3ae23a
MD5 8eaf74a18e5557e9c29e62badf987d51
BLAKE2b-256 1c8dd2cc3f3a58d31cee02d843eab78ec8ea8acb390df202322016864801839c

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyahocorasick-1.4.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 106.5 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.10

File hashes

Hashes for pyahocorasick-1.4.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f842c8f37d360f34a06c31f19d1b42e6404b48b49a8dffbed2ec6089ce78cca7
MD5 275dd84a8e4ed0de6b847bfded25287f
BLAKE2b-256 c38ab49e70bd21eaa9c3e24db7a93ebcfb09a5c8fc92db8139e260b38368d19c

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyahocorasick-1.4.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cf96ecf2ae36e9aad4693e48457a7b97dc3b4cd793275c85924850aafa5b5c38
MD5 7cff7faa836776c93347d69f27dd7559
BLAKE2b-256 bab2abec7c377d241b703497217f7c45a7f12d692b4cec0070529482ad0141fe

See more details on using hashes here.

File details

Details for the file pyahocorasick-1.4.4-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyahocorasick-1.4.4-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 32.6 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.6.10

File hashes

Hashes for pyahocorasick-1.4.4-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7cf4d08e10ab7ad136654b237a0b8f1df982df2c5a6f77ef90316731797855db
MD5 e1aff64c53258c73a290efe599ef59c1
BLAKE2b-256 aead7f0269b97fd0345d169a280d89b3c9355a4adb9c0db3c759514c7ea33a59

See more details on using hashes here.

Supported by

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