Skip to main content

Fast multi-keyword search engine for text strings

Project description

What is Acora?

Acora is ‘fgrep’ for Python, a fast multi-keyword text search engine.

Based on a set of keywords and the Aho-Corasick algorithm, it generates a search automaton and runs it over string input, either unicode or bytes.

Acora comes with both a pure Python implementation and a fast binary module written in Cython. However, note that the current construction algorithm is not suitable for really large sets of keywords (i.e. more than a couple of thousand).

You can find the latest source code on github.

To report a bug or request new features, use the github bug tracker. Please try to provide a short test case that reproduces the problem without requiring too much experimentation or large amounts of data. The easier it is to reproduce the problem, the easier it is to solve it.

Features

  • works with unicode strings and byte strings

  • about 2-3x as fast as Python’s regular expression engine for most input

  • finds overlapping matches, i.e. all matches of all keywords

  • support for case insensitive search (~10x as fast as ‘re’)

  • frees the GIL while searching

  • additional (slow but short) pure Python implementation

  • support for Python 2.5+ and 3.x

  • support for searching in files

  • permissive BSD license

How do I use it?

Import the package:

>>> from acora import AcoraBuilder

Collect some keywords:

>>> builder = AcoraBuilder('ab', 'bc', 'de')
>>> builder.add('a', 'b')

Or:

>>> builder.update(['a', 'b'])  # new in version 2.0

Generate the Acora search engine for the current keyword set:

>>> ac = builder.build()

Search a string for all occurrences:

>>> ac.findall('abc')
[('a', 0), ('ab', 0), ('b', 1), ('bc', 1)]
>>> ac.findall('abde')
[('a', 0), ('ab', 0), ('b', 1), ('de', 2)]

Iterate over the search results as they come in:

>>> for kw, pos in ac.finditer('abde'):
...     print("%2s[%d]" % (kw, pos))
 a[0]
ab[0]
 b[1]
de[2]

Acora also has direct support for parsing files (in binary mode):

>>> keywords = ['Import', 'FAQ', 'Acora', 'NotHere'.upper()]

>>> builder = AcoraBuilder([s.encode('ascii') for s in keywords])
>>> ac = builder.build()

>>> found = set(kw for kw, pos in ac.filefind('README.rst'))
>>> len(found)
3

>>> sorted(str(s.decode('ascii')) for s in found)
['Acora', 'FAQ', 'Import']

FAQs and recipes

  1. How do I run a greedy search for the longest matching keywords?

    >>> builder = AcoraBuilder('a', 'ab', 'abc')
    >>> ac = builder.build()
    
    >>> for kw, pos in ac.finditer('abbabc'):
    ...     print(kw)
    a
    ab
    a
    ab
    abc
    
    >>> from itertools import groupby
    >>> from operator import itemgetter
    
    >>> def longest_match(matches):
    ...     for pos, match_set in groupby(matches, itemgetter(1)):
    ...         yield max(match_set)
    
    >>> for kw, pos in longest_match(ac.finditer('abbabc')):
    ...     print(kw)
    ab
    abc

    Note that this recipe assumes search terms that do not have inner overlaps apart from their prefix.

  2. How do I parse line-by-line with arbitrary line endings?

    >>> def group_by_lines(s, *keywords):
    ...     builder = AcoraBuilder('\r', '\n', *keywords)
    ...     ac = builder.build()
    ...
    ...     current_line_matches = []
    ...     last_ending = None
    ...
    ...     for kw, pos in ac.finditer(s):
    ...         if kw in '\r\n':
    ...             if last_ending == '\r' and kw == '\n':
    ...                 continue # combined CRLF
    ...             yield tuple(current_line_matches)
    ...             del current_line_matches[:]
    ...             last_ending = kw
    ...         else:
    ...             last_ending = None
    ...             current_line_matches.append(kw)
    ...     yield tuple(current_line_matches)
    
    >>> kwds = ['ab', 'bc', 'de']
    >>> for matches in group_by_lines('a\r\r\nbc\r\ndede\n\nab', *kwds):
    ...     print(matches)
    ()
    ()
    ('bc',)
    ('de', 'de')
    ()
    ('ab',)
  3. How do I find whole lines that contain keywords, as fgrep does?

    >>> def match_lines(s, *keywords):
    ...     builder = AcoraBuilder('\r', '\n', *keywords)
    ...     ac = builder.build()
    ...
    ...     line_start = 0
    ...     matches = False
    ...     for kw, pos in ac.finditer(s):
    ...         if kw in '\r\n':
    ...             if matches:
    ...                  yield s[line_start:pos]
    ...                  matches = False
    ...             line_start = pos + 1
    ...         else:
    ...             matches = True
    ...     if matches:
    ...         yield s[line_start:]
    
    >>> kwds = ['x', 'de', '\nstart']
    >>> text = 'a line with\r\r\nsome text\r\ndede\n\nab\n start 1\nstart\n'
    >>> for line in match_lines(text, *kwds):
    ...     print(line)
    some text
    dede
    start

