Skip to main content

Python package for searching and indexing

Project description

Latest Version CI Status Documentation Status

A Python indexing and searching system.

See http://github.com/Pylons/hypatia for more information while this package is in alpha development.

0.5 (2024-11-27)

  • Add support for Python 3.11, 3.12, and 3.13.

  • Drop support for Python < 3.8, including all the compatibility shims.

  • Repair bitrot in doctests: ensure that they run under py.test.

0.4 (2022-04-23)

  • Drop (unreleased) support for Python 3.3 and Python 3.4 (the persistent package no longer supports these versions).

  • Drop (unreleased) support for Python 3.5 (too difficult to build correctly – even with pyenv – to bother).

  • Drop (released) support for Python 2.6 and 3.2.

  • Add support for Python 3.6, 3.7, 3.8, 3.9, 3.10 (thanks to Thierry Florac).

  • Use pytest instead of python setup.py test -q in tox.ini.

  • Change how cross-version coverage is computed in tests.

  • Remove unused hypatia/text/ricecode.py file.

  • Change building of docs slightly to cope with modified github protocols. Some warnings are unearthed with newer Sphinx, which I’ve not caught by turning warnings into errors yet, because I don’t understand them.

  • Don’t modify queries attribute when optimizing And or Or, return a new instance instead. This change is needed to open new optimization possibilities, like factorization.

  • Fix Comparator __eq__ method to include type in comparison, previously NotAny(‘index’, [1]) was equal to Any(‘index’, [1]) for example.

0.3 (2014-06-12)

  • Depend on the ZODB package rather than the ZODB3 package. The former is a newer ZODB packaging, implying ZODB4. If you actually require ZODB v3, you will need to pin hypatia to an older release. You should know that the most recent release of ZODB3 at this time (3.11) actually implies ZODB v4 (I know it’s not exactly obvious, but Jim ensures me it is), so if you really require ZODB v3, you’ll need to pin ZODB3 to below 3.11 and hypatia to below this release.

  • Keyword indices now have a unique_values method like Field indexes.

  • Calling hypatia.util.ResultSet.first() and hypatia.util.ResultSet.one() is now idempotent. Calling it a second time will return the same value, and calling it will not effect the result set’s iterability (it will start from zero).

0.2 (2014-05-16)

  • Query objects are now consulted for intersect and union operations via methods, instead of the intersection/union logic being embedded in And and Or query objects. This makes it possible to create query object types which intersect and/or union differently when combined with other query results.

0.1 (2014-02-09)

  • Fix a typo in the Sphinx docs, which causes intersphinx references to fail.

0.1a7 (2013-10-08)

  • Add a unique_values API to field index.

  • Sometimes an index attribute could not be found to resolve a result set when deeply nesting boolean operations (like And and Or). See https://github.com/Pylons/hypatia/pull/5

  • Throw an Unsortable properly when a field index without any docids is used as a sort index and raise_unsortable is True.

0.1a6 (2013-05-30)

  • Add check_query method to text index to allow for checking if a search term is parseable.

0.1a5 (2013-05-06)

  • Added support for Python 3.2 / 3.3.

  • Fix signature of TextIndex.sort (it would fail when e.g. raise_unsortable was passed).

  • Add the a sort_type keyword argument to IIndexSort.sort and IResultSet.sort methods. This value can be passed by calling code to control the type of sorting used.

  • Add two constants: hypatia.interfaces.STABLE and hypatia.interfaces.OPTIMAL. These can be used as explicit arguments to the IIndexSort.sort and IResultSet.sort sort_type parameter to control the stability of sorting.

  • The constructor of IResultSet now accepts a sort_type keyword argument.

  • The ResultSet constructed by IResultSet.sort will be passed the value hypatia.interfaces.STABLE in its constructor to ensure that the second and subsequent sorts of the result set will be done as a stable sort, unless an explicit sort_type value is passed to that second sort.

0.1a4 (2013-04-28)

  • Add IResultSet interface definition.

  • Normalize keyword argument ordering of IIndexSort.sort and IResultSet.sort.

  • Add an argument raise_unsortable to IIndexSort.sort and IResultSet.sort methods. By default this is True. It means that iterating over the results returned by one of these methods may raise a hypatia.exc.Unsortable exception when a member of the docids passed in cannot be sorted by the index used to do the sort (e.g. a value for the docid is not present in the index). It defaults to True, which changes the default behavior of indexes. To get the old default behavior back, pass False for this value. Alternately, write code like this:

    from hypatia.exc import Unsortable
    
    ids = []
    results = resultset.sort(someindex)
    try:
        for id in results:
            ids.append(id)
    except Unsortable as e:
        unsorted = e.docids
        ids.extend(unsorted)

