Skip to main content

ANISE provides a toolkit and files for Attitude, Navigation, Instrument, Spacecraft, and Ephemeris data. It's a modern replacement of NAIF SPICE file.

Project description

ANISE (Attitude, Navigation, Instrument, Spacecraft, Ephemeris)

ANISE is a rewrite of the core functionalities of the NAIF SPICE toolkit with enhanced performance, and ease of use, while leveraging Rust's safety and speed.

Please fill out our user survey

Introduction

In the realm of space exploration, navigation, and astrophysics, precise and efficient computation of spacecraft position, orientation, and time is critical. ANISE, standing for "Attitude, Navigation, Instrument, Spacecraft, Ephemeris," offers a Rust-native approach to these challenges. This toolkit provides a suite of functionalities including but not limited to:

  • Loading SPK, BPC, PCK, FK, and TPC files.
  • High-precision translations, rotations, and their combination (rigid body transformations).
  • Comprehensive time system conversions using the hifitime library (including TT, TAI, ET, TDB, UTC, GPS time, and more).

ANISE stands validated against the traditional SPICE toolkit, ensuring accuracy and reliability, with translations achieving machine precision (2e-16) and rotations presenting minimal error (less than two arcseconds in the pointing of the rotation axis and less than one arcsecond in the angle about this rotation axis).

Features

  • High Precision: Matches SPICE to machine precision in translations and minimal errors in rotations.
  • Time System Conversions: Extensive support for various time systems crucial in astrodynamics.
  • Rust Efficiency: Harnesses the speed and safety of Rust for space computations.
  • Multi-threaded: Yup! Forget about mutexes and race conditions you're used to in SPICE, ANISE guarantees that you won't have any race conditions.
  • Frame safety: ANISE checks all frames translations or rotations are physically valid before performing any computation, even internally.

Tutorials

Note: The tutorials can be viewed in read-only form on the Github repo.

Usage

In Python, start by adding anise to your project: pip install anise.

from anise import Almanac, Aberration
from anise.astro.constants import Frames
from anise.astro import Orbit
from anise.time import Epoch

from pathlib import Path


def test_state_transformation():
    """
    This is the Python equivalent to anise/tests/almanac/mod.rs
    """
    data_path = Path(__file__).parent.joinpath("..", "..", "data")
    # Must ensure that the path is a string
    ctx = Almanac(str(data_path.joinpath("de440s.bsp")))
    # Let's add another file here -- note that the Almanac will load into a NEW variable, so we must overwrite it!
    # This prevents memory leaks (yes, I promise)
    ctx = ctx.load(str(data_path.joinpath("pck08.pca"))).load(
        str(data_path.joinpath("earth_latest_high_prec.bpc"))
    )
    eme2k = ctx.frame_info(Frames.EME2000)
    assert eme2k.mu_km3_s2() == 398600.435436096
    assert eme2k.shape.polar_radius_km == 6356.75
    assert abs(eme2k.shape.flattening() - 0.0033536422844278) < 2e-16

    epoch = Epoch("2021-10-29 12:34:56 TDB")

    orig_state = Orbit.from_keplerian(
        8_191.93,
        1e-6,
        12.85,
        306.614,
        314.19,
        99.887_7,
        epoch,
        eme2k,
    )

    assert orig_state.sma_km() == 8191.93
    assert orig_state.ecc() == 1.000000000361619e-06
    assert orig_state.inc_deg() == 12.849999999999987
    assert orig_state.raan_deg() == 306.614
    assert orig_state.tlong_deg() == 0.6916999999999689

    state_itrf93 = ctx.transform_to(
        orig_state, Frames.EARTH_ITRF93, None
    )

    print(orig_state)
    print(state_itrf93)

    assert state_itrf93.latitude_deg() == 10.549246868302738
    assert state_itrf93.longitude_deg() == 133.76889100913047
    assert state_itrf93.height_km() == 1814.503598063825

    # Convert back
    from_state_itrf93_to_eme2k = ctx.transform_to(
        state_itrf93, Frames.EARTH_J2000, None
    )

    print(from_state_itrf93_to_eme2k)

    assert orig_state == from_state_itrf93_to_eme2k

    # Demo creation of a ground station
    mean_earth_angular_velocity_deg_s = 0.004178079012116429
    # Grab the loaded frame info
    itrf93 = ctx.frame_info(Frames.EARTH_ITRF93)
    paris = Orbit.from_latlongalt(
        48.8566,
        2.3522,
        0.4,
        mean_earth_angular_velocity_deg_s,
        epoch,
        itrf93,
    )

    assert abs(paris.latitude_deg() - 48.8566) < 1e-3
    assert abs(paris.longitude_deg() - 2.3522) < 1e-3
    assert abs(paris.height_km() - 0.4) < 1e-3