Changelog

  • 2.5 [2024-09-14]

    • Update to work with CPython 3.13 by building with Cython 3.0.11.

  • 2.4 [2023-09-17]

    • Update to work with CPython 3.12 by building with Cython 3.0.2.

  • 2.3 [2021-03-27]

    • Update to work with CPython 3.9 by building with Cython 0.29.22.

  • 2.2 [2018-08-16]

    • Update to work with CPython 3.7 by building with Cython 0.29.

  • 2.1 [2017-12-15]

    • fix handling of empty engines (Github issue #18)

  • 2.0 [2016-03-17]

    • rewrite of the construction algorithm to speed it up and save memory

  • 1.9 [2015-10-10]

    • recompiled with Cython 0.23.4 for better compatibility with recent Python versions.

  • 1.8 [2014-02-12]

    • pickle support for the pre-built search engines

    • performance optimisations in builder

    • Unicode parsing is optimised for Python 3.3 and later

    • no longer recompiles sources when Cython is installed, unless --with-cython option is passed to setup.py (requires Cython 0.20+)

    • build failed with recent Cython versions

    • built using Cython 0.20.1

  • 1.7 [2011-08-24]

    • searching binary strings for byte values > 127 was broken

    • built using Cython 0.15+

  • 1.6 [2011-07-24]

    • substantially faster automaton building

    • no longer includes .hg repo in source distribution

    • built using Cython 0.15 (rc0)

  • 1.5 [2011-01-24]

    • Cython compiled NFA-2-DFA construction runs substantially faster

    • always build extension modules even if Cython is not installed

    • --no-compile switch in setup.py to prevent extension module building

    • built using Cython 0.14.1 (rc2)

  • 1.4 [2009-02-10]

    • minor speed-up in inner search engine loop

    • some code cleanup

    • built using Cython 0.12.1 (final)

  • 1.3 [2009-01-30]

    • major fix for file search

    • built using Cython 0.12.1 (beta0)

  • 1.2 [2009-01-30]

    • deep-copy support for AcoraBuilder class

    • doc/test fixes

    • include .hg repo in source distribution

    • built using Cython 0.12.1 (beta0)

  • 1.1 [2009-01-29]

    • doc updates

    • some cleanup

    • built using Cython 0.12.1 (beta0)

  • 1.0 [2009-01-29]

    • initial release

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

acora-2.5.tar.gz (268.9 kB view details)

Uploaded Source

Built Distributions

acora-2.5-cp313-cp313-win_amd64.whl (134.4 kB view details)

Uploaded CPython 3.13 Windows x86-64

acora-2.5-cp313-cp313-musllinux_1_1_x86_64.whl (184.2 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.1+ x86-64

acora-2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (181.5 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.28+ x86-64

acora-2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl (168.7 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64 manylinux: glibc 2.28+ ARM64

acora-2.5-cp313-cp313-macosx_12_0_universal2.whl (299.2 kB view details)

Uploaded CPython 3.13 macOS 12.0+ universal2 (ARM64, x86-64)

acora-2.5-cp312-cp312-win_amd64.whl (135.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

acora-2.5-cp312-cp312-musllinux_1_1_x86_64.whl (186.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

acora-2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (182.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.28+ x86-64

acora-2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl (169.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64 manylinux: glibc 2.28+ ARM64

acora-2.5-cp312-cp312-macosx_12_0_universal2.whl (300.3 kB view details)

Uploaded CPython 3.12 macOS 12.0+ universal2 (ARM64, x86-64)

acora-2.5-cp311-cp311-win_amd64.whl (135.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

acora-2.5-cp311-cp311-musllinux_1_1_x86_64.whl (193.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

acora-2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (190.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.28+ x86-64

acora-2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (178.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.24+ x86-64

acora-2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (156.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64 manylinux: glibc 2.24+ ARM64

acora-2.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl (179.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.24+ i686 manylinux: glibc 2.5+ i686

acora-2.5-cp311-cp311-macosx_12_0_universal2.whl (298.1 kB view details)

Uploaded CPython 3.11 macOS 12.0+ universal2 (ARM64, x86-64)

acora-2.5-cp310-cp310-win_amd64.whl (134.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

acora-2.5-cp310-cp310-musllinux_1_1_x86_64.whl (193.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

acora-2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (190.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.28+ x86-64

acora-2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (178.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.24+ x86-64

acora-2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (157.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64 manylinux: glibc 2.24+ ARM64

acora-2.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl (180.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.24+ i686 manylinux: glibc 2.5+ i686

acora-2.5-cp310-cp310-macosx_12_0_x86_64.whl (157.7 kB view details)

Uploaded CPython 3.10 macOS 12.0+ x86-64

acora-2.5-cp39-cp39-win_amd64.whl (134.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

acora-2.5-cp39-cp39-musllinux_1_1_x86_64.whl (194.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

acora-2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (190.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.28+ x86-64

acora-2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (178.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.24+ x86-64

acora-2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (158.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64 manylinux: glibc 2.24+ ARM64

acora-2.5-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (182.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

acora-2.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (172.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

acora-2.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl (181.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.24+ i686 manylinux: glibc 2.5+ i686

acora-2.5-cp39-cp39-macosx_12_0_x86_64.whl (158.2 kB view details)

Uploaded CPython 3.9 macOS 12.0+ x86-64

acora-2.5-cp38-cp38-win_amd64.whl (135.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

acora-2.5-cp38-cp38-musllinux_1_1_x86_64.whl (195.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

acora-2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (193.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.28+ x86-64

acora-2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (179.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.24+ x86-64

acora-2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (159.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64 manylinux: glibc 2.24+ ARM64

acora-2.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (182.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ x86-64

acora-2.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (171.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

acora-2.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl (181.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.24+ i686 manylinux: glibc 2.5+ i686

acora-2.5-cp38-cp38-macosx_12_0_x86_64.whl (157.6 kB view details)

Uploaded CPython 3.8 macOS 12.0+ x86-64

acora-2.5-cp37-cp37m-win_amd64.whl (133.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

acora-2.5-cp37-cp37m-musllinux_1_1_x86_64.whl (191.6 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

acora-2.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (192.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.28+ x86-64

acora-2.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (180.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.24+ x86-64

acora-2.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (160.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64 manylinux: glibc 2.24+ ARM64

acora-2.5-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (190.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ x86-64

acora-2.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (177.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

acora-2.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl (184.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.24+ i686 manylinux: glibc 2.5+ i686

acora-2.5-cp37-cp37m-macosx_12_0_x86_64.whl (156.0 kB view details)

Uploaded CPython 3.7m macOS 12.0+ x86-64

acora-2.5-cp36-cp36m-win_amd64.whl (150.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

acora-2.5-cp36-cp36m-musllinux_1_1_x86_64.whl (185.6 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

acora-2.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (183.8 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.28+ x86-64

acora-2.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (174.4 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.24+ x86-64

acora-2.5-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (183.0 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.5+ x86-64

acora-2.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl (171.5 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.5+ i686

acora-2.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl (178.2 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.24+ i686 manylinux: glibc 2.5+ i686

acora-2.5-cp36-cp36m-macosx_12_0_x86_64.whl (152.7 kB view details)

Uploaded CPython 3.6m macOS 12.0+ x86-64

acora-2.5-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (179.9 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.5+ x86-64

acora-2.5-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl (169.2 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.5+ i686

acora-2.5-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl (176.4 kB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.5+ x86-64

acora-2.5-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl (160.5 kB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.5+ i686

acora-2.5-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (178.9 kB view details)

Uploaded CPython 2.7m manylinux: glibc 2.5+ x86-64

acora-2.5-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl (162.7 kB view details)

Uploaded CPython 2.7m manylinux: glibc 2.5+ i686

File details

Details for the file acora-2.5.tar.gz.

File metadata

  • Download URL: acora-2.5.tar.gz
  • Upload date:
  • Size: 268.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5.tar.gz
Algorithm Hash digest
SHA256 68f7caa68d7ddf617a81e8fcecd3f9c836646b04f4e257af24c3267feafc05bd
MD5 6431d5ac0ab967276938cb6488c1c61f
BLAKE2b-256 a56853a973ea719eda80ea89c5ec71072ced42da855e9a763d270680c1ca36ac

See more details on using hashes here.

File details

Details for the file acora-2.5-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: acora-2.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 134.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8ed8be8a29fe40eff4a6d11e20dc4b4db9c9a85113ed742eff806a43f7b1c44f
MD5 7cd748f539fd3c8e3c21cc45f3a2ff21
BLAKE2b-256 c3ef4ffc5e4811b9763c4d1aa0beebf43b5c1d85f5b45e0a45b66ccc243070a3

See more details on using hashes here.

File details

Details for the file acora-2.5-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: acora-2.5-cp313-cp313-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 184.2 kB
  • Tags: CPython 3.13, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c53957e355b31c76613ff890fd422bbc658b695235e571826d0c82ce975c334e
MD5 e555ce1c5f8f4be5692658b695d586ba
BLAKE2b-256 a7bdc4c4ea9ca40391ec91d572aca788aa62c5107855f7a46a64b182bd0f1efd

See more details on using hashes here.

File details

Details for the file acora-2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for acora-2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 29dbee4dddc88b20ae5abb1f6a3b2f1ec0317c4b52756992c2738feaa0067e9f
MD5 3cfaa71d7c4d574b5a2163a0dd518d60
BLAKE2b-256 e6627ad9bc9c399f4347b1fd1d15e8df854383859d7926ad5804f068329331e6

See more details on using hashes here.

File details

Details for the file acora-2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for acora-2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 57bfb6ec07c34af23e72c18db39c685d414f7f0f04e6c236cef11d267e63ec2c
MD5 22b989bdd929cd3a047d1e03455728ba
BLAKE2b-256 59e8988bb15746ab09cca396ac1a1eb27423e1d20272367c337263edce4e4228

See more details on using hashes here.

File details

Details for the file acora-2.5-cp313-cp313-macosx_12_0_universal2.whl.

File metadata

  • Download URL: acora-2.5-cp313-cp313-macosx_12_0_universal2.whl
  • Upload date:
  • Size: 299.2 kB
  • Tags: CPython 3.13, macOS 12.0+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp313-cp313-macosx_12_0_universal2.whl
Algorithm Hash digest
SHA256 6eaae580dcaaabf77a3aeef2d81421b3afe2fa930ec5b4604fb3e9a2a25277c0
MD5 e47e1dc293e6ccd959752dbeb387f43e
BLAKE2b-256 543640617f7b28cbc62051b66a39b5a86e30bc7488c407c50b1732d7138bdd15

See more details on using hashes here.

File details

Details for the file acora-2.5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: acora-2.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 135.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bf5e04807197ef0fcaabb24775844ca41ec8d9f1e475e5ca24888b8a04c066a0
MD5 32697faba920feab9171af05ecde0fe2
BLAKE2b-256 31964f85cbd6d80c2abbd04413fa36fc665a00fe0355d7faedc081b9237de3f5

See more details on using hashes here.

File details

Details for the file acora-2.5-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: acora-2.5-cp312-cp312-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 186.8 kB
  • Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 df64853c65a891a6ff06745b608fcfc5e5a20878393434d3cc7a99cda1f8c96f
MD5 bc4331c5143e99719b00e4a091b59c98
BLAKE2b-256 ab4e027edabdfd2dbbfe94856597d606dd34dc7d196b2d31c4095263ce6421da

See more details on using hashes here.

File details

Details for the file acora-2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for acora-2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f679224d07f1a90f49be70dc43e08c2c5d9c6ec4a265046b869c1fd6866f8354
MD5 6b8b8aec1a135ef2e25c8d881994b871
BLAKE2b-256 60e8d5e6a72b2df32321a950b8268f26127375c6f90667c119169b73013373f6

See more details on using hashes here.

File details

Details for the file acora-2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for acora-2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fe567184f095704afab4d37654aab758d9ee32dd855876b310e4347f334e0f92
MD5 c9ed25146259021dcac5634a9f7686f0
BLAKE2b-256 5b8db26bf1509b8757eb09ff779cef35c962715c78477193b3926db7fe4f804f

See more details on using hashes here.

File details

Details for the file acora-2.5-cp312-cp312-macosx_12_0_universal2.whl.

File metadata

  • Download URL: acora-2.5-cp312-cp312-macosx_12_0_universal2.whl
  • Upload date:
  • Size: 300.3 kB
  • Tags: CPython 3.12, macOS 12.0+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp312-cp312-macosx_12_0_universal2.whl
Algorithm Hash digest
SHA256 5cf442d9be8db005c51709c826843870dd4d67aad47065ede4267ad9de60e548
MD5 b5727bda4d2252b8fc2743de318fb490
BLAKE2b-256 a9d52c8761f4bb9a989f048a807f7ae535f97a3720714f31cb82d41d7c47b2f4

See more details on using hashes here.

File details

Details for the file acora-2.5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: acora-2.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 135.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 474436a82276a4830a1aa3ac4ae81d0239696604508f57b9d3e510682ca09fc7
MD5 9673a4fbc05cfffa97968957f2489157
BLAKE2b-256 29a0e689e339a0a0633fef5fde6955c2be1cd6baee651c4e5da6ef54d0640839

See more details on using hashes here.

File details

Details for the file acora-2.5-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: acora-2.5-cp311-cp311-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 193.5 kB
  • Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a7965d5d5ff82177bb53e8936ad12a57640cfa19632127f1364c020c0bae895f
MD5 ddc9ec0d46c9b290e8d2807e03b2dad8
BLAKE2b-256 9ef47ecdd352463861e2f513e2c91eb9db99cf2d2401c864b777031052159b93

See more details on using hashes here.

File details

Details for the file acora-2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for acora-2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 245259e846a40c541d8e4d1aa53a344f26694991febd4c067f519487363d2d2e
MD5 bbf7efc9ee88c2ca862ece161abe24fe
BLAKE2b-256 cfb103f10e894e7917e60e0f8aa1c25ad146ed7a5157e7e43f0f84c73fa45f23

See more details on using hashes here.

File details

Details for the file acora-2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for acora-2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 83e11f9cc4185dd36e0ef7f8f9041f55983cfece766a136c633d27a87b5fded3
MD5 c5ae55164c6ab21cdc67272262021847
BLAKE2b-256 eacbf9dbbe53345695d2f92a78560d9824661644ce019d663df9829b34f4b94e

See more details on using hashes here.

File details

Details for the file acora-2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for acora-2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 cd381769c5c13eedc16cd542eccb0237b6d69f99da833d6bfe08893d4361314a
MD5 8a1a201a9630cb7302737636c24c3c36
BLAKE2b-256 28593adf65720f2cf64fe4fb86f87fde52ca0aa2b82c4c2c64debe2e4fdd530d

See more details on using hashes here.

File details

Details for the file acora-2.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for acora-2.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 7f7ab0431503f60638b99cc1de23e3b37e994d7b88ed17b4b20c1dd5a7b858b4
MD5 551d900c6458602f5b00e87bc3fe8b94
BLAKE2b-256 fdfc72d6584b69af3c18135a843404a1d63401bdc0ff349bb9b1df61f4af39de

See more details on using hashes here.

File details

Details for the file acora-2.5-cp311-cp311-macosx_12_0_universal2.whl.

File metadata

  • Download URL: acora-2.5-cp311-cp311-macosx_12_0_universal2.whl
  • Upload date:
  • Size: 298.1 kB
  • Tags: CPython 3.11, macOS 12.0+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp311-cp311-macosx_12_0_universal2.whl
Algorithm Hash digest
SHA256 15861c789c13b9a8a5cfc4614cd2537883e705359ff7c951dee145bcc4c8177c
MD5 caa119529f3cc647e76b5b604d9ebe6b
BLAKE2b-256 d0fc23c67b56f8216b7ea6e2c11bef4f6d2be200c566f86beaab3ffd5a3b18d2

See more details on using hashes here.

File details

Details for the file acora-2.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: acora-2.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 134.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6a7c671f5cc173cc7d5470e81fea407781de2afc94f619fb30579ebbe5277905
MD5 1aac1a56d93b6cb5ccbdf7ee5bcb120c
BLAKE2b-256 63c950bc39e6d2104e9133cbc84d8c4ece7497c1c10dd45ed571bfbd5899dcf1

See more details on using hashes here.

File details

Details for the file acora-2.5-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: acora-2.5-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 193.3 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 00b63b52c082cf68d4d03cdaa93d82eb55cc7fa582cf63ed3331552d3c64db8b
MD5 ec47e3720e5aee2f2af65c1b699237a4
BLAKE2b-256 99a96b6520f7a46f25fad542b7a914410d1813b31d30f7d43e9f5ebbdadc26f1

See more details on using hashes here.

File details

Details for the file acora-2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for acora-2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 34d78dd61a616cc45888f691193c221d4399a21c1a6e30b676763f5a7240d898
MD5 13fba8073928b0380753db106663bfe1
BLAKE2b-256 c6a66ee21f4b8fcf414c5479493c0ae1d1e0f43284becb3d682d31fc66b40989

See more details on using hashes here.

File details

Details for the file acora-2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for acora-2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 fb4bdaa5255a16b3dfef1245facd1e58a7d44016cee923b1c76ae8ea7de7f92c
MD5 691c57acc3adfcd44032b11a649b2c55
BLAKE2b-256 d99c1513d288f10cc7bf9f687023e57fc844904ba22b1af35328746ac5f3c514

See more details on using hashes here.

File details

Details for the file acora-2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for acora-2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 0a334970e0e845e4fc7bf46eb4547de8d99206729475b0a535795c06abe83270
MD5 9345ee0f177457fc11e9e39cf889b56b
BLAKE2b-256 0b1c5f3edc876c443aaadc838b00614f2d3906acba2e02989f4bd9346476741a

See more details on using hashes here.

File details

Details for the file acora-2.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for acora-2.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 97ff57b3638c495c467c0780eab295f04de94f94b1fa98982eadbcb93668f282
MD5 2bf7043f7e6bd08059d852637eaf705c
BLAKE2b-256 cdb5c830c710ac7124206a5799e597f2cd81c30dad5cb1f743ecc8e96693bd82

See more details on using hashes here.

File details

Details for the file acora-2.5-cp310-cp310-macosx_12_0_x86_64.whl.

File metadata

  • Download URL: acora-2.5-cp310-cp310-macosx_12_0_x86_64.whl
  • Upload date:
  • Size: 157.7 kB
  • Tags: CPython 3.10, macOS 12.0+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp310-cp310-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 c82d19faee69e4cdc653b5dd79268d6eac2a962d93dda3a299eb2e0ede06b3a1
MD5 6292aae5fa6561cfa1b22b8defc14b37
BLAKE2b-256 8380c5566a5afef41b987a852c0804269dba089c643526a12e816b9321d29273

See more details on using hashes here.

File details

Details for the file acora-2.5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: acora-2.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 134.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 02ad00d27ac27dbb96d73469f8758520a082f1452c88f1df4771b3abdb2f015b
MD5 005c5c5a34cb6647f05f1e6e4f3087c4
BLAKE2b-256 a84cc79e8938dee89409db082b3c78c498f6c9b34e58354d683374dceedda505

See more details on using hashes here.

File details

Details for the file acora-2.5-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: acora-2.5-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 194.0 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ceac077bb1cd10945f5a7f63c5bfe34196f2e14f4b015e00f573b14a246aafcc
MD5 34cfb493545fe6f0ca5859ec3f067a8a
BLAKE2b-256 d0c332d5419389faefe6646ea45831dd26cf6799690b5f314dde7036b618b747

See more details on using hashes here.

File details

Details for the file acora-2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for acora-2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 02724bf2d01c1490c5b2f2f3a31783580066417710e46fa686b152566d987134
MD5 d6c0afc69825c478a0d6365ca2ee61c3
BLAKE2b-256 143a32267ff09ed8539b0e09e3ba07f710ec3b6172b23dbec922e4dce80e2878

See more details on using hashes here.

File details

Details for the file acora-2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for acora-2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 961cca77ca35c3b87b5c076f46f705fe7141d2f57211bd60767d14ed3fc42bfc
MD5 ea51b132f720c6921fec48ec1a919939
BLAKE2b-256 100e675f71af2ab2b21eb15dc47897e253eeb50d1583165ddcf411b7ba55911c

See more details on using hashes here.

File details

Details for the file acora-2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for acora-2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 393f79925f8327d51dada819d8bb6a24c1a9d53fc0581ab85a2603cecd73351c
MD5 66f4a43fe71039084ff8bb5fa5fd7d8a
BLAKE2b-256 b3c18c79a73979f7bdda1cd5ee112d03b2820bb15748804b260d35382ba646a3

See more details on using hashes here.

File details

Details for the file acora-2.5-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

  • Download URL: acora-2.5-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
  • Upload date:
  • Size: 182.9 kB
  • Tags: CPython 3.9, manylinux: glibc 2.5+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 690189dfe59c117384a1f707e6d8c04c8f4c72d6a98a3abad8d849c2e6682f45
MD5 9290ed3b38f9c48c4872c47d7cce5e3f
BLAKE2b-256 ac6b2679e958c327ec311c05a756e9502a18d62a618890ed204956bfcb4d6d3a

See more details on using hashes here.

File details

Details for the file acora-2.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: acora-2.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 172.1 kB
  • Tags: CPython 3.9, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 779aa1745db875233e0be53d448cf6310a2afac9929d736e11b2bfbaff72297e
MD5 56b24ccd19e66284288b259772712cf4
BLAKE2b-256 ef5680845618ffc103867e2322823854d4e7d0a56e7cc628763819088bfd9f55

See more details on using hashes here.

File details

Details for the file acora-2.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for acora-2.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 763e76eff89b3c2a05be1bf891816c7478c22a003aeaf0f9a00043fc3ae6d8f9
MD5 9fd086aa77df2342e4d4dd0f9b97c2b6
BLAKE2b-256 927854a03619b43d0b414a859d367d0e125f079c87cebb00caf63507895d5d46

See more details on using hashes here.

File details

Details for the file acora-2.5-cp39-cp39-macosx_12_0_x86_64.whl.

File metadata

  • Download URL: acora-2.5-cp39-cp39-macosx_12_0_x86_64.whl
  • Upload date:
  • Size: 158.2 kB
  • Tags: CPython 3.9, macOS 12.0+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp39-cp39-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 cfe900abb2f90c41d6cd25990e1a9a91f7632476c32e01f3a20214549711b5d1
MD5 138dec0eb59186f9141d4c6b8c20daf3
BLAKE2b-256 8fb0d65dcf9ff29a2ac3f782a7d29e24ab1c009673100a1663a6156c2c515e6a

See more details on using hashes here.

File details

Details for the file acora-2.5-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: acora-2.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 135.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 64190cd094b26e75ffc9a451d507d3da905f948e24840546a51e2cc84ba5759e
MD5 944c542b629c258a5c60dacb27c8b23f
BLAKE2b-256 afdc32a51c216b9af6617a0ddf7a6300d77fd4311f49cb8a0784a7d74cfdb471

See more details on using hashes here.

File details

Details for the file acora-2.5-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: acora-2.5-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 195.6 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5515ba1381c1d734c8e19cd4c588bf59d3ffc3ebc50d365f21ef5fe4be45fe74
MD5 da48bf0f9ef075f36294356ddc84d0a9
BLAKE2b-256 126e0c559153f6f32ca5e10b671a01e6a5eafa28fe99391a5e35f630e056238e

See more details on using hashes here.

File details

Details for the file acora-2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for acora-2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d1efe7c728bfd74260ab847680ab9552bafa07488c1999eea9c8b8f10805a503
MD5 442896d2e3bde63292e4d09fc48cdacb
BLAKE2b-256 63dc71938dd16bbae57fa9e963f108bf96bc43ab445d5ee80ff08ba79e2bf744

See more details on using hashes here.

File details

Details for the file acora-2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for acora-2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 589da60c6cf55b6130c538d2c8497b906e67b74aab328715f713d6dbbcaf40ad
MD5 a3ad746c25172b07067809e28160227c
BLAKE2b-256 b6f482001522b8f62d5c9aab4839b3d0195a5b6c81f754cd8b31f69db490456d

See more details on using hashes here.

File details

Details for the file acora-2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for acora-2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 123602984884ce7ab7a43b259c74d49621146b8a100e4918729eb411c49155fc
MD5 29d890df9037e845f418e219b9f8428d
BLAKE2b-256 72d441d79f3908a82ae44a360e81ebf0aae5be90fe56fdc8052d15735aebed87

See more details on using hashes here.

File details

Details for the file acora-2.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

  • Download URL: acora-2.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
  • Upload date:
  • Size: 182.6 kB
  • Tags: CPython 3.8, manylinux: glibc 2.5+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1c19ec5a607e1d5b1a6454c8fdc525b416aeae7a52d024ebd43fd00345f2268f
MD5 5a12fb746b79486cc76b88996fd69316
BLAKE2b-256 56178de7e4f015f53eb4621ff69eb7ea6b5f6d41fb590b72e39ff0032d838247

See more details on using hashes here.

File details

Details for the file acora-2.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: acora-2.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 171.7 kB
  • Tags: CPython 3.8, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 846ab08f113f50aa5793c027dedc81aef69036757a2920f2e1bf18d1a7bc0d24
MD5 3e349072fa7e33dd2e69e8ee3dc4bad3
BLAKE2b-256 a57aa7bf15c42241c9a4859ed4e45531b73690a5a0a9991b097b177b9fbc028e

See more details on using hashes here.

File details

Details for the file acora-2.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for acora-2.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 4922bde089f494bc6b0e99b8f33e4655ff5c3ca928228cdd155d3a7a1db767e5
MD5 c11caadd20ad55370cfc2a5d946790d6
BLAKE2b-256 c319cc93aa5be9e3b3a7435c75f45cf9865df9011ca196aa76eaccd688baa688

See more details on using hashes here.

File details

Details for the file acora-2.5-cp38-cp38-macosx_12_0_x86_64.whl.

File metadata

  • Download URL: acora-2.5-cp38-cp38-macosx_12_0_x86_64.whl
  • Upload date:
  • Size: 157.6 kB
  • Tags: CPython 3.8, macOS 12.0+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp38-cp38-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 193464feb9888afbde3f9706cd2e51bca1fde7bcf41f7da47a2170f756e20f69
MD5 0417d3dd3bd9782ddfe6963cab39cbba
BLAKE2b-256 5d3a40fac20eb64c36802c9b55eb184c4a51add79fdff45f6f81ec0262a18406

See more details on using hashes here.

File details

Details for the file acora-2.5-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: acora-2.5-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 133.7 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b91ac1104ea3c728d21c007f3ad89433f0caa6578d442e103d28f9b89a66c9f4
MD5 39c270501c69b9d718dc76c5d8d9bf07
BLAKE2b-256 67c876db43d0e07449e852429d9babe4f179a412f34b2012f31a4c1afb415afc

See more details on using hashes here.

File details

Details for the file acora-2.5-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: acora-2.5-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 191.6 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f3b9183b16be43407ed4421b8d3b1beb366ce5d2136ff1ae8b8647b7846eb1e2
MD5 4722192625e6fabc79351cee41077b3e
BLAKE2b-256 361396f74243f833c71455d43fefd89a5f1f0c05c43c8bdd7fe5acaf265828a4

See more details on using hashes here.

File details

Details for the file acora-2.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for acora-2.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a9e26ca1ce1602291910c7019985ab63e3c6c8e08b6f7d170dbf2b1611e6b6df
MD5 4c1dd2a0e2d275a09850144aeba6af3d
BLAKE2b-256 aefa95b7c28c29d5ad735e6379d62d267aaccf3fdd2d2a23e1231fb537c77256

See more details on using hashes here.

File details

Details for the file acora-2.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for acora-2.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 d2549bb5bbf349fef41c1df6530fcd9fdf1da2e3ea44ad924b84bf35f68d22f4
MD5 6b7357ca4af14112c2f0b548691cd695
BLAKE2b-256 5ec9c385ebea07c1d6600b18edecd325c9e03578cbba463d810fc069fe5b68e0

See more details on using hashes here.

File details

Details for the file acora-2.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for acora-2.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 0bc16d622d1d776893de4526d6889d4d4274ef5858acb65b3f1ec6f33c63a6f0
MD5 b12677a489cc6026cd8a08833ba84295
BLAKE2b-256 19a9147687222cf307e5a57158f516e674f759a8c0b92ca06f14ed619510e8ff

See more details on using hashes here.

File details

Details for the file acora-2.5-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

  • Download URL: acora-2.5-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
  • Upload date:
  • Size: 190.8 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.5+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 24df45771b49481308794ba5444dd4290489bfcf8e9e4e9e9eaaf94741ffec7c
MD5 0076c969f4f4080e81994e7350feeb58
BLAKE2b-256 80fa5e0ce159f44f41de649b333e719475d45ca2aaaa6014538a91e349593e7d

See more details on using hashes here.

File details

Details for the file acora-2.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: acora-2.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 177.4 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a92fe7384abe17bfb47dd04ba6a2dca8f8c4d892b3f392b030d2b92864a504f9
MD5 01157c4c0a78e5cfc8fe1b4bb61b02b6
BLAKE2b-256 2955660133636ca3124e50851f55ba6fe648cedbf055e5a631df7bcf1c148f6c

See more details on using hashes here.

File details

Details for the file acora-2.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for acora-2.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 5f13916d665192342cee8e3c8354def98d634541eceeca54d0b828cbb908ef86
MD5 088e0459a67d801e0d96fb11da88a1e5
BLAKE2b-256 cc2ee45a5b9dba427e27b82ff7666afa617c6a2d7eb1973ac4ae2d7ae0e2d3b3

See more details on using hashes here.

File details

Details for the file acora-2.5-cp37-cp37m-macosx_12_0_x86_64.whl.

File metadata

  • Download URL: acora-2.5-cp37-cp37m-macosx_12_0_x86_64.whl
  • Upload date:
  • Size: 156.0 kB
  • Tags: CPython 3.7m, macOS 12.0+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp37-cp37m-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 fe26d030b78840af3d734b0ec8c5cfbbe39c13139526b19a5164334fe9ea8c34
MD5 5d3b19df222ec71e4a3266ac815ad0a5
BLAKE2b-256 ed4ab09283b9db73f3ade8cc4931567e06c4c2070f04ef973f8a551f4f43a3c9

See more details on using hashes here.

File details

Details for the file acora-2.5-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: acora-2.5-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 150.1 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 520b0384fd3b8ebe9d910fa56360c2d0b6813249386439e615c28b6c3774b0ce
MD5 0a2efff2c2cacc7c5f221d51ca3cff75
BLAKE2b-256 6d3732ace8df5230de6468416a28a6eb241dfdd21f3e89f30b2e7bc02407440d

See more details on using hashes here.

File details

Details for the file acora-2.5-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: acora-2.5-cp36-cp36m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 185.6 kB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3503c44d235d295b0005539981bc7d23f24021970439f9d803900d4fbfc6ff27
MD5 1a417b2d3835def356918a2583d6d98a
BLAKE2b-256 5e42609770ddd06c2533c558a1735d82b710a4ec0adad822312f7dbeb7c99d98

See more details on using hashes here.

File details

Details for the file acora-2.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for acora-2.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e6d86394d15f9a3fd79a2d0df3f7bd0f535a24608d731ab2385a0d7732eab2de
MD5 8278e4fdd31ffd33f22c8229a41fbadd
BLAKE2b-256 b05778e186a835612f5f926ff29940c0fa3546a4d6d54f906b2bc8d678df850b

See more details on using hashes here.

File details

Details for the file acora-2.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for acora-2.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 b557fd73f9ac1844ae0e0316ed5e44206b19cab11052358d4875dcb5ea0e95b7
MD5 84740c47d4c8e8bb6589e81903890f7f
BLAKE2b-256 aaeb481e232ecf5de8c9f5df32811d62ebe152991af080a2303c1ddcbf04c036

See more details on using hashes here.

File details

Details for the file acora-2.5-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

  • Download URL: acora-2.5-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
  • Upload date:
  • Size: 183.0 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.5+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c559896f2cb20418f5d426ef223fc2c0294660de4c94dbd66072ab10d2eb7bc3
MD5 1b63096837c06728abbbb696020bb93a
BLAKE2b-256 9b20bf07fe2ff552de65ad9cce7e64bb8aa89024355a6bf78f96ebc628ed3b4f

See more details on using hashes here.

File details

Details for the file acora-2.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: acora-2.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 171.5 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 014d7ca55b647c974c6f3c8006ca3de17de112afa98ab3b8df5dc3e38ed8db13
MD5 eab98ab090986d10eca294bbaeebb933
BLAKE2b-256 a9f62ac4773cdf1ad7adefc64f13a4be7c5c0c269d7d5197fe3e5ac6d3dc2691

See more details on using hashes here.

File details

Details for the file acora-2.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl.

File metadata

File hashes

Hashes for acora-2.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl
Algorithm Hash digest
SHA256 6205cd791b7d72cd8b2e8baa548eb94a649d0073ba5d9932809f9f43930ea9dc
MD5 c9493cd161b1f759c06f6da365b42438
BLAKE2b-256 84b91e79f6641e7295e4a545e49fe8d54a2bb6c0bc99d544e906750622756521

See more details on using hashes here.

File details

Details for the file acora-2.5-cp36-cp36m-macosx_12_0_x86_64.whl.

File metadata

  • Download URL: acora-2.5-cp36-cp36m-macosx_12_0_x86_64.whl
  • Upload date:
  • Size: 152.7 kB
  • Tags: CPython 3.6m, macOS 12.0+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp36-cp36m-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 30b6703b5cdd3d857558d295af70ce4ee46841c2e8a82e9acf4405d747b56c8a
MD5 c4c6d5e2dddc666f3b974d6df39c50b0
BLAKE2b-256 fb4b6e9f4aa2fc401922b97f9711ded8326143258d82a14cbde8ccd434fe046a

See more details on using hashes here.

File details

Details for the file acora-2.5-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

  • Download URL: acora-2.5-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
  • Upload date:
  • Size: 179.9 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.5+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c3bdfd8f3f03960d1d0162bddc98bb80518205fc626e9eb7517fbdcee520e1f8
MD5 cd65606083ac358ca94837c52f267d51
BLAKE2b-256 bb1ce6b85ad468c354a14980d89818b755628d02ac3755ffb699b0c856e0387a

See more details on using hashes here.

File details

Details for the file acora-2.5-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: acora-2.5-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 169.2 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f05288a334628cc888b2b9a814a0094d0bd61afe1679fc59c67d1bffc3c8527e
MD5 40f9befb8ceb28bcfe68cb2878b64cac
BLAKE2b-256 a1805bcb9880b32278cd39da00e439b0ed81f366f66ef626f2cbcd8ba1093786

See more details on using hashes here.

File details

Details for the file acora-2.5-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

  • Download URL: acora-2.5-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl
  • Upload date:
  • Size: 176.4 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.5+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5cd4cd1087603e641e7ef9d88d8188b70d6130674316872945db522db9a3bde9
MD5 a7ab238e81c35bf707ed68cd22f59b29
BLAKE2b-256 e816ede60cec1aa2a37aeb4aa5bf779ca942d772167516cb3bab6de4b44ee2cd

See more details on using hashes here.

File details

Details for the file acora-2.5-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: acora-2.5-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 160.5 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5a8d3366d4756de23348e98e711ffb3d0f4f628a6b5dd93b2c99186eda5dee26
MD5 34f4754710a1f76a8591c3dd904c8f11
BLAKE2b-256 e74569c8957d2f65e6e65d38334e836331e9c5ac67333dfd30eb13ed9ae54f0c

See more details on using hashes here.

File details

Details for the file acora-2.5-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

  • Download URL: acora-2.5-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
  • Upload date:
  • Size: 178.9 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.5+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3d4e8808e3aec4c9286edc8aa0ccd4e0534c68f159d725121c67f57bf445a4b2
MD5 c8109ab77a57c43daa16d9b7518189a1
BLAKE2b-256 1c5251f46611b0cc889f1833df8d8368fda03f12d7afd36c530f4ff3e4239314

See more details on using hashes here.

File details

Details for the file acora-2.5-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: acora-2.5-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 162.7 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.7.1 requests/2.26.0 setuptools/57.4.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for acora-2.5-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ffcfbb73bc95c081a58e4e729fe9027d8989a05cb9085f3c77b81ec729fbdd23
MD5 eb02acd88a4fc11ba79a56abff2df5f9
BLAKE2b-256 09115d608627c62b6319a112353a4385d66498f2f7c9b5b3d8510c94a3a313e4

See more details on using hashes here.

Supported by

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