Skip to main content

Tools from the Attosecond science group at the Max Planck Institute of Quantum Optics

Project description

Attoworld

DOI

Tools from the Attosecond science group at the Max Planck Institute of Quantum Optics, a.k.a. Attoworld

We are still in the building phase. Things may change, and haven't been validated; use at your own risk!

Documentation available here!

Structure

The module has several submodules to keep it organized:

  • file: functions for reading/writing the various data formats used across the labs
  • numeric: numerical tools
  • personal: a module where we can add our own functions that might not be of general interest, but are still good to have available to we can easily share work
  • plot: functions for plotting with a consistent style
  • wave: functions for processing waveforms
  • spectrum: functions for processing spectra
  • attoworld_rs: A place to put Rust code with a Python interface for cases where it's particularly important that the program be fast and correct.

Contributing

Code guidelines

The goal of this module is to gather the python programming work that we do, which maybe others in the group or the community at large could benefit from, into a module that we can easily add to our projects. This is easier if we follow some guidelines for best practices:

  • Use docstrings so that people know how to use your functions.
  • Comment code enough that it's understandable. It's possible that you write in a "self documenting" way, which is fine, but if you're doing something fancy and non-obvious, put in a note
  • If there's a function or class that you think others could benefit from, absolutely feel free to add it to the main modules. If you think you are likely the only one who will use something, you can also add a submodule to the attoworld.personal namespace. This makes it easier to share files with others!
  • If you're importing libraries, check and see if they're listed in the dependencies section of pyproject.toml - put them in if they're not there. This will help make sure that "pip install attoworld" will work out of the box.

Working with git and Github

I know a lot of you aren't familiar with git - it's incredibly powerful and useful, but has a learning curve. A lot of code editors have tools built-in for working with git, and these will do most of the work for you. However, it's important to set yourself up properly if you want to add code to the main repository with minimal difficulty.

Forking the repo and getting a local working copy

When you add or edit code here, it'll take place through a "pull request" (PR). This means that those of us maintaining the main repository have a chance to review and test changes before they're made, and that you can freely edit your version, using git for tracking changes, without affecting everyone else. Your edits will take place in what's called a fork. To create one, just click the "Fork" button at the top of this page. You'll have a chance to give it whatever name you like.

Once you have your fork, it will be located at https://github.com/your_username/your_fork_name. You can download this and start working with it using git from the command line:

git clone https://github.com/your_username/your_fork_name

Now that you have your fork on your computer, you can work with it as you wish.

Making a PR

Once you've made your changes, to add them to the main repo, go to Github and make a pull request.

After your PR

Once your PR has been merged, it's a good idea to clean up your fork and synchronize with the main repo. Before you add new code, do this from the command line:

git remote add upstream https://github.com/NickKarpowicz/Attoworld
git fetch upstream
git checkout main
git reset --hard upstream/main
git push origin main --force
git fetch upstream --prune

Do this before you start a new wave of edits; it ensures that what you write is going to be compatible with the up-to-date version of the repo.

Developing locally

To work with the repo, i.e. if you want to add functions and test them cleanly, here's how you can build and install it in a local virtual environment.

First, you should have Maturin installed (e.g. pipx install maturin). This is the build system used, which converts the repository into a usuable python module, and can install it for you.

Now, set up a virtual environment. Navigate to wherever you want to create it and enter

python -m venv .venv

This will create a virtual environment in a folder named ".venv" (the dot at the front makes it hidden). You can enable this environment with

Linux/Mac:

source .venv/bin/activate

Windows:

.venv\Scripts\activate.bat

(or ..venv\Scripts\Activate.ps1 in PowerShell).

Once your virtual environment is activated, you can build and install the package. This step is easy:

maturin develop

If it goes without errors, you'll have your working version of the package installed in a your virtual environment and can test with it. You will just have to run "maturin develop" once such that the compiled library is available, and now you can work. Changes made to the python code will affect the python module in the virtual environment.

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

attoworld-2025.0.25.tar.gz (200.7 kB view details)

Uploaded Source

Built Distributions

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