if __name__ == "__main__":
    test_state_transformation()

Getting started as a developer

  1. Install maturin, e.g. via pipx as pipx install maturin
  2. Create a virtual environment: cd anise/anise-py && python3 -m venv .venv
  3. Jump into the virtual environment and install patchelf for faster builds: pip install patchelf, and pytest for the test suite: pip install pytest
  4. Run maturin develop to build the development package and install it in the virtual environment
  5. Finally, run the tests python -m pytest

To run the development version of ANISE in a Jupyter Notebook, install ipykernels in your virtual environment.

  1. pip install ipykernel
  2. Now, build the local kernel: python -m ipykernel install --user --name=.venv
  3. Then, start jupyter notebook: jupyter notebook
  4. Open the notebook, click on the top right and make sure to choose the environment you created just a few steps above.

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

anise-0.4.5.tar.gz (2.0 MB view details)

Uploaded Source

Built Distributions

anise-0.4.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

anise-0.4.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

anise-0.4.5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (6.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

anise-0.4.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

anise-0.4.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

anise-0.4.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

anise-0.4.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

anise-0.4.5-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (6.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

anise-0.4.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

anise-0.4.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

anise-0.4.5-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

anise-0.4.5-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

anise-0.4.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

anise-0.4.5-cp312-none-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.12 Windows x86-64

anise-0.4.5-cp312-none-win32.whl (3.6 MB view details)

Uploaded CPython 3.12 Windows x86

anise-0.4.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

anise-0.4.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

anise-0.4.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (6.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

anise-0.4.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

anise-0.4.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

anise-0.4.5-cp312-cp312-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

anise-0.4.5-cp312-cp312-macosx_10_12_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

anise-0.4.5-cp311-none-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.11 Windows x86-64

anise-0.4.5-cp311-none-win32.whl (3.6 MB view details)

Uploaded CPython 3.11 Windows x86

anise-0.4.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

anise-0.4.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

anise-0.4.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (6.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

anise-0.4.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

anise-0.4.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

anise-0.4.5-cp311-cp311-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

anise-0.4.5-cp311-cp311-macosx_10_12_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

anise-0.4.5-cp310-none-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.10 Windows x86-64

anise-0.4.5-cp310-none-win32.whl (3.6 MB view details)

Uploaded CPython 3.10 Windows x86

anise-0.4.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

anise-0.4.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

anise-0.4.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (6.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

anise-0.4.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

anise-0.4.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

anise-0.4.5-cp310-cp310-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

anise-0.4.5-cp39-none-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.9 Windows x86-64

anise-0.4.5-cp39-none-win32.whl (3.6 MB view details)

Uploaded CPython 3.9 Windows x86

anise-0.4.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

anise-0.4.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

anise-0.4.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (6.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

anise-0.4.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

anise-0.4.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

anise-0.4.5-cp39-cp39-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

anise-0.4.5-cp38-none-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.8 Windows x86-64

anise-0.4.5-cp38-none-win32.whl (3.6 MB view details)

Uploaded CPython 3.8 Windows x86

anise-0.4.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

anise-0.4.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

anise-0.4.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (6.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

anise-0.4.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

anise-0.4.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

File details

Details for the file anise-0.4.5.tar.gz.

File metadata

  • Download URL: anise-0.4.5.tar.gz
  • Upload date:
  • Size: 2.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for anise-0.4.5.tar.gz
Algorithm Hash digest
SHA256 b0ce1839bd3bf1a3439af479f37f4d7158e360183f87d199ef264126d979717b
MD5 63a5bcbd6cc8135d881222cbb2ddb5f7
BLAKE2b-256 c4dfc65bf6785327e0d03cabb42b2e798a58ab57b3bb7c5e2f46e8a63c99aae1

See more details on using hashes here.

File details

Details for the file anise-0.4.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for anise-0.4.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b88ffabafda5d8db8c1aea10fb8542a73607b03b8d6618ecce722bf2e0366b9
MD5 b4596dfabbe8869ebbbc06aa87cd0d28
BLAKE2b-256 cc4da43d2670afffcc8cdb63c4ae4d18f8d9128fd8fe1594b625923c34918773

See more details on using hashes here.

File details

Details for the file anise-0.4.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for anise-0.4.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0e29e20be3da9c3228f29871076b73bc9425dcbd8a6474e437aae4687e79e011
MD5 21db21cc1aa234b11df96e8f636c0d40
BLAKE2b-256 cbd84d5bfe9818fed65258d60d00893bdec3fac1d3569c8d71de3f845dba0f74

See more details on using hashes here.

File details

Details for the file anise-0.4.5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for anise-0.4.5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e2d10a67f48076afc3bbdc6f0d3cea6e905a20823b7c3917e062eb61b412e86d
MD5 7c76de2b34234859cc51a383286c46d3
BLAKE2b-256 6c2725461225f00979116afea89406e71949f61ad637f03bf1471101f64bf094

See more details on using hashes here.

File details

Details for the file anise-0.4.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for anise-0.4.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3219c3feb483bf705d3b8871fbdf994d896e7bd00104d6dc64d205bb70c30c71
MD5 3e7e956d76113fe3f0fe1921b5c75ca3
BLAKE2b-256 6f7adbacb263f09752e43777352fd9f1347857b77601f8476c18946c55434362

See more details on using hashes here.

File details

Details for the file anise-0.4.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for anise-0.4.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dc84247405b1bfae7f325b16c635271fd3a5e2ba35dac7449250d2dc6a613c37
MD5 34ebfb0e108eada226386a66b5e5e64f
BLAKE2b-256 64dfed60234e5be3ad9e9b1d9e4c264cafbcf6accab2184e4a5fab95e2690a5b

See more details on using hashes here.

File details

Details for the file anise-0.4.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for anise-0.4.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6220d05bef2bd1346725f04b88885153a6e08aee9e284aa7f3797718f6f87c99
MD5 af388c80a096ee71e72e1bafd9761dbc
BLAKE2b-256 23f1ab8151045b969c19ba0d9c4cbd26f166a5b44fa0f7bbbeee49a04b090e64

See more details on using hashes here.

File details

Details for the file anise-0.4.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for anise-0.4.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 042ed1b4221023ad91e13e29d7a6f3dd9ac3f8ee4a9f9e71114128f6f011dbd6
MD5 0300f9172cb50a50bc90ecd5d566a3f5
BLAKE2b-256 bacfd87887873591bb7825a720444ba468984f5d4f6025c8ae98139774b6d378

See more details on using hashes here.

File details

Details for the file anise-0.4.5-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for anise-0.4.5-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 88903989717210415e431fb53346368ac89f4d7d3437bf52fab21e9d1311ee6e
MD5 918fd9b95a5e681bf4fa5e11032f6e1b
BLAKE2b-256 7000e9b592302af0ed9ea83628e9f09137e2d3d9e0bd33ddf3c39dca4d6c625b

See more details on using hashes here.

File details

Details for the file anise-0.4.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for anise-0.4.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e2e66ba5371582196ef93138a20ab1a639caa944727bf360bded92c4011b4698
MD5 cdc4d35d47174cebf5366b7aae389417
BLAKE2b-256 4aa9b3b0fa8327dbffe29c4b18c6c13b0c6e179305af0e2d69ebf5f8cb421238

See more details on using hashes here.

File details

Details for the file anise-0.4.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for anise-0.4.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 08d56670b529c4f8a4859057f30035b1e7d5b23a3fbef629543423a04e044e1a
MD5 eb00b0dcf2204f3d60f516095cd1ffac
BLAKE2b-256 9b36b5e8f42bb093a3ff9dc41417eb69daa9ca298f73494f3f2d2f8212215e02

See more details on using hashes here.

File details

Details for the file anise-0.4.5-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for anise-0.4.5-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 11b714fd3942fc25e59e9ed75dd5915483d957f74d78935601a438efc98a594e
MD5 7f29aa351cc1ad737a76bd43564eb3c3
BLAKE2b-256 741e5d684f6db4d5b7990614bf04390e6ed078b4ce061932d11399097c16f632

See more details on using hashes here.

File details

Details for the file anise-0.4.5-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for anise-0.4.5-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d02e869cd6021da1c332d6918cbd6b023698222f73633e657e6b5de7eb26565d
MD5 dcbe3a2fa10308c4b175dbc28e3db511
BLAKE2b-256 d775ec9b883b57658546f0d20c80be053b0f4d1b529973dcdd836737886121ff

See more details on using hashes here.

File details

Details for the file anise-0.4.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for anise-0.4.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 893eb9fe81f78235accfde1453c70d6dbb76c0478a917b931b19e5214eff6fb8
MD5 f3d33c237089dbb0b9ab2c973142d8f7
BLAKE2b-256 6be95dc64c5d064d67300d87dfec010cf2b8be6fce91bb964f943f626c2382c4

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp312-none-win_amd64.whl.

File metadata

  • Download URL: anise-0.4.5-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for anise-0.4.5-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 695c94162eba8e9ac9cf92bf017a6f7def52b4233583a9306b50eb0b6cba501d
MD5 ddb1e89e65ba7921c012f4cb9fa03dac
BLAKE2b-256 8ce2ac3de4e7c521b3387dbe920eb19d86cb537594d4b04eedc52333db4252df

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp312-none-win32.whl.

File metadata

  • Download URL: anise-0.4.5-cp312-none-win32.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for anise-0.4.5-cp312-none-win32.whl
Algorithm Hash digest
SHA256 e69846307e7dabce33a1276279fa1d09141abc543d6ccac96ab47da0d939fd13
MD5 38365a9a71b108404a075c0d9192428e
BLAKE2b-256 1690e81d06824a39aea1b1bcafed52be6d3dd7fba618e75b05360b0edf929a99

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for anise-0.4.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf0ae9b2b3247789b9f8f459b9886ab1f3c29b6b10f22aa7c6394b45051b87f8
MD5 1d6efc3ed3e0fb1f5ef94918c8d1b3e6
BLAKE2b-256 6ee09b00926360f70868dfe98ffed46cc410899bbaef06733b479c4d2549d7d6

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for anise-0.4.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 76d82f326edcef7676f327c11f50d3bf7c38ee5d7daf4bf77a70f7785f6aff00
MD5 e7197b46eceb791b0f1e43ac91f7da1c
BLAKE2b-256 4c3920e37483e7620e3dd64d4afa4dcb065f2a51164f9900c2cc1a98d217836f

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for anise-0.4.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cfb51a4be72cc73cd928e80834a045cb4c08bd5638e089131ad8f4c2745caced
MD5 5a324cfb1d08950176a1eaede6d3ecaf
BLAKE2b-256 0b704cd393a2a7d4a5c882b2537e87caa8dcbe4d25656347bc5efeac06a9fa7b

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for anise-0.4.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6bd18968c9d9f0093ddbde1ea4583ca6c68039165f3b3fc4ace94612d987a521
MD5 6c68ef0545ac19881ae7814733fcedf2
BLAKE2b-256 f1a20d5b7174ca5ac84c20fd6318c2139a920bed95200c874fd84a45782be227

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for anise-0.4.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e6e729a7e7b4f08858050bfb1605201efd2d2c3ab316f635a045ba64f2a570d3
MD5 7b14bb1afbef6da2101436ecfbdc7bde
BLAKE2b-256 7e4507548a51bd5416705d6cdde9e860c2a2a81e503ca59b3479503fe27cbc22

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for anise-0.4.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4a0d9085c8b436a8c3bb6eb79bdc8541354f5c95942f7d0ed53b89b4ee17637
MD5 63d488cce66faf8b79c71af3157d584a
BLAKE2b-256 64d7ac81bc70be94fd3c90aedbe1dd6b65cdf59da5f7fb60afb462799ec63292

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for anise-0.4.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1eb4a5e0cb086a0eb285ba57f59c191cc67af06440c7286dfb312f7be5f404e1
MD5 10488455f01e0539903e74ba9e4c5a0b
BLAKE2b-256 e02fe420c4c20aa4db6a68ffbd79c0b506cac8fff97ff6911bf6acd4eaed7473

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp311-none-win_amd64.whl.

File metadata

  • Download URL: anise-0.4.5-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for anise-0.4.5-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 4f2ece2b49509e5c5d543df1859413864694bfb8a51760a8592fd3b4b2c37a2f
MD5 6b450f3b772e7b693682eaf0a01daced
BLAKE2b-256 df8e7b2644e768d67d6eeaffcb1b0a20ba7440d6689fb4585a198735a6c164f6

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp311-none-win32.whl.

File metadata

  • Download URL: anise-0.4.5-cp311-none-win32.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for anise-0.4.5-cp311-none-win32.whl
Algorithm Hash digest
SHA256 2fc69bb8c0dfa52a4ee8ed6f7a4584de0177a6ed144a2ac2667a045ce3058abe
MD5 bf7eafdb57dca08f7d7138b8e6c9b165
BLAKE2b-256 206b1d48f3069cb231bde3bd97b18e252f660517f393a138955dc95515580c27

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for anise-0.4.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 646f2ac56053041c4861796d47a6e315911dd48c27a313650bb183fc6c48bbaf
MD5 76eb1daf87043bb91bc2a3038f9f5dcd
BLAKE2b-256 1e093a22445a81e5673055ab3b44ee8adfdd50b5027b488674b96a0ee1583433

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for anise-0.4.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2557171ba7aed292523d329cb9b1f271aca7f6b353ffabbc8366e34b17258a0e
MD5 66f922d4619faf08f12fc9ae6eb720cb
BLAKE2b-256 03bce5a930db6bc1d1e96479228bb7b15e1a3f5f9ed64bbcb3ebaf75d18c43b1

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for anise-0.4.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2dc19a3836d3ef27f880be1d9d040482255af9744a204e6ca9feab3e843af3f4
MD5 38095bc8d357be81ed59e31f092be271
BLAKE2b-256 e19c313063af9f43c78a15eeed6573f2c7d77b391c9b943d862cd88cf3fe10bf

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for anise-0.4.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fc2e74843a40b8879da61f05a534cf6c23c99f29dbc5e8ebae17b06d61e1df74
MD5 5ca7f92358ced42c99c7dfed2c80fddf
BLAKE2b-256 39b3b208e80a9f38911e2edbe8515c872287ab1ccbc1b46949cfffdd58934bb0

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for anise-0.4.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e363dd6d9c9cfc04207ecab15b8a6b9a26c408d9a6d8c8ac4be4b81ef45e0f1
MD5 61bf09fa4d3daa0a9e2d8e5118bda49a
BLAKE2b-256 92bc25e02316f0fdda9e1b0ded109c8962a4271e73f9a9a3d9055fe9de6660f2

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for anise-0.4.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe57be43ffef94c7dd049ebe31b660d86be26aa12e7e4b8f15de114db1aca5ea
MD5 c7c707988ffebc218d938737bc64790f
BLAKE2b-256 5a390bdc2de47ffe7e7e00d83eea8d5706a188aa395c02259694f9d7b7f1b8bc

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for anise-0.4.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4e05e4b4bd2f75ec5dbcdcde5dd1e11d538e606016429c9179824f7457d3c2c5
MD5 06e79d5ede555f16c6bf6edce9c6a798
BLAKE2b-256 0b0b4677e64ee188e53f8d748d112d4580f2edc978b710bd3553e1327b17c476

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp310-none-win_amd64.whl.

File metadata

  • Download URL: anise-0.4.5-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for anise-0.4.5-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 1fb69e1c651c940c5338ce6f93c6365569e69f1c0ba30d520c7ff741523cb68b
MD5 80aaa182b0c7bcd30b2b0d4b7c222336
BLAKE2b-256 8f1dfc827995b9d0ef91d4a0ffa63ef21fea2d61c9f75c304ffbe2dad2fc5f2b

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp310-none-win32.whl.

File metadata

  • Download URL: anise-0.4.5-cp310-none-win32.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for anise-0.4.5-cp310-none-win32.whl
Algorithm Hash digest
SHA256 f5c3ff0d295e09e824363dfa191445832bc5a156a88364d0c8d163823baf2717
MD5 b70fda0b9fe4db1de0578427cd90a466
BLAKE2b-256 9f23c9cfe1f70d1cf1cd8a17107930602a90c37a64515664a8762da98b6679e2

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for anise-0.4.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ecaea2392f1948b203309984e2ce7e02293a726d67e932fdd9ee7cbd68d45c58
MD5 98905bac98d4a261f41a00706043a9c2
BLAKE2b-256 0db3bd82e6dbea54f52518d0f22ddb5d246e5badc0cf88d3b53c1b711d50410b

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for anise-0.4.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2836969e5e62b90eadee43dc60db6ea6cc09782c4dbc3ee06835e54a308fcb33
MD5 825d64f2538d1b59a54dc71bd89f056e
BLAKE2b-256 7b4ac8c619e07994eaf2dcf5d31b24bbeec00d8968253fc3d78f59d5e6676bc1

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for anise-0.4.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 21a132b9a7d96bf73ca9d05c7ca1e934f110ff1ca8b40f0c764367ecf3602738
MD5 b73439ffbba39b92e061da3d974feaad
BLAKE2b-256 de2b5bf8fd56eeee6f308e5a3eb2411ac5666bc3e6bbe0290e6fa19080d7e593

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for anise-0.4.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9f947a3fbbfe99a1ed961e9f59a8d7f8096e06ee81286f5d53e4e365632c39b5
MD5 e9f775d4f29cf56ef2b01ad679a068ae
BLAKE2b-256 f1fe02e3b29ba6005659bd34c27c153d3be7790738d6e54d78fd2b18a84d160a

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for anise-0.4.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0883d7ccbb4cf7f85ef139bec59ef60df604eeba3abe7c3690a330e989eabf1d
MD5 73f67385b67525d25dab7f9b700ae7df
BLAKE2b-256 a2ede37dea16dc8edceafb637ba6157661ea8bc14dfe1c27046436879bace5cc

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for anise-0.4.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 551649548df7d0f4b54d3c6b5434eaf7f444b67795b4326594af5a56e95761bb
MD5 437bde6b30000b4eb5d714e9c023128c
BLAKE2b-256 77d15dfccd7a835028fe312c2890a865259e1f8191173b1ed6ca03a48bf3316a

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp39-none-win_amd64.whl.

File metadata

  • Download URL: anise-0.4.5-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for anise-0.4.5-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 abaef7f314d5d767e2a8c5197ece317c11fbb564bec601d0a5ab76d1f1ad0b9b
MD5 038cee84fb1fa077e329172be6ac61af
BLAKE2b-256 e8ef8505a10b7e796ea3cbc3b627c38f5e38fd71066bef806ec44e15ac1842c4

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp39-none-win32.whl.

File metadata

  • Download URL: anise-0.4.5-cp39-none-win32.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for anise-0.4.5-cp39-none-win32.whl
Algorithm Hash digest
SHA256 fcba1cffc36988500361ed88cc54319a0391b55dde807a6a7f0c4c42f4af1c49
MD5 6e4c4d9a499a81284374ffb78ee4eef1
BLAKE2b-256 080a9221f43c012d715a255a5e678407a689823326f262727d6a448cc3c137bd

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for anise-0.4.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f08fd461c09a8d4b909421e34e648a83c5e045bcb4d3bcdcbea9c3cbdc39871
MD5 a23af6cae1bd8f1a056f58ba1eb378b8
BLAKE2b-256 803b99207b498f35b831842b1a1850ffcfc1230b69ce39e68ad24469e872006d

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for anise-0.4.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ffa59d1cc3a29c56ac4a250cfc69d5aebeaf674ee766f22cfbb80f6415806fe8
MD5 4a95134a03a10c4f5cd622b5d7323634
BLAKE2b-256 0a7fa6fe6fb3f5f2885dbfa4f9e9c2231377abec0db3d85c62efbcab1b8cbc09

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for anise-0.4.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ea1a8876979e00eb3746e1706e884c34aac2b2cef6364aab50b9e254b708039e
MD5 7b5ec0403daa6f01e8ddbaf71e2a2c88
BLAKE2b-256 9631923640456dc78838a8f2bf8bca7844ed765ed33449effa4d7c9fcc76a0f2

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for anise-0.4.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 52bd9258eb7e32e3e0df6a665d291f040083a12d598b5a6f29b66d0b900b644f
MD5 0ba3eb178625618b470b3c24402b0988
BLAKE2b-256 040e4e37f4be17595bf2db7d69fed517a566ee033fd7bc94b76a2bdecf2bb6af

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for anise-0.4.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 89b6d9d53efba24b5fe7b8ac5e61c86e1f05a152689be518429e7f325cf46e41
MD5 ec01f879b6717f1b17f9e42c88ad0e72
BLAKE2b-256 847b08b74dba3b9624a46ba438d45eb597dc7638d48efdbe62309c4bd505633f

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for anise-0.4.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c194cc6a2934eb5595ba63d1d46e9bbe5e4e4aca7884a6a7e01bf80069e3962
MD5 80b0358118ef0f6ff2ae878091a4868f
BLAKE2b-256 e9020f348f325c733a33e4ca7d2a9ee0af49f9a0d3f61c2d348a23844f5de915

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp38-none-win_amd64.whl.

File metadata

  • Download URL: anise-0.4.5-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for anise-0.4.5-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 dc5d72b515d4dfe8b99321a74f8c0327743c50f2372af579c62b733c0c3271b1
MD5 9b38cf6f54d3706a313873ec11822fd2
BLAKE2b-256 ef158576e3f49b5d4af638877421d11747ee1f909e7f231a907e7af44c89ebed

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp38-none-win32.whl.

File metadata

  • Download URL: anise-0.4.5-cp38-none-win32.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for anise-0.4.5-cp38-none-win32.whl
Algorithm Hash digest
SHA256 9d9831c6df63c144dd272aed4c5defa9d15dbef2e317a21ed9a0b3ff0c516a16
MD5 5dfd9c99f477ab05b2a504d8ced323aa
BLAKE2b-256 949ecb92124b86b1a136246f8fa745cf0dc3a189eec06532ea27c06a10588eae

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for anise-0.4.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 19888f7b053b5ad399a3f2846c7b8de16c04fa39de7e32abf36b41aea016bfed
MD5 7df896147f4949bd404ebaff62ddd4dc
BLAKE2b-256 d964111d2ff144c278b7393dee6286ac284ba83d8385e07ae1d61039c3b50672

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for anise-0.4.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f5ce692e5e27be444509100fce61cf6b4e53370167c2c95a527317223390e10a
MD5 151dfdb84b4988a93c4d4266239d7bcf
BLAKE2b-256 3a2fd4d8e898b9380a1f053e2d45ff77ace9124e1b6d7c1d8edb4ecb195a668d

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for anise-0.4.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a15f4d536d054871a49e8db660c16a037bdcc014ffdf63f420935e9bc4208a6f
MD5 6b146a9621d3059e753babd2f8d92b6e
BLAKE2b-256 3f52c6f1e9d3d4ca2f90fff9530df39d8c19ceb53ab315817ebaca24ba4a3e61

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for anise-0.4.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7ce4c50780456acd8bcd11b2df829bd6990c831892f90f9ffba704532e811ee1
MD5 2475789753762a04ebc29e7e85e44117
BLAKE2b-256 0150098cea4dff602c55286e9512bac50f7d665c2468031f1038fb422e6e2f18

See more details on using hashes here.

File details

Details for the file anise-0.4.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for anise-0.4.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a5eab1e12b887fae7c0277ae21a9a82e94669e5d4fb7c28fb9813a423e0573c
MD5 1996811f6e4e5fc5dbc6b9f3b4e9d4e6
BLAKE2b-256 28e139d4d5732b15f2fcc642b8b909e506075265a9a5cf7a01950f0c598abd57

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