0.1a3 (2013-01-10)

  • Optimize index_doc implementations of field and keyword index in cases where the discriminator returns the default.

  • Remove code from hypatia.path. This package no longer supports PathIndex.

  • Remove interfaces.IIndexQuery interface. It was never relevant, as indices cannot be expected to implement all of its methods, only the ones which apply to each index.

  • BaseIndexMixin no longer supplies default implementation of applyFoo methods which raise NotImplementedError. Each index is now responsible for implementing all of its own applyFoo methods. This is in the interest of fidelity with new query methods such as eq, which are similarly not implemented in the base.

  • Indexes are now compelled to implement a qname method for use by queries.

  • DoesNotContain query renamed to NotContains for symmetry with other negated query names.

  • New index methods: eq, noteq, ge, le, lt, gt, any, notany, all, notall, inrange, notinrange, contains, notcontains. These methods return query objects. Ex:

    catalog['flavors'].eq('peach')
  • Query objects refactored internally to deal in index objects rather than index names.

  • The query.parse_query function now requires a catalog argument.

  • Query objects now supply an .execute method which returns a ResultSet.

  • ResultSet objects are returned from .execute. They represent a set of docids; they are iterable and have various methods for obtaining single objects (like one, first) and sorting (sort).

  • All Query objects now have a flush method which accepts arbitrary positional and keyword arguments. Calling the flush method of a query object will cause the flush method of all indexes participating in the query with the value passed to Query.flush with the same positional and keyword arguments. This is to support Substance D upstream, which may require indexes to be flushed before a query happens.

  • Add a document_repr method to all indexes which accepts a docid and returns a string represnting the index’s knowledge about that docid.

0.1a2 (2012-07-02)

  • This version of the code is incompatible with indexes produced by 0.1a1. There is no upgrade script. Shame on you for using software with a 0.1a1 version number and expecting backwards compatibility.

  • Add hypatia.catalog.CatalogQuery.sort API for sorting external sets of docids based on index values.

  • Add IIndexEnumeration interface, which all indexes must support. This implied the following backwards incompatibilities:

    • New interface methods: docids, docids_count, indexed, indexed_count, not_indexed and not_indexed_count.

    • documentCount method renamed to indexed_count.

    • wordCount method renamed to word_count.

  • Remove unused INBest interface.

  • IIndexInjection interface clear method renamed to reset to prevent confusion with dictionary clear (catalog is often dictionarylike). Catalog clear_indexes method replaced with reset.

0.1a1

  • Initial release: fork of repoze.catalog and zope.index, combined.

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

hypatia-0.5.tar.gz (148.8 kB view details)

Uploaded Source

Built Distributions

hypatia-0.5-pp310-pypy310_pp73-win_amd64.whl (151.8 kB view details)

Uploaded PyPy Windows x86-64