attoworld-2025.0.25-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (737.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.25-pp311-pypy311_pp73-musllinux_1_2_i686.whl (766.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.25-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (827.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.25-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (740.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.25-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (567.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

attoworld-2025.0.25-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (593.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.25-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (714.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.25-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (590.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

attoworld-2025.0.25-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (565.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.25-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (562.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.25-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (738.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.25-pp310-pypy310_pp73-musllinux_1_2_i686.whl (766.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.25-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (827.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.25-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (740.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.25-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (567.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

attoworld-2025.0.25-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (593.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.25-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (714.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.25-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (590.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

attoworld-2025.0.25-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (565.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.25-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (562.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.25-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (738.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.25-pp39-pypy39_pp73-musllinux_1_2_i686.whl (766.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.25-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (827.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.25-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (740.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.25-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (593.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.25-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (717.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.25-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (565.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.25-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (563.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.25-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (564.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

attoworld-2025.0.25-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (588.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

attoworld-2025.0.25-cp313-cp313t-musllinux_1_2_x86_64.whl (734.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

attoworld-2025.0.25-cp313-cp313t-musllinux_1_2_i686.whl (762.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

attoworld-2025.0.25-cp313-cp313t-musllinux_1_2_armv7l.whl (824.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.25-cp313-cp313t-musllinux_1_2_aarch64.whl (736.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

attoworld-2025.0.25-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (591.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

attoworld-2025.0.25-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (709.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.25-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (562.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.25-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (559.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

attoworld-2025.0.25-cp313-cp313-win_amd64.whl (404.4 kB view details)

Uploaded CPython 3.13Windows x86-64

attoworld-2025.0.25-cp313-cp313-win32.whl (389.7 kB view details)

Uploaded CPython 3.13Windows x86

attoworld-2025.0.25-cp313-cp313-musllinux_1_2_x86_64.whl (735.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

attoworld-2025.0.25-cp313-cp313-musllinux_1_2_i686.whl (763.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

attoworld-2025.0.25-cp313-cp313-musllinux_1_2_armv7l.whl (825.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.25-cp313-cp313-musllinux_1_2_aarch64.whl (738.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

attoworld-2025.0.25-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (564.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

attoworld-2025.0.25-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (592.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

attoworld-2025.0.25-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (712.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.25-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (588.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

attoworld-2025.0.25-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (563.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.25-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (561.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

attoworld-2025.0.25-cp313-cp313-macosx_11_0_arm64.whl (514.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

attoworld-2025.0.25-cp313-cp313-macosx_10_12_x86_64.whl (525.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

attoworld-2025.0.25-cp312-cp312-win_amd64.whl (404.9 kB view details)

Uploaded CPython 3.12Windows x86-64

attoworld-2025.0.25-cp312-cp312-win32.whl (390.6 kB view details)

Uploaded CPython 3.12Windows x86

attoworld-2025.0.25-cp312-cp312-musllinux_1_2_x86_64.whl (736.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

attoworld-2025.0.25-cp312-cp312-musllinux_1_2_i686.whl (764.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

attoworld-2025.0.25-cp312-cp312-musllinux_1_2_armv7l.whl (825.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.25-cp312-cp312-musllinux_1_2_aarch64.whl (739.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

attoworld-2025.0.25-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (565.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

attoworld-2025.0.25-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (593.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

attoworld-2025.0.25-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (713.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.25-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (588.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

attoworld-2025.0.25-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (563.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.25-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (561.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

attoworld-2025.0.25-cp312-cp312-macosx_11_0_arm64.whl (514.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

attoworld-2025.0.25-cp312-cp312-macosx_10_12_x86_64.whl (525.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

attoworld-2025.0.25-cp311-cp311-win_amd64.whl (405.0 kB view details)

Uploaded CPython 3.11Windows x86-64

attoworld-2025.0.25-cp311-cp311-win32.whl (391.4 kB view details)

Uploaded CPython 3.11Windows x86

attoworld-2025.0.25-cp311-cp311-musllinux_1_2_x86_64.whl (736.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

attoworld-2025.0.25-cp311-cp311-musllinux_1_2_i686.whl (765.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

attoworld-2025.0.25-cp311-cp311-musllinux_1_2_armv7l.whl (826.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.25-cp311-cp311-musllinux_1_2_aarch64.whl (739.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

attoworld-2025.0.25-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (566.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

attoworld-2025.0.25-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (592.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

attoworld-2025.0.25-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (714.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.25-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (589.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

attoworld-2025.0.25-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (564.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.25-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (561.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

attoworld-2025.0.25-cp311-cp311-macosx_11_0_arm64.whl (518.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

attoworld-2025.0.25-cp311-cp311-macosx_10_12_x86_64.whl (528.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

attoworld-2025.0.25-cp310-cp310-win_amd64.whl (404.6 kB view details)

Uploaded CPython 3.10Windows x86-64

attoworld-2025.0.25-cp310-cp310-win32.whl (391.2 kB view details)

Uploaded CPython 3.10Windows x86

attoworld-2025.0.25-cp310-cp310-musllinux_1_2_x86_64.whl (736.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

attoworld-2025.0.25-cp310-cp310-musllinux_1_2_i686.whl (765.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

attoworld-2025.0.25-cp310-cp310-musllinux_1_2_armv7l.whl (826.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.25-cp310-cp310-musllinux_1_2_aarch64.whl (739.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

attoworld-2025.0.25-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (566.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

attoworld-2025.0.25-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (592.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

attoworld-2025.0.25-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (714.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.25-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (589.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

attoworld-2025.0.25-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (563.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.25-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (561.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

attoworld-2025.0.25-cp39-cp39-win_amd64.whl (405.4 kB view details)

Uploaded CPython 3.9Windows x86-64

attoworld-2025.0.25-cp39-cp39-win32.whl (391.4 kB view details)

Uploaded CPython 3.9Windows x86

attoworld-2025.0.25-cp39-cp39-musllinux_1_2_x86_64.whl (737.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

attoworld-2025.0.25-cp39-cp39-musllinux_1_2_i686.whl (765.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

attoworld-2025.0.25-cp39-cp39-musllinux_1_2_armv7l.whl (827.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.25-cp39-cp39-musllinux_1_2_aarch64.whl (739.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

attoworld-2025.0.25-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (566.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

attoworld-2025.0.25-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (593.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

attoworld-2025.0.25-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (718.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.25-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (589.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

attoworld-2025.0.25-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (564.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.25-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (562.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

attoworld-2025.0.25-cp38-cp38-win32.whl (391.4 kB view details)

Uploaded CPython 3.8Windows x86

attoworld-2025.0.25-cp38-cp38-musllinux_1_2_x86_64.whl (737.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

attoworld-2025.0.25-cp38-cp38-musllinux_1_2_i686.whl (765.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

attoworld-2025.0.25-cp38-cp38-musllinux_1_2_armv7l.whl (826.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.25-cp38-cp38-musllinux_1_2_aarch64.whl (739.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

attoworld-2025.0.25-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (566.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

attoworld-2025.0.25-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (593.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

attoworld-2025.0.25-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (717.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.25-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (589.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

attoworld-2025.0.25-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (563.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.25-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (562.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file attoworld-2025.0.25.tar.gz.

File metadata

  • Download URL: attoworld-2025.0.25.tar.gz
  • Upload date:
  • Size: 200.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.7

File hashes

Hashes for attoworld-2025.0.25.tar.gz
Algorithm Hash digest
SHA256 a7f942295bcc28d40675b186611c7fd5a77e1494ec3a6e7cbc04976f88cc10d3
MD5 dae9be373e79ce6a0182d757e531afa2
BLAKE2b-256 3a5111e417b37719f1f6d84193f319882610fb025a253f0e253c2d73420d76b2

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 388688d767b58ff3509d7662de3bca112a217339ba9d21021a7ab04efe5533d9
MD5 5d6ebb34c81f0b2a332eb3a6b3c020e5
BLAKE2b-256 8decebadf7cff28bebf93255c7d3d27f183c0bf55011583b40add7d77746b226

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d8321c62c7658acab29b3c84c6797e66e125a38d620657e7bea69fe2729a8281
MD5 4407b5134d7df955def0cb994770bdac
BLAKE2b-256 472d75a9b685f811250ab967de3bc542ec60318819555e103b7d09345434f22d

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9d8c60d75bebe8f634cea2ae9b165f9198eeef00919f5d63c55ce05c7d222df6
MD5 0aece590f9f0a35ae7538901f7be39d2
BLAKE2b-256 882868fcabb6415dfaa2690160caf022a0231e6b589036905a463a550ba0e241

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9ff439c87f73a4c88fe872e293977e1efd37eb313b6acb995ae761081fb1fd05
MD5 ed9eeb78dfc516d323a5647bbe6d0462
BLAKE2b-256 eaa53f90da339e6f85c1da28aaabebd0dd30fba1bd4daff177dbb6d7d2126a24

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 117f667162f90132a43b890eff758d5a1fb28f2ce2783f2697dca2db7ad71a38
MD5 bebb4156b941b7b1ed172220d874ff69
BLAKE2b-256 de8351551250d63ca7180a3ff3648346f371de8228ec05303205627b35533c66

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 951742c5eb7ddd7556fc8231e846ee28ae16c618e8405682f7f1a30efccbab5b
MD5 6c05672fd36570b0e24dd13015b3fbdf
BLAKE2b-256 6929167477bad404d04cd413406a286ec2ae871d73c5e3b2d247f3642553c7c0

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6c16f8f8e92e4a4590516e37cb5b078bc123f492766f11988e43382b708d5880
MD5 73df04e5b35a14116af1b40813c7f96c
BLAKE2b-256 f78b06bbaf14dd273174ccc7a33196eb5b144cbbe47cdbb8879c0543ddb5c068

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 757fe580894f30c1d71a9c4c5f10e728901d1bdc5cd59bfbf09df7e39a7c99e1
MD5 ecd2129cc9ecea49dc1b85f6f373d206
BLAKE2b-256 f74bb73ffe9fced07fa08411b121c00b77aecd7802d65cc766a32267dd661fb4

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1025cf9a4b076e8e7d12e5ae11fee7a549740c119e28eb404fb01a77f298a5b7
MD5 2d119df5a3d2b7c0b6a8af45728040e7
BLAKE2b-256 13094c5c5aa75e8ecea288f261d8c43a5b49675d9d9e2d7b61f7513b1d88d2fb

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f36976d8c466b4cdfa46d01ab547fee28f0458e74ff55c26ab1ae378a1f6b071
MD5 4a9eda2e72ccc42e8591f43755ae1bbe
BLAKE2b-256 26243666d3103ff31b4e8cbe7c1e3dc59c12616ddff1fb324ff59bfccd4ec83b

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e68c21e142d3cfe007c12beb2c58b1dcd08cc943ed1de544012997a48f4cad41
MD5 f020af07cc91f40472498883ef706563
BLAKE2b-256 f577426137d23f0066cc03f71f459f068758c9e758ebb279b3f2cb0d26d8345b

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5f797203d08a1e57ff509cec255c1cdb9dfcf92dc2422d23f4134624f2e22f01
MD5 51fe219bdf9df41e3687a3a655b92107
BLAKE2b-256 e7a3de0b7899cb523418c122da6b3e3ec5b0bd723566f6a031939f00ba9b5f20

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 39bb02289f476212bcb52775df85d3624484757673d09fe9d0edd9ee0b93e527
MD5 c17f0ca4deaa89f20e7710d21fb31cf8
BLAKE2b-256 8e91f0c039798531bbdc3ea4dc5de1d1aed4343d1037a67353cffa64e8077c4c

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 88c8fb9d109cfae92392c9a44146b15db76b2cbb3c1ed10176df6c59fa88b756
MD5 5033353c407219d8fde46e3158ea4d64
BLAKE2b-256 f98f8d3eef91eb0b97c9a08a6142728a96683d418d31f773aece9e0df43ab8c9

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 592fca5dd0b1c4c703a997b014ee95f825eb10e7a4177bc138f12314a3976d0e
MD5 9182bb5248045947a28c3b68c422fe2b
BLAKE2b-256 32c0bb00465d3800b045e540deaf452454ce346ee56a74f631c7b1731a9ce902

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 97b5690d911ab5dac8e409b34c2517ba82230af0f4b8108e68a455b53217dd8b
MD5 22912aef4a2f6748d968fe37aef17b61
BLAKE2b-256 266c8886185ce23b199f5108f20711862f40dd682b20dc98460a9f0d9e7488f5

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 995ba014af7387205c1266eeca2474187271463fafc719a267da29c2c7346a9d
MD5 d2ad26b1cba3efe0a3223a42d7db4081
BLAKE2b-256 0f062da4b9192400b375679f084729faccf20e8a49dc284f27da5d8a15c7fa1c

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b004c1adc17bec36436fcbb83b03e9bef9c1b85659cd97fad3f76a2d3d25bc39
MD5 4ba7e502e0944e177c26243b10e9c98d
BLAKE2b-256 7b069e627c1ef22e1810e579ea5b5a92b49f3cedc1966eb74f97726af950e1e7

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5a78a915365db69dc76f3576796788ba0a654985109cc419c7219ce11bdeebb3
MD5 fb9f76b435a224283d56e8034bdb330f
BLAKE2b-256 d987b866686463eb141777e8ac59dcae2b15eeba97e3253c50b1264bbb9b0973

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb734a2731c1d65a29de22be409bad6d1f601dcba6b4f0bca148363bd478ec5c
MD5 6f8abc82c9853bdd06065f593ac37691
BLAKE2b-256 49742808e9922c51308d0cae3ab086af3627cf21431d0d13a608f13937ddb7cc

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3723a22b538e5f2b1b665287fc69cc74be173f9c8e9915ff0b593fcbe4fc27e6
MD5 57da91885ca3ed3ee2443587eace2917
BLAKE2b-256 44bf1dfd5623992c464d09d22734f7054d05acc4863cf85335ec4c35adaea0d5

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b7b2963011a7cddba5d8fd31a5457f7c80d320b50e7eabed331d6dbc158051a8
MD5 4ec2794030c5d4418aafa2c39f6652db
BLAKE2b-256 65061ed2ac160f29afc36d9feb4e0b10eea3677e1b2f28c1ce6c01233f2d23c0

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dd06874e1f10a70e5baf0eabe53524df6533ee9db50916812a6eeb5d01d26cad
MD5 bb398d7e5672c1014e9b2ddc0d18875b
BLAKE2b-256 ab1451d2864c8e2a92b56a7bc2bf0b73c23c0a93fb848e493ceb1976fd210abe

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c99ce8490aaf2a9fa5d1041780eaabd1d171a82a88e58230386d39078d59a545
MD5 c326a6670c03c6166221085d7de37125
BLAKE2b-256 1ee33d797e6371672dbe40bdae045c64eaddd0fd4ef6039e30da7dc8c5f03669

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 809d7135f8d541f5e1c2ccdd522f7aa30315447d8ad1d3470b17222c38019d22
MD5 af8a9bfab6e9b863ce129232e7eaa398
BLAKE2b-256 ff94bd87ccbf41f792b2809722fe82c29a62fe83eb71339d6f697c334eb72606

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c134247af0e76e2ea85c728bdc6b418e760b5f798fb42ab55a1a7decd71f49ab
MD5 87359f28d0cfc97024ec9c5ff47eb943
BLAKE2b-256 d3b77dce258a24e54483672d0f4ae076edea3a86c457dd76407a7ffc7a2779bd

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aafd954bb603d0e90fc1e3d0fd8e2427101a64a05885221409f5ce9b36e74327
MD5 cdd8fd39e006d0e54349d209fe453078
BLAKE2b-256 faf50c9d13ec46921c4ff703a39cef5fcfcb762551df74251d406b0dcfd562fa

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1b63b4bae84053a290bd80439d3aca8f6a67df76408dc259b63f140f5b2c7cc6
MD5 c1f6899b9df823c7c000310ae1c979a7
BLAKE2b-256 cdbe8826b1546ef52dbd828e7fb877f6e41554c16f012cd48b55ee3fe417a236

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae01fe39d7f9f6c16ed9bc6c87fd6be55cb2b40bffb60e1bc76bf01835f4ad99
MD5 e114aa14db75bed9d3cf77a2d6197724
BLAKE2b-256 927ab6359f7133a79d3b7aac598370e69cc07b1f9f9a51430d31c4c5dfdc3f45

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 286d7165f76f3453aee90215951f655e5d1d85b19b244125eaed5ca520f54232
MD5 32f562e4944b4bab7f79b24fb19068f0
BLAKE2b-256 dd888129d557a626183ab01db74eeff6b77a9c460e0cb9f6e8a40bef54fe1f5f

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 18b36f62c82526a3e3baf5487e9234e4acd27386592bf2e8a0f4d7e64d91329d
MD5 833874da2a44b09e7cc3391656940b24
BLAKE2b-256 c694da42d230b899c0be100928c607c05726b08183c836a28864232b58fc337e

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a000add49ba1ee16fe902afae47bfc4ab10cbf00afbb54b299625a6af635bc9c
MD5 280fba511b1c0f45e16bd9d114c8b0b7
BLAKE2b-256 274dac8cc7d08aa3f57f191f0fd1b2cad44a68d2943d8b7e0a36a194000e8281

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 10bf94fd162a30124c79660f21aa95094690a86c02e76be7f4fd80ca305ab1e7
MD5 7d30c80eeabefbd05ecc9e8553779c9a
BLAKE2b-256 248461f48e72c0659c2372e50c888c1a90d0a9d512c07dea4523d9066776e7e1

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1bbe438ed3eedb4a6efa01f08ce78a5152518ba028ebbc7e637b23c545b66748
MD5 ca2f096dc1d06af121c40acd7a76e8fe
BLAKE2b-256 28eac96952ed00e06480d6171627782dc3a29ff5b039240d6bfef9692b423dc4

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2cf2d3f3f2d7de4fd3c72d925300202d76b0112a80c267f41eda0f18848bcad5
MD5 97703ca60e24566b3a44921bbfde33d5
BLAKE2b-256 24332202b6a19325f3edde6b39d9cc641e34b421afff06a26dbd2dc2b2f942b7

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 04c639f557f1c962f0ac122384541b1af23a9394086df1924517863a8f83fb2a
MD5 ecc9ae3a65c4c19363fe38122e4d5e87
BLAKE2b-256 4e7f154cb48dcc652af84f879d564f9aaa57b5cb96215b5696f0a76c090e33c7

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9cc4d14f3de5343d92015ae5c17c1c9619e38818d9e47825a0d6a2df428af3c3
MD5 0ca00ab6196dc9ad3547d68df4f2b01a
BLAKE2b-256 423ac9d1cc5709f7d2b9471c7133669e1efff1110796a2c0b5a6919d0bc73ae3

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0e3abb118e37dd99fcf5fff003b94c542225f641256e6d7a477bc70fbf3ed49e
MD5 e46460ba3f995863239ea28698696b09
BLAKE2b-256 e181e32c49b2482c24185db3d651ddb0d58186cb5ec8fd037b12a1398b0fe513

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 11d499a7d6f15cad532b1e7db33ae3446100937fb5103a62dc14247e2cf390e4
MD5 d10c4909b42d83895a0f5dcfbb2b66f6
BLAKE2b-256 1a0fb5c105458693d9f6eccfb09bb0a29aec0b36dc7d159dbc1f34c7a4b1926a

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e1d436b0adb0565baf0b59cc5b1cb911f068aa65b458660f45580215956154bb
MD5 5fa6faf864d733dba63c5b63c8832a78
BLAKE2b-256 ea7d482f750b63e453d69c3e43c18c193b7aeeb3034daf773836261bbddf74de

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ff3cc7dabfbe01e9090254c55bd6fe21cae6ae35bb24e0edd19a67c5e196546
MD5 a49a3ff3cd34e3060b1d289d7aff53e4
BLAKE2b-256 bfde11dca527a1a0d3876d75646412e9ea85cae32866a65c79efa0b67aa5c3e3

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 44b9f98bf221a32035d3e052b0b7b24232f83131c6ff3d9c83a40204dd4f79cd
MD5 785ab9e59afc2a4bc8b97fbeadcdc5de
BLAKE2b-256 b7fd5db70db9c5731a6f9ba41c332fd8717500ad230df285b23b16f6e2374376

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 99e3b40e00d8f2043894013ac8cba09335b31b5ce1d41d2db15b83aae3c9cc44
MD5 f85f6274797f1e6a80286e6952c7adec
BLAKE2b-256 2b97dd5320e51dd849c6efa8f064143c47b1a7356e6ccfc3cfc800e1ed1bdce0

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 69bc7acc2713ca023b135e1e71006ac7e727dd6a615107f2c1783862d710ff81
MD5 30e3dc64b8556fc0c183a17a899e028b
BLAKE2b-256 a3997d36bc7cf20ea664baad54f255521b97404f12fb7f42ed570286a611789d

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8938285ffed97aac80e3a5b3c6bde006462be2bb5a451af8c7950746c868537f
MD5 a09e1b864217a630760e69173f703752
BLAKE2b-256 c42a70c78d5dc46bd2a00e6d231a0919623efdf0165076fa3112a25762e70073

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 27ecc053c4bb960663031a6b31e5b3f028df07c586e03f492b8300a0c0988211
MD5 ed78c96bd5f98ee3841cdf8fdef552b5
BLAKE2b-256 7ed68fad299305be36a3a464d62a3a3082ae073d8b97fccc727e9706dcefeb30

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 92ad8b92a453fd5c148717603266d52db7658a694942fd4d859a256a2c32f14d
MD5 be8a5ba8b2c87062c49f4087e03b51b6
BLAKE2b-256 c3e73c03463bb140d5a7f48a49eb7131cc53c5d101f4a2c91168e4a2ff3ba33a

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e6c4972bc0cf1061b32a1da145f96bb13f2e1ef583e5b7af2f584e747ae0b6cf
MD5 1db153fbfb8295e4073b318be8131d20
BLAKE2b-256 a515190be005518a9660995dac1109f6a23014306e1b60759c1ee9d734353282

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4530b225fe6e29db827d54edcfa8ee420245b2dcb17c16a296692e8ea3aa9a88
MD5 b0555f5f468e9c0a0b504e74ed64216f
BLAKE2b-256 91fee08449d0d99e2079f2a35ec56c76c2650f0a668ce5bc7a19deaf64618d0d

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 659c3601dc5bf2ad54ca672474576e0217b376d91cd38541b6775fca2ccde06e
MD5 5a038e8a5f42c4d966360c746d03754c
BLAKE2b-256 7dc9bcc906cd1b1f8626a872a453ebdc17df037b001f8d43771edfa42f979f90

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3fa3529181cb8b052558d6d772bb5e0c99d02a3314c3ea077e8bd87d387143a
MD5 a94005264b288ed5916bfc7bb02a1512
BLAKE2b-256 fe0a743f1fdeb2c612d7eeb81ac4ca0912d2f49f82b75aaf507bb5386dcaa119

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9ff92ec8e53820e340061170c1bdc9d0926af4f80244d4f7025e35df1abfff72
MD5 e939bacdef2446cf2a338d4c1bd06063
BLAKE2b-256 0523f47babca21d76dea742a17ba803f9d9978d0d4237d5000966fc49c11f54d

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 87cfcd7b52d25f7dac60814c3ec5658dd15a850f7fde3a6653e5abf9e1964cc4
MD5 f3c9add29a36393f3468bcaab63276bc
BLAKE2b-256 b53fd790449ddfc188b64eaa6695306fd1598934c58a93801141187043e5d45c

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7b7d5bd56aa039a6fcae087c70f0551d16e465b3cb42334c14b56f56f5560394
MD5 6e377166847e2e1763f779d89cef314c
BLAKE2b-256 2909dabeaa93691f08b5a5afd75c23468215540bc09c110d98689ea199720f9c

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 88bcc153296d2baff8733f22c1707e6708fc6bb74b79bed6d09cbb9e825226ad
MD5 a9a29f074931d546764628ff201870df
BLAKE2b-256 43a3610b2ccf50af722e23737217de723fd9b5eea6b5d2a49667a7e150344923

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7f1435c8b77252ce2634a1f7accb2f7811f2276384872e752715a6671da09e15
MD5 15b49d4738f9598fa8576888e221a1aa
BLAKE2b-256 8389da5c90f3d5eb85b8d561e0292207e49b9d8b93bda16d9f6ba046d57b88a8

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4eddf61e3b0ae29ac959f70a6c2fa31cdc27ee270ad21b9ad43808f56f1346a1
MD5 5ab264a7f7844dd1424151fc9549f155
BLAKE2b-256 11e252f97ce1374192271d042485e226605ea5cf80a7cc8329ebaa5287c44233

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5b25bbc57515ff28d1bfa65a28fa1ff2595334807b338d776cf3dbb96cb76eda
MD5 7f4a0f6f38e994a575811e3c43513d72
BLAKE2b-256 a16da4c755ceace74a7866f10abb7501792c00c1defeb9db9a1befc902c34336

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a1c6d6070a4de1a0c1c9f08f42fed49a5fc50e32ad3efb96d3eae62dab54c65
MD5 f4c5456e6036d1fec1a97672f4bd3a1f
BLAKE2b-256 21ff9e8da41c105cc2cdd53467d278c80e7aa949588a56632c051478a2f30f25

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 acc9dce648fd7f0a818e01a263185c5c2de2a2d486ec4bbb622c217065c7609e
MD5 07c8f4c007ddb99617e9ec57139d5004
BLAKE2b-256 73a03b5d8c0b8b562c1ecb18af9ab1a3294175b77621e084dde8ffa11ccf8ff6

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d3aa59b435c34f6ae72eedeb608ce87aed2e9647a75bf71098910255f8e4dd5f
MD5 234f61a22aab7b531f26f1f39f1c0bbf
BLAKE2b-256 f7960c276cc7c5c059dd169cf258a4d65549405df63194a885b9fb7d5698c1aa

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 37020503e4aaf486d5e043337bba50fd03158b3a0f0de181c37df20fcd551231
MD5 199001a54d5ea522f1f2d9c8840bc7b8
BLAKE2b-256 c3ecbb6ec2f41510461fcd0d5a86f9d3b6e75e170a001503b31d926d7b3a3602

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 65a80110a7f91a1317e1fecf5f37212c7dbc80d3084cb705cc7524fca0c2bd16
MD5 841cbae0869c90de6fb93d484ab02f82
BLAKE2b-256 555590c578e8dfdb6a1bef2cd6ce9e066a56b7f2df5e3cd57a3d83406b0cc66b

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd683f2a3dff50bc82000c3e3e7075f12bebc1a92e53d0063447815a916c5179
MD5 9848f1103252dfcdf2dfd467b1d51cd2
BLAKE2b-256 a99fe8f1d9423a526e8cc7727234cb3b88a153a2ba39a9b9826dbee4d8a41428

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 114984464e2700a67a450b2b25b6f7f3276edf49d56231553aaf5331c27645e3
MD5 c84dddfca193a3de19f90b6edc988ecf
BLAKE2b-256 4cd52bbe60cfea5729cf14553efe3dbd11bb6b4471c93df78311b2ae7029e284

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3ae777c1d4b51b8ef1ecfa475e218de7391b84868bd1aefbe2bf73041154007b
MD5 aa30134adf2e72cb41aa062b98bb003d
BLAKE2b-256 7619fd7f8e2970af7d86358b910a4114a05b385042402a979a50b48dcef34fe8

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b9c257061cd813cd521f0dbbd90dda1e6040b92abe450520ec1f52a18880c91d
MD5 2cdf6633f9c46253b962d082ce3beeee
BLAKE2b-256 61fc4bd1137663eb64f01a08ab2a07c032f686c4d1861baf7b6b817937e7f887

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 34c8768d3093c047911ce48297b475a8d8bb42e963072bbbb6432092cd9f5c8f
MD5 8f55e3a9ccc1e3835c1a792bcc49d919
BLAKE2b-256 58509cf37fc4de17ff6749c708361d3cb65e3d165e6c1dfac8959a64f3ddb714

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fcc5f2b39522f59d26f2c3cb5d18a62a5bffdbb6f24999cab903ee1bd34915a7
MD5 29b3ef2f105c7dfe0f4a43c64b77751d
BLAKE2b-256 10d9c6bd4860c211da9668adae073cff3f5322661c0ccfb7d365350d48c4b3db

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9b5eb2cec887b69627047347f45906b1159795b1a5278898344a28bb4f2766b2
MD5 dcaa1e8e8552fef31dc1ffae1f9b2d15
BLAKE2b-256 19daa7808072e208b3b50449f10836ce5095ce3e4b72d6d83b97e014c775a948

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d9032a0354c76cf6939d8482a7032f43e5da57a2c2a5ad71af4ddc724e71ccfc
MD5 0fb441bc1e0c8a8a6aecf3e9ca609fc3
BLAKE2b-256 e8a38a27dc0ad0e3b9de87fb7dfa1c579c3b1570fbea31898a30e42ee3563a92

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a524371b817c25635d38200b402af237914330087e8531a9ba2b0255e40ecdf9
MD5 1c589dde0645bb6da2ff485a0789bf7e
BLAKE2b-256 9d4b33a28cb7103ee034914f5daa0e2fb49926b55d011de9c0feb1c5ac49e58c

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 af4f5b073be75c1bec9b4b06e7d1513f3d606c7c2086940f54fada7c3ba03906
MD5 00618cc4b4bc8d5c1e4e0e92416329c1
BLAKE2b-256 2b15bbdb4d4039130ddba7a27709aace4589b6cc715a27a27a4d94156ba81eef

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8d657f5fcfdbf2855bdc02b75761601d720e1cdb7c45884fe49d49360b1eaa49
MD5 eff1553728baba56a07bbc8999a1a2d8
BLAKE2b-256 99d3712fec75cc18d912737c1685d22275417b9723ac0f2e5252ca6505694854

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 198e0cecf0afe89a84c1f2c5430c1aa01e5e06ef00fa79c48458decad7771510
MD5 919e6524f3096e30a3f699a732eceec6
BLAKE2b-256 9e05b80b76660ea905e7697d69832bc9c3b3444b265ad0731e3b7ecb566ccab3

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b6f9991e1a2339a33c75d6e33793e55b9f05899a1f8f1be4b8877b00fddb57c9
MD5 4efbf4bf518dc050b3d4e1d2d8f52b5d
BLAKE2b-256 26384476ca7ca6b3f0e428bfe316ee2bcfbf9cb726c8e061e1a748036ad422c2

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 04cc8c831165a24c1aadb254bfc28c89d4e3f2519b145491f372fd28efcba8a2
MD5 938e8e1a0b4322735e5ae54851d27b83
BLAKE2b-256 9a482a35a2e504b79b5506bc73246056d3562071f71f7dd04226f3e012b8c5e9

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3f7adc95553e6e36970343329105b361664dfe13f98aaa484f0dff23757ce459
MD5 1a164c288976abf2f0f1aec0bec90e6a
BLAKE2b-256 3093cd5d3399b5139cdd71f9dd31f3ca86d0ae9c22f88040dec828cc919af25f

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b824f094466a8def2fb7620e835ee4874e10d19fd15895a878cc153a8f962be
MD5 55f9ebf2090957d37d46b0335f55774e
BLAKE2b-256 24d8822e5c8b32aaaa70bf21c7f4a2cec9564509847dab52c9bc4561a33ceb05

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cf8d2a906d9c79e4194aba13e5761193c040888fb607b0071dff2e8fb5c5d829
MD5 94fd7d5ab37c1e69e1c040ccffb611cf
BLAKE2b-256 ba6be37e2c5af15554fcb6596f707da53b5687e195ad77e7d67ba3f9aad28e68

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e66b731a9f585fa3691cf311a0f45543a46aac390033e58515dc60aed4eda2aa
MD5 e5553869e793dcd110d2eb2a0928dcf9
BLAKE2b-256 3d2b8d1267939613fc35c5f0adfdb5fd08078d8f2a4401116c57e1624d1c2256

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 96b890d8678d2755d24d81e7e05d5e750168dbe4aeefd9bd87a30a4425667150
MD5 dbbcf4341739cb6a7a8919295e0ec33f
BLAKE2b-256 34e638f0627577b60206de8781d971295716a58bc8214e8644e89eabd3184414

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 11b19a23e208c0ff6e2ee3c528de74ec15d7e12f99e46770827f9addbfd7701e
MD5 92902c22c2eb745a00970fc297ad35bb
BLAKE2b-256 3b2823a645c7f9c9153c4f43a37baee9b0b4019cdd4dcc1f1e4c7d4a04d76fca

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2e98ca401de4db9c1e064d72bcd166b7ac93badbacc1d77c41e882acb6dcddf8
MD5 bb87ec3caa4de3b030d949797285f7a8
BLAKE2b-256 24c416fc137eaecf8ec6187263b659994a690dfe04ae37f629e858062b601d36

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cf63713d3663c1d2bca331f91587a07e7eb194873aab50ccd606a9147a9f4e39
MD5 b27c1b8124159978cb614cf68e782509
BLAKE2b-256 e257dbb83592c7dcf529613ed7d7645eb4e8c6eabc2a4054d9980bdd817852a8

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6efc13d7c6e2378e2243c3dfc6e9a7c2a739ec31d740f0d9bfd7caf662de3a4c
MD5 df93f3bd378d3936ee87ad255abbdeb4
BLAKE2b-256 27ae4c50007e102b91c18b49dba96be882950f7dc9fdca3e9acfe6dff13dad9b

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 430724d1d2d41ad3e6bcce8ae610775d43f6bc50e69a351bcaa32739fc9adddc
MD5 2a43dbbcd7f1c9a3b7d5998a29edc6b4
BLAKE2b-256 35bf54c5a4cb522e6220a31a05382a36fe6851fb5dd9556a725481252d3974a3

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6d8f895599b1ebceddc5d06babbbc0606fbcb70196490ac9bd5edc3bb360e117
MD5 c39f2ea490f7551b69a4e4a0d9c122b2
BLAKE2b-256 414bc9a2be976e3677b369ece87456f75c1a6a6562cd939b8db5fab5cd28dead

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f60c71d1754d7a129abf9659469edf9755d94626c1e133f63ef44d2dbd5564a9
MD5 a24c1fc20d7f1cd68edb4e009e180ae9
BLAKE2b-256 953390e19ad898e48b714e9e67c7a4f02b774debac19f818ae8b7291adef12c0

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6c7a1ae4162df82d2404e0dec720d3415a26982c9ebdc5cefbec3ad305e01f6a
MD5 b3fdbc55492aa23015732c9f3d16f7c2
BLAKE2b-256 504724d8d0885876b43a770fa1be06c8e4cf8ff26c79ee788c504cd08b6a2842

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e610f17413ae98be8b8f78822a0184e2e6ad69374b84f7ba192e579f30bd5cf2
MD5 ac7af8817a200644739b8b9ba2be198b
BLAKE2b-256 9e568f761ca6d1c5bd9fd255e5a3a364dc9e6bc071ab7fd5aed3b40195b4f3e8

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b811e09ed2c05fd01b5346b5c0ed6fa80f314e22dc4758803f4b2c878d9f6b5
MD5 892aacee9957b77a4678fdba9a661d92
BLAKE2b-256 22f2397fd8dae7a055c5fe2ee571935541c3100694e89a96f371d30a22777f44

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9137f1cd6294ba4ebc54acc4aa78dd89dc8541c2d73dbd7644f8ca627dcda2a2
MD5 39146eadfc442b72285c1a75dc25d39a
BLAKE2b-256 0bd366b4b50426de30f1117cf87754bb8d587e26399001ac7df639417ccf414d

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4c8229b8d3db89c66bb0610732ad6960037e066cb495a81716f7cb502c66a281
MD5 51fdac2ef92eb42a39b42739ee1a3b33
BLAKE2b-256 09e8e38e81587524db5a5966984cce17cfee06a1ce0a034b0ad2315c43ce70e2

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f81fb428dcc2b3cb4881711b0b04abdc475ce5279c0edab1f498eda2d72914e
MD5 afc437bd107becbea53e4713a056742a
BLAKE2b-256 9b14c3f9f8e40999a5d9095f6386492ff34be2db73350315f1a7f5aaed33ac8d

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9b5053619b39abb8d314d09dadc79274aa3621c06f3a6a822044be295d5b246d
MD5 2fb5a29d081cb1f92a90bc101e5cbb26
BLAKE2b-256 c9daed40c7f2fcc5c1a284bea0147a0c6765154c3379e6e2407bfc98f6b326e7

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0edce78cce465be59fecdfd149c2c21c35f5c035a8ec1c15f527443ca9718569
MD5 ea6585a476b3a74bdb34015ee497bff4
BLAKE2b-256 ff31e8ed38113465e90657d942b88486ee422f71247844931ae418a373efd779

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a5cf3e73117c60243967ac3a1dfcf97a424716aadb3b26c9e755a11e2b6d27f2
MD5 b16ebb92e569c7539516fc0a82c5f855
BLAKE2b-256 019e92be66330f2804ebd25fd34efc9733039438fd781a8cb7d2b758a7bd49f1

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf47ebed380de7ec6240eb55fce6fbacf94fce31d3975155eae7dff5f873d951
MD5 46f73e4d1bec7807f725807e999dc9da
BLAKE2b-256 3a13e97461419eff48b72fcd140c57582fb78fd99c643c62b2d096b071852b79

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 91aff354d646c0d68f3b2d15d547913ec5fe816a3b89099a8003cba46b02e6ea
MD5 0230c972651d22b6cee85ba6961f515d
BLAKE2b-256 6e2fe5759648ced6b67d71ddc6ba1572e193a0e6f275da849eac804e3d782c46

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8f03415cd11f19f614f34bb2109a9195d60b0655b9f5cadd3e8359ca87e63c96
MD5 545101eb3d129a2182a1adeda8ee3fdd
BLAKE2b-256 cd5aaae53d09545ee64a721b6eca1f80a3ba643175faca97bfaf76377cf68644

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6ef7e74a19c63b8d8f9c2b47df02e086e70bb344146268d3c9165089c92d2414
MD5 1fc4c8af1f2fc7a43e0e82e3962484ba
BLAKE2b-256 55fa6b998f3d30f3a97dc73a8149e398f113d53341582e3a074c935bdb1cb4ce

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1db7ba86ef481720940a6d0b98621a386093bd4502a06448e8972435870b7949
MD5 c15b90756fd40d6a395a71ef37a28603
BLAKE2b-256 96de1c863e2a00e3777a565c70218d302c0cc5859f5cd46ff74015c8f75ff78c

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 70446b9a0eaa00b631eb4e602073e8c6adfedb8a2a883a3a65b3608fb1daafb0
MD5 e9f5a532b1a075502bd45fe89ae7b6c6
BLAKE2b-256 c68bfda84a00f525175abae9e4be15ffb2d43cb671757a7cf6d3149ddf075fe5

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e919828ed9b17722805d8fda33388ec4a98c2c125b164c12291c6c7157402b5b
MD5 3cbcb334336044677f3f334eea42e75a
BLAKE2b-256 5fd9e9948824a0fc378008f23fadbc53614d729d4e0ae21f8528aefb7acebdd4

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e569c4d2bcc99900d7cc6850d204d22120d1b65b0efc02c5433f662677de20b6
MD5 cf9a9a7b5869beea01363a532f3845b8
BLAKE2b-256 4c5317f34ad9514df5a021fa606c96c3e9aa8bcaf281cb9db6b40a98f316ab04

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 044199418c26575eca5837797cd698ec6ed9692acf6709a63e1635c78ee11583
MD5 1b12cf7198665587fc23537e23105de2
BLAKE2b-256 ad18e43fcd8612e0c49da00b2db55ad61e7051294164c94dc40a9c90ff087372

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d777121e6ef17bca81b875580f345ab5b80aa3c04334d9f71f5cb82410031bb7
MD5 52bdbe488afe16d0dd9f7cbad013a5a8
BLAKE2b-256 54fab1eaa8e4fe3e627930ea0dcb46ce8fb80b3641a5dd4ff2aaf0de010017b5

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb48d1038b674dc476ded971db110b550f6a937c442685f93cd27fb6158dc529
MD5 f88e3941f26ebb50716ac982e5c5e8a2
BLAKE2b-256 d78df9ef22ff22e3bda4688c30dd71759ab0bf264247ae522fddc12c428b3fd7

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 20b5c6eef16d5d5f3c8ccc6e86e730e781e7ed4eeb20ff139754cd29ec38a177
MD5 c54dac9f7c76f3906233d9bb3475ab23
BLAKE2b-256 a6b4504bea363643e4f252874c1936026fc582026fb342fbbeaf3a002d4a4c3e

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 643e4f31677503487a0ef48b515e54b52be22d7f23bc96a9f5ec19e5ca2119ec
MD5 5f28b07f01c03c6d6ebfc0f5d0123865
BLAKE2b-256 ef68be705a542fb5f5c628f3559831a05c3715d9f0123bca2b9b7f2f12f3985c

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bc89f9dfdb1a706da2fd2b9a4ad23c99acebeb11a758fe639f7fa9fef1229fe2
MD5 67c03e34a4a37e610fded090c73706e4
BLAKE2b-256 b35b56066085dc9132862d36770b33bfe4b7461a97eb8429ed40f03a5c493451

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 baf5fce5b8aba16ad15336d5418eb57f3e0e6f71f7e3ce899bc12a6f6d9bd5d5
MD5 37ba194dfa278de4c0032c094684638e
BLAKE2b-256 9464ff1f1c74dca8063bcbbcc01a5411931a1cb8c36bc0d5f30bf3816bd80eec

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f82c8954a84675930c5f809e24c7883257559e8af1aafb49d994248abf021249
MD5 e261af5a8141678cfa5dc4a191e24bd0
BLAKE2b-256 2245421de803c96d8796ace9cb916760fcd02072078403242574f1879ceee3cc

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.25-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.25-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 71bf0f9bfbb9eab0ea73e2356ec79a9df56e51c0932b50a4a6d9b9ab9e9c7a53
MD5 81ef8d7ed2daacfc594116a4babe1e85
BLAKE2b-256 d7d8bc4207cca644793dbddd489f57f2dbbb22e034b655556670f67d3d912b18

See more details on using hashes here.

Supported by

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