hypatia-0.5-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (149.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

hypatia-0.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (149.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

hypatia-0.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl (148.9 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

hypatia-0.5-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (148.6 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

hypatia-0.5-pp39-pypy39_pp73-win_amd64.whl (151.8 kB view details)

Uploaded PyPy Windows x86-64

hypatia-0.5-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (149.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

hypatia-0.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (149.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

hypatia-0.5-pp39-pypy39_pp73-macosx_11_0_arm64.whl (148.9 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

hypatia-0.5-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (148.6 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

hypatia-0.5-pp38-pypy38_pp73-win_amd64.whl (151.8 kB view details)

Uploaded PyPy Windows x86-64

hypatia-0.5-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (149.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

hypatia-0.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (149.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

hypatia-0.5-pp38-pypy38_pp73-macosx_11_0_arm64.whl (148.8 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

hypatia-0.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (148.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

hypatia-0.5-cp313-cp313-win_amd64.whl (151.7 kB view details)

Uploaded CPython 3.13 Windows x86-64

hypatia-0.5-cp313-cp313-win32.whl (151.3 kB view details)

Uploaded CPython 3.13 Windows x86

hypatia-0.5-cp313-cp313-musllinux_1_2_x86_64.whl (157.0 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

hypatia-0.5-cp313-cp313-musllinux_1_2_i686.whl (157.0 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

hypatia-0.5-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (156.7 kB view details)

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

hypatia-0.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (156.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

hypatia-0.5-cp313-cp313-macosx_11_0_arm64.whl (149.0 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

hypatia-0.5-cp313-cp313-macosx_10_13_x86_64.whl (148.6 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

hypatia-0.5-cp312-cp312-win_amd64.whl (151.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

hypatia-0.5-cp312-cp312-win32.whl (151.3 kB view details)

Uploaded CPython 3.12 Windows x86

hypatia-0.5-cp312-cp312-musllinux_1_2_x86_64.whl (157.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

hypatia-0.5-cp312-cp312-musllinux_1_2_i686.whl (157.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

hypatia-0.5-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (156.8 kB view details)

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

hypatia-0.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (156.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

hypatia-0.5-cp312-cp312-macosx_11_0_arm64.whl (149.0 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

hypatia-0.5-cp312-cp312-macosx_10_13_x86_64.whl (148.6 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

hypatia-0.5-cp311-cp311-win_amd64.whl (151.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

hypatia-0.5-cp311-cp311-win32.whl (151.3 kB view details)

Uploaded CPython 3.11 Windows x86

hypatia-0.5-cp311-cp311-musllinux_1_2_x86_64.whl (156.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

hypatia-0.5-cp311-cp311-musllinux_1_2_i686.whl (156.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

hypatia-0.5-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (156.2 kB view details)

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

hypatia-0.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (156.0 kB view details)

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

hypatia-0.5-cp311-cp311-macosx_11_0_arm64.whl (148.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

hypatia-0.5-cp311-cp311-macosx_10_9_x86_64.whl (148.6 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

hypatia-0.5-cp310-cp310-win_amd64.whl (151.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

hypatia-0.5-cp310-cp310-win32.whl (151.3 kB view details)

Uploaded CPython 3.10 Windows x86

hypatia-0.5-cp310-cp310-musllinux_1_2_x86_64.whl (155.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

hypatia-0.5-cp310-cp310-musllinux_1_2_i686.whl (156.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

hypatia-0.5-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (156.0 kB view details)

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

hypatia-0.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (155.7 kB view details)

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

hypatia-0.5-cp310-cp310-macosx_11_0_arm64.whl (148.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

hypatia-0.5-cp310-cp310-macosx_10_9_x86_64.whl (148.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

hypatia-0.5-cp39-cp39-win_amd64.whl (151.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

hypatia-0.5-cp39-cp39-win32.whl (151.3 kB view details)

Uploaded CPython 3.9 Windows x86

hypatia-0.5-cp39-cp39-musllinux_1_2_x86_64.whl (155.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

hypatia-0.5-cp39-cp39-musllinux_1_2_i686.whl (155.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

hypatia-0.5-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (155.8 kB view details)

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

hypatia-0.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (155.6 kB view details)

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

hypatia-0.5-cp39-cp39-macosx_11_0_arm64.whl (148.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

hypatia-0.5-cp39-cp39-macosx_10_9_x86_64.whl (148.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

hypatia-0.5-cp38-cp38-win_amd64.whl (151.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

hypatia-0.5-cp38-cp38-win32.whl (151.3 kB view details)

Uploaded CPython 3.8 Windows x86

hypatia-0.5-cp38-cp38-musllinux_1_2_x86_64.whl (155.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

hypatia-0.5-cp38-cp38-musllinux_1_2_i686.whl (156.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

hypatia-0.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (156.5 kB view details)

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

hypatia-0.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (156.2 kB view details)

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

hypatia-0.5-cp38-cp38-macosx_11_0_arm64.whl (148.9 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

hypatia-0.5-cp38-cp38-macosx_10_9_x86_64.whl (148.5 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

Details for the file hypatia-0.5.tar.gz.

File metadata

  • Download URL: hypatia-0.5.tar.gz
  • Upload date:
  • Size: 148.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for hypatia-0.5.tar.gz
Algorithm Hash digest
SHA256 c496a44d1d988c6aa10f3afab289890c6911eebed80c1c70896533588de8a55e
MD5 1b1198a52e1c33a84657d26064e0aaf9
BLAKE2b-256 1f4953f4332ed0db5b7145eea8114a461b1bb3e0b6c0e65b419ab599140042af

See more details on using hashes here.

File details

Details for the file hypatia-0.5-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5077035b6fc9a9e9a03ac6d2751ceb521a47691565e6cbeea27211405461cfb1
MD5 ebede443c93ac03bacec028c7bfed8c6
BLAKE2b-256 b3fba9814010018abe2eb3a1f9cba9d07e2d633524c0b4966926c62f7fa32640

See more details on using hashes here.

File details

Details for the file hypatia-0.5-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7361bf07ee1176714d54c6d85c3f0dc5297579995569b54a697573734e5d72a1
MD5 af2cf4a7c1db76dcd604423a0bd7d546
BLAKE2b-256 8f8dcf9b1dc4e2f434eef7eeafa3545b2e18ad5a22da0fa0545814d1bd6e7db7

See more details on using hashes here.

File details

Details for the file hypatia-0.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hypatia-0.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2167c87c36a534208522a901cb6816d747e9b37487514e9fed4ad66a4bde70fe
MD5 626c78b65a3c287c3f6834b019250955
BLAKE2b-256 9a9f3c5cc7403a2f2ccb0e29af48bf20f1be6b0a878928d65e4314af6813c47d

See more details on using hashes here.

File details

Details for the file hypatia-0.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6757d0f822f8e5489d4e78b5b40deb7ad87563c40a8659d2429b40ee23e782f3
MD5 7c7da419336b9c8748188b370cc73d2d
BLAKE2b-256 91d18be39fcdb07a83df15def903b2f7aaba5617a634204901ee99a8bbe57e3e

See more details on using hashes here.

File details

Details for the file hypatia-0.5-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a0ae24636b2c828950b56d020bb0264b2e582054ea5a8dd97ea1e35704d53fab
MD5 7c5c13fda94b3d09938586e0be21cd82
BLAKE2b-256 06efb390b8bef7698a5ddcb0eed4757557cb05656076d0acd9923a6d4f34ce77

See more details on using hashes here.

File details

Details for the file hypatia-0.5-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3b045b6563bf7654d9ba5d919da297f366bcc3b2c9a18f7dee2b200e1f962639
MD5 1838c2547baa266ef4040ed73cb016af
BLAKE2b-256 9e745defb26bc4eaf53f62e41a31d7d67e9737195141056f0f768ed5313054a6

See more details on using hashes here.

File details

Details for the file hypatia-0.5-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1265841f3288b6f0c289bc3c03ce93468a0a61a05cc9d6f858d22faa4946917f
MD5 9d97ace5072178893f249ed83397ee5f
BLAKE2b-256 6c9e32382349fae7c8824ad38c56467e1e7b2c852c0eafc83404b45de0a6eb5e

See more details on using hashes here.

File details

Details for the file hypatia-0.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hypatia-0.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fab4ebdcc637b1d586c9fd011ec88ece37b3ce4d6dc9c3c01d5717ba76eeca9a
MD5 0bb283b0244056f293342d0400831e05
BLAKE2b-256 6d665f4d9f7e06f84ff6866ef0d66880703a31f2e8c0bdaf906fbbb87d1010f7

See more details on using hashes here.

File details

Details for the file hypatia-0.5-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2796e47612ae5a95ac1274310a28185d5642cf6b1b8db23a311683c131d16772
MD5 9ad107205d2bcf439c97ea897e6b873c
BLAKE2b-256 721142e8c92958a1ebd15e3016f7cab97dba0397099863d0f9392d723427affa

See more details on using hashes here.

File details

Details for the file hypatia-0.5-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 45ff48426bed2d680c060351c0d27799f95a88b9244df4260382362da6bc35b0
MD5 5a4e86d4855d676c0f92f82001b6638e
BLAKE2b-256 db92d7f516c49e10cdd9ca3146cb2280fb1763d9fee3bccd215e96913d145178

See more details on using hashes here.

File details

Details for the file hypatia-0.5-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 02c6acf8d605227eedb167e88ab739fbf44d45a1f9725c9bd36eff0fd7c6a591
MD5 1810a8cf648516bce918f2e240a15ba9
BLAKE2b-256 f6f04d610307cbe0fcb91773c88897283813e429579eb2d4ffea737620d85153

See more details on using hashes here.

File details

Details for the file hypatia-0.5-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 796ecc6d7192f463baf07e832d4d83219a366ad8e679a642599573c348b05b94
MD5 713e12afc3c684c238093b6e55042067
BLAKE2b-256 ca72f01164af9fe02b35924242260c134e2bf4031083a85509b8cccb0f0a80eb

See more details on using hashes here.

File details

Details for the file hypatia-0.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hypatia-0.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 24718c8cd54e0c660557a0b385bbefbe89850e128c890dcdcfa5aa8c1dad7b56
MD5 0bae7834ac0b14bcdaf1445465516a61
BLAKE2b-256 82572ad1ec79ac33e9ad25dd687922a3cb0c741f894c28678dda507790fe0979

See more details on using hashes here.

File details

Details for the file hypatia-0.5-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61c486277980b818b37745610a384e1b118061c9109e5f3f87821215bd3a3c56
MD5 5987864f0a71a17c3a06494f0e69bada
BLAKE2b-256 02a96c6b6ff6e33206dcfee1675a536ed1bb68f2a3130b412f0fb9af846274b9

See more details on using hashes here.

File details

Details for the file hypatia-0.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9075c422ef7d39c854d19fef8d1de264fadf07272bd07671b7007645e1906953
MD5 9489c25e1be743ba20ed5f513b4c2600
BLAKE2b-256 c64e4a8f30ffdab5410efade0f7abd1f8bbf4bf1fc07a25e68e7a1235bd78de8

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: hypatia-0.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 151.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for hypatia-0.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6b7fcc2df21c3bce79d24d8e413dd9a206f25ecd4bfd3c8ce9c58b70a7ed56e1
MD5 4dbc3697eb4bc478bd434c0f704ceb06
BLAKE2b-256 67d43c9565b7d2befdaa5f825278899b8743ed36030732980d5af1f18338a46d

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp313-cp313-win32.whl.

File metadata

  • Download URL: hypatia-0.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 151.3 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for hypatia-0.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5e665a4b8337c2efa0574252a50e0e5ad12c33d57b24dd8915eed7f2cbc2f068
MD5 5172041cf83501d67354f5cc1c18aaca
BLAKE2b-256 7d13f389f92db8eac00b746d03970a885e00649ca9bf3aab07099f825f8deada

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2fac58e30852cc4e8bd192d9a7d7dadd8d6c81fff535412a121a8adafa2a7cee
MD5 a101f7c3c92c322b09d856c97bd4dde3
BLAKE2b-256 dcf414357f28d0120c5182becb02882fed7e072a5876b2362bae255382fc6953

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 da99cebcab0b2d57bdff4c3b88a87fb15ad9968ea64849cb3a0d90a6d6c958eb
MD5 104293cea9f1decb572a6b141717f106
BLAKE2b-256 845e3f1faa79b07577bf2912cf4045ef345ad32c865718099b829ef7af7fdd63

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9c7a4f3798a455baea019ea15ac45e04b01fb3de08a2dbbbeb4a2caa7b05f90
MD5 e6a4713d2e83aaa0561673ff4a4c448b
BLAKE2b-256 760246f162b92e00d16eee7e91fbfd0255057070a10bd27dfe86a142d9eb4d22

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9893d952d3ef7518f3f712decd1a5bc5df85a145905738cd738c7b3c64e0837d
MD5 256833ccc7226213a0c055fdabe04687
BLAKE2b-256 6fcae0bd9053f7febacd9ee30003284c19c5f9b8cf0115c7060c79a04f827c55

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ac4878e9900a92f94664d8ba0a15bc9fc655849a33358e948efc27892bbc908
MD5 28558c3558537b12698f31cdb93c2a76
BLAKE2b-256 c9357fbb539ce37754780dced2e8a1486d1a93eb8e6e8b7b296c696a375a1864

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b065eeed42f34d9b2c5aa28622ee83f5ff12b7ce81c5e27d8904bd215dae72d1
MD5 89e12ed70c5da9f30629f6dab54de973
BLAKE2b-256 d6ba7a2b95df03f7beade51059ceb91242d6d3d032dfbbb1bb5364212cbd0b6e

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: hypatia-0.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 151.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for hypatia-0.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bc9cbb0b35847ae690e9743370de7a2c8fccb3eddfd58ccdb25fda92fafcf358
MD5 027fe27111c525bd3f25090f50b914ef
BLAKE2b-256 cebcb321689e2c0ccdb987c3e0c04b74d5d932995f045bf191b69f168acb574a

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp312-cp312-win32.whl.

File metadata

  • Download URL: hypatia-0.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 151.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for hypatia-0.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9c01e0e8f2775cf80716beb86a816e7556a52a33cfa5e20a2deda9f01e4f47b4
MD5 5c32b6f5975c77ad5fc044105fa6825f
BLAKE2b-256 b88aa134d627817859929e69d6f27903edfb2cf9e8c5aa43a74e210e02c7547e

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 18dc8b0cd2cde3f1b1a01b454c3902108dd9dc1522ee9e621a062b51d2d266f2
MD5 d87448f9141f4e28d3a6d294fe347657
BLAKE2b-256 a04eff0917b4ebea623649d74ae0014ec632f0823e8b2fee76e41715750e3605

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4a80b762d7283f70431e7759723ebb90cb0c26b885101580825df96a2722ba61
MD5 3008818ae79950df2333c24c3416beda
BLAKE2b-256 c2d1fda54b4f46666b63fa76917bddd48bc71b790fb3584d38f7b04487a90e7e

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ebaae3392d590deb342b5f37c432e610def970cd474987ae3f8e2b2ff313f15c
MD5 75e09b92cf4b77d1540c6e4574a1813a
BLAKE2b-256 dca4deb9647f7397ee47b77656c81aabbbc5fa92ab94454c2864cc86204e58b2

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 45f3a323f138952e2eb3e6b17071976d751b91f0a72de90867ee0b3da1490fca
MD5 c26783d6794e426a42a9bbdbe9c3e1ca
BLAKE2b-256 0d6269d15c6cc337e453daa63d165a96ed02fe8ccea00bd704a45b4898daa1a0

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7df4507b53d3fa6b4d9418ed06a48e5ed00fde518595a4ce2e18f548012a779a
MD5 3d9f761888cb221047b4dafe0b417ee7
BLAKE2b-256 d17cf956201e29c777bbb9af0be36f1ae83101c1e74b6220b9a199db8c789770

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5173dc530fa9b7f69e09c559480cc2d9965d0f8685e04a232a7f9e093b894994
MD5 4e37c03acf1a08a499a181d4ac5c210f
BLAKE2b-256 430ae3fdecf472bd19e6ef95a445663742ac52e8961ef0d0156cfb96526881fe

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: hypatia-0.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 151.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for hypatia-0.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3ae33b516ce8b7dde1e10ac6168745021af85037cbd1bb95ac0a1c40f4d6c387
MD5 f9d622618223c6a44ad789cb6a22ef77
BLAKE2b-256 4ae4bb2da753991357376bc2b2d5a0a27637153235c4ab611155564ac4e50b2d

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp311-cp311-win32.whl.

File metadata

  • Download URL: hypatia-0.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 151.3 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for hypatia-0.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6de73d9a8ff606d347981b9544e9ca6796ea3800e38ec7749c3b435b835dca65
MD5 5f69f56fd1332538f08efc4d968307ed
BLAKE2b-256 418b242adc6e1bbc5f41eaa4c71068d7ccedea9bd61ff47050f495f243e61a74

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 96419cb8a952deca36fa155528c1708c8563a0bab4ea6ee86783bae5832eab30
MD5 4f6f8901fe37352e211e75b849aef008
BLAKE2b-256 528f332d4263863b177a950129cce7f71ce08dd939f0fd8d26df1e7b7414fbc9

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d1c198022058d94f8cade602ff90250141819f694f9f3665f97e74f78f4f1659
MD5 8b77882f63d15856fa75d5c9926d3bc9
BLAKE2b-256 c26e53318af4c5407c3fdb78261a0bd2d33cd6124701c0489ffb05af3940b408

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 436606ea376ac04ba7c6585988270205f6a1bc78071737fe6962dd8d9edc7966
MD5 af308619e718197967619b051d27105e
BLAKE2b-256 21681ee08cd72f8a8eee5067958583493c3c2c369d19cd85ca8c3a430b60bba5

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 47628266f065e7f98264a9a8bded512036ef3b04a35c4ce63acf61c9aade5afb
MD5 ff2bab36447c0f1c5f1d96e0eb7d5a98
BLAKE2b-256 0cac4d407ef47a25750cd75c4fbe3933007f41c560d86df40651dd65949436ee

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8dff6e7dd16ac89f17a2a9fbb21c184e4765a6c9d27768b45f07e588b9d7828
MD5 e2261ea5995e5f0129d6eef94b556fbb
BLAKE2b-256 3353ab0343c13c82b5c7fae1f3250611cd169c6a4be85a13ba05cf8a391ed78e

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1b7364c39dbc8eec32320cca4c82d961076be7bb9c548b988717e1d613865ecd
MD5 8e598c82bab652983d5dae65cd829463
BLAKE2b-256 506726566988b60bb2e6aec4eebbc6e00b5e1ddd6b686abaaa51b552ea752b2a

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: hypatia-0.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 151.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for hypatia-0.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d6540a80c01de9f02f4a4267727a62fb74ad47ffdbf5212e74362c5e4e2b746d
MD5 17b1cdcce76b0163f95058609c9c3da5
BLAKE2b-256 8521fac5d937d095eee077d4291c117332279bfb13ef1e342bc708a2094ae1b6

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp310-cp310-win32.whl.

File metadata

  • Download URL: hypatia-0.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 151.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for hypatia-0.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 49a6b690b25141bb9e393cba0067a1c098e664c2b17f2ba4f2e97c0c986cf9ef
MD5 49da96a80fc689c3c7236aecced5fade
BLAKE2b-256 fa2e8a1e16a0898c866ed144d202b8750a16f14dd771e643f0e382635cb8712f

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f88f9218e941e1baf6096faefff1a66ec7ab75d9def80aa7ceebef86e50bae11
MD5 0d73dfb8368c9dbd2adb9613ec9f2603
BLAKE2b-256 70793bace6a3824bfa8a8c8978c1cd8ff532b34957df6688b91087e8f97005ca

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 707024e687100c0fdabbe9576322b06f2a48947a70794e9efa90d16d6a45b2f6
MD5 417d9e67a80c08a850f7ca73fb4489d6
BLAKE2b-256 f1b23a0e69e275115558e95711442c607e3d4b99739128f949e5b7438fcb2d0a

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c844675af8938298fd35283a05f83f7c9ff4a87fd92c6b80d315e57ddb4035db
MD5 3815e32eeede25b7536b2057b2d4eb48
BLAKE2b-256 3816b77a341045bcdf22393e865ed6e2793ae18cbfb831e48acdf274a237234f

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4275c83323a7da3ac6ea22ee537586e455a8eb0f93ee4f82ded8416c91ac91da
MD5 546553665095dc7c46d532348f7daeb6
BLAKE2b-256 ce5b7130c3726315d861f3c9a5cc8dfa22a8ff16b6877cf1acad3d2e1905adb9

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a19af6060a6bdb36aa8f8d5b11dd9d9af8c7618ea617880e53c8252abadecf97
MD5 b98637ac1c4a4b91a07b1ecf5a058be9
BLAKE2b-256 f52385fdb8172fc8ed68535b00d50e48b985a89acb59de84ef6541ca6f789b4f

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7d412a0a323dda93b2e1824b89b6fd29041c81da659a58076a2214d3f404aed3
MD5 2d957ed5223c50b05a57ab97bb1fa4e0
BLAKE2b-256 e187b2c3a4d2fbfac130159b7272639222625c4493194340d9f8aed0b4edafeb

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: hypatia-0.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 151.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for hypatia-0.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f1a127664d4f41ee85e4512a5c0466e5634eb0b75bb330beb5f94ecbfad023d6
MD5 3f7165169f2b92c7b097462002314122
BLAKE2b-256 8e086d4c11015e589f879d979bc0b54830dce6e0688fc41617402a1231da8f2f

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp39-cp39-win32.whl.

File metadata

  • Download URL: hypatia-0.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 151.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for hypatia-0.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 84725e5b439a2e10bd318af5c39342443911903094221e600183106ce9237fb8
MD5 b29ce02035f07ab05ff464ed1ad04487
BLAKE2b-256 a1f3ae4488e96b2074ee8c5440e6803298b1309f1daecd3608060b30c071c9ab

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 750f356a26ee6670000bafa901a88f6cfe7cf64326e3ddf7d49f7b95e286c3b1
MD5 5c467299760281e5e83ca08d7890be0f
BLAKE2b-256 e4d388f89bd4faf605287ff0757aa175a01495eaf02a423858cb47b2ca65be38

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8715067693a567bbaa7cd0b7b426d6f2d3e25a8decfa7689454b764c64a16b61
MD5 580c1cf2cc07b748be58fec6a81eece4
BLAKE2b-256 6e38cca7e9f892a962b18cc6100cc0314c80c6d62ea008c64667b87eb8be561d

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 11f176bc0f1843de6f4aec87aa04dca2c3165a53de935608449db79fa471e0f2
MD5 2c6ce94bc254b86f98db8a05f2233608
BLAKE2b-256 f1188e2486ee1abac75478bb9ed153ab62aa17ed5d87cb3290c77b882606a264

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ece4109df9ca4d283ea32e265f052880ca99544ca84e1bb20263411fd302a4e0
MD5 9330a9cdb315390b9411ca9332ba217d
BLAKE2b-256 c3fe0f0eb7a599d822102f5c02ff65c36f0d95dcf1e921688d973b3a1be37063

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4cc3b77bbd949908c607d744c53691d6a7a0b3a32b3f2e491d4f56ce4f5dbaa6
MD5 99ab6e47715450ed7f5551df07f3b8a2
BLAKE2b-256 a2df6a398be5c52701f7ee32e6258dde9aae8f03b819110d7eea58441f00d962

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 328154a5c6f1168aca6bd7e273aacf866b41c7dfc420d4516e78f889c1a61a10
MD5 89dbaf277a9ad9f9f7adad1d8efd7b4e
BLAKE2b-256 73b5cf84f50648461128efa7e77d1ff2d5374c9832f3619ab8fb878958dfb8d4

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: hypatia-0.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 151.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for hypatia-0.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 57e310390bb71e70577a5a73eaa84a9d65035644645acddd798dcee9cc241f8d
MD5 93b745a4e8e43a5fb020ae2b858debc6
BLAKE2b-256 72f8eee861e4a4bdcf8ac03d27a82222b6d51b19b474f064eb47be7660d492c6

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp38-cp38-win32.whl.

File metadata

  • Download URL: hypatia-0.5-cp38-cp38-win32.whl
  • Upload date:
  • Size: 151.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for hypatia-0.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 475debf743b873e492219ef3d1fadd21f23412bf2855885ce479b1ebe32f9523
MD5 fc23f5c192bf6d8ea7e4c50edbacd53a
BLAKE2b-256 df36841f71ca0abb0c29651392c536deab115540a07d91fe14ea5812420c741f

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 135db5ad93b63163fa5eed4d802c0d92ad78d88a229e2ba6a08d1a93e46bb630
MD5 35d6cfafa63bac9cd8fa5c8d78a2ee84
BLAKE2b-256 5b85ef964b5ef033da619b17db822cc14181a92b4b974992e001404baf2fde64

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f304abaacee02243bd3f169631103ae15a8e407e3cef105f3e39da5fba833d9b
MD5 f56596c1289d9c7cdedf01510ca8bb28
BLAKE2b-256 fb1dde9a2601c789d0f3afab5370f1232f3acb621b72be2c2ecf07c15388e05f

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a0db9dd641db4275a49da5ac8cc8e02297c3a7e4e784912187f47387f44f2369
MD5 87da413b6c33cb04559cb0f1b073775f
BLAKE2b-256 194d975700f97840c9403578ba52d8e97655515871275d96f210e4b040b944bb

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9f552fd8adea32c165bd985a7741df5633f5ae905df86311adc2289d856a1187
MD5 056c4917f78214450254f8bea3e1d1bf
BLAKE2b-256 29b74e7c06dbe4e8e24e641f7d63d76b86612223904b38e0e9e271ca5216cfa8

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 933bb2d691c05d2e7ed8167c6005a58a7bfdcbedad32b3ca5c4ddb0971f14d7a
MD5 7423b43c0e900dde1721fbede11c4206
BLAKE2b-256 6d98bf3398bb98ebe8d94a92aba7e719feeaba9236ac779971f04c24c0f27640

See more details on using hashes here.

File details

Details for the file hypatia-0.5-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hypatia-0.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9f3feaa21eecc5d1444ecd572757e8fc9c7fa399b4080b483ad99a3375f3f988
MD5 fe675f5621c9392857a259ba8c4f93fe
BLAKE2b-256 6b3724e920dd4e77f19b7d56b52fa4b71e56ca60dead954427c1d901708fba4c

See more details on using hashes here.

Supported by

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