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:

  • data: classes and functions for handling 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 and pulses
  • 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.30.tar.gz (209.1 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.30-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (744.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.30-pp311-pypy311_pp73-musllinux_1_2_i686.whl (773.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.30-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (834.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.30-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (747.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.30-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (574.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

attoworld-2025.0.30-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (600.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.30-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (721.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.30-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (597.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

attoworld-2025.0.30-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (572.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.30-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (569.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.30-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (745.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.30-pp310-pypy310_pp73-musllinux_1_2_i686.whl (773.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.30-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (834.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.30-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (747.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.30-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (574.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

attoworld-2025.0.30-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (600.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.30-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (721.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.30-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (597.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

attoworld-2025.0.30-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (572.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.30-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (569.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.30-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (745.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.30-pp39-pypy39_pp73-musllinux_1_2_i686.whl (773.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.30-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (834.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.30-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (748.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.30-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (600.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.30-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (724.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.30-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (572.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.30-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (570.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.30-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (571.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

attoworld-2025.0.30-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (595.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

attoworld-2025.0.30-cp313-cp313t-musllinux_1_2_x86_64.whl (741.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

attoworld-2025.0.30-cp313-cp313t-musllinux_1_2_i686.whl (769.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

attoworld-2025.0.30-cp313-cp313t-musllinux_1_2_armv7l.whl (831.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.30-cp313-cp313t-musllinux_1_2_aarch64.whl (743.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

attoworld-2025.0.30-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (598.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

attoworld-2025.0.30-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (716.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.30-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (569.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.30-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (566.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

attoworld-2025.0.30-cp313-cp313-win_amd64.whl (411.5 kB view details)

Uploaded CPython 3.13Windows x86-64

attoworld-2025.0.30-cp313-cp313-win32.whl (396.8 kB view details)

Uploaded CPython 3.13Windows x86

attoworld-2025.0.30-cp313-cp313-musllinux_1_2_x86_64.whl (742.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

attoworld-2025.0.30-cp313-cp313-musllinux_1_2_i686.whl (770.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

attoworld-2025.0.30-cp313-cp313-musllinux_1_2_armv7l.whl (832.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.30-cp313-cp313-musllinux_1_2_aarch64.whl (745.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

attoworld-2025.0.30-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (571.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

attoworld-2025.0.30-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (599.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

attoworld-2025.0.30-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (719.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.30-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (595.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

attoworld-2025.0.30-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (570.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.30-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (568.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

attoworld-2025.0.30-cp313-cp313-macosx_11_0_arm64.whl (521.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

attoworld-2025.0.30-cp313-cp313-macosx_10_12_x86_64.whl (533.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

attoworld-2025.0.30-cp312-cp312-win_amd64.whl (412.0 kB view details)

Uploaded CPython 3.12Windows x86-64

attoworld-2025.0.30-cp312-cp312-win32.whl (397.7 kB view details)

Uploaded CPython 3.12Windows x86

attoworld-2025.0.30-cp312-cp312-musllinux_1_2_x86_64.whl (743.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

attoworld-2025.0.30-cp312-cp312-musllinux_1_2_i686.whl (771.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

attoworld-2025.0.30-cp312-cp312-musllinux_1_2_armv7l.whl (833.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.30-cp312-cp312-musllinux_1_2_aarch64.whl (746.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

attoworld-2025.0.30-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (572.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

attoworld-2025.0.30-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (600.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

attoworld-2025.0.30-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (720.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.30-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (595.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

attoworld-2025.0.30-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (570.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.30-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (568.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

attoworld-2025.0.30-cp312-cp312-macosx_11_0_arm64.whl (521.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

attoworld-2025.0.30-cp312-cp312-macosx_10_12_x86_64.whl (533.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

attoworld-2025.0.30-cp311-cp311-win_amd64.whl (412.1 kB view details)

Uploaded CPython 3.11Windows x86-64

attoworld-2025.0.30-cp311-cp311-win32.whl (398.5 kB view details)

Uploaded CPython 3.11Windows x86

attoworld-2025.0.30-cp311-cp311-musllinux_1_2_x86_64.whl (744.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

attoworld-2025.0.30-cp311-cp311-musllinux_1_2_i686.whl (772.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

attoworld-2025.0.30-cp311-cp311-musllinux_1_2_armv7l.whl (833.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.30-cp311-cp311-musllinux_1_2_aarch64.whl (746.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

attoworld-2025.0.30-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (573.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

attoworld-2025.0.30-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (599.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

attoworld-2025.0.30-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (721.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.30-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (596.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

attoworld-2025.0.30-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (571.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.30-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (568.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

attoworld-2025.0.30-cp311-cp311-macosx_11_0_arm64.whl (525.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

attoworld-2025.0.30-cp311-cp311-macosx_10_12_x86_64.whl (536.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

attoworld-2025.0.30-cp310-cp310-win_amd64.whl (411.7 kB view details)

Uploaded CPython 3.10Windows x86-64

attoworld-2025.0.30-cp310-cp310-win32.whl (398.3 kB view details)

Uploaded CPython 3.10Windows x86

attoworld-2025.0.30-cp310-cp310-musllinux_1_2_x86_64.whl (743.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

attoworld-2025.0.30-cp310-cp310-musllinux_1_2_i686.whl (772.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

attoworld-2025.0.30-cp310-cp310-musllinux_1_2_armv7l.whl (833.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.30-cp310-cp310-musllinux_1_2_aarch64.whl (746.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

attoworld-2025.0.30-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (573.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

attoworld-2025.0.30-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (599.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

attoworld-2025.0.30-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (721.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.30-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (596.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

attoworld-2025.0.30-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (570.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.30-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (569.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

attoworld-2025.0.30-cp39-cp39-win_amd64.whl (412.5 kB view details)

Uploaded CPython 3.9Windows x86-64

attoworld-2025.0.30-cp39-cp39-win32.whl (398.5 kB view details)

Uploaded CPython 3.9Windows x86

attoworld-2025.0.30-cp39-cp39-musllinux_1_2_x86_64.whl (744.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

attoworld-2025.0.30-cp39-cp39-musllinux_1_2_i686.whl (772.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

attoworld-2025.0.30-cp39-cp39-musllinux_1_2_armv7l.whl (834.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.30-cp39-cp39-musllinux_1_2_aarch64.whl (746.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

attoworld-2025.0.30-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (573.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

attoworld-2025.0.30-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (600.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

attoworld-2025.0.30-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (725.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.30-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (597.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

attoworld-2025.0.30-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (571.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.30-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (569.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

attoworld-2025.0.30-cp38-cp38-win32.whl (398.5 kB view details)

Uploaded CPython 3.8Windows x86

attoworld-2025.0.30-cp38-cp38-musllinux_1_2_x86_64.whl (744.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

attoworld-2025.0.30-cp38-cp38-musllinux_1_2_i686.whl (772.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

attoworld-2025.0.30-cp38-cp38-musllinux_1_2_armv7l.whl (833.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.30-cp38-cp38-musllinux_1_2_aarch64.whl (746.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

attoworld-2025.0.30-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (573.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

attoworld-2025.0.30-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (600.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

attoworld-2025.0.30-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (724.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.30-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (596.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

attoworld-2025.0.30-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (571.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.30-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (569.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for attoworld-2025.0.30.tar.gz
Algorithm Hash digest
SHA256 168407e1bb7bfa91e5660f139be41128bd3437ffc1521eb7fa5ef9c2498eaa0d
MD5 1315c7248918cc1fdfab3982b79ce690
BLAKE2b-256 f88f3f59c397ae9a5d0ebc5d335ad7ca64fe401072e5a88654b7bae0655a8609

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6761aeb33a6172b88b804d33ca169463f24f026d782ef3941f590f09b42c7268
MD5 885f4b9b730e7bed35854055e8c80feb
BLAKE2b-256 3345e95e68591ce006f5b65ebf229a47107084f72c77d1ef2692cde694480a74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 110ce78121bf41cdf00c109be7f2baef67c1e8dc8ae5979afa22e74a513dd4c5
MD5 30ac01c2ea724d5e8bf3132faa0da0ee
BLAKE2b-256 64cfd607b2c4be2e0ab8c2083140e14697e62191b58f05d930ff956607deab2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aac5f1fef6d251ba54219aa6e0ff30c8bd2397cd52206d04df3d7903d94756d3
MD5 1a02b4999e18a40a39f101890f5ff101
BLAKE2b-256 d12dba3f368ff030b6963c4574abd026a77aa7f79a5cf14b32f85d00aef2349b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 20b9ee5d2b7a5f569b36c052da68a41b0c6fac3ebeaf5f2c4ccf0f0faa254ce0
MD5 1639a221689f5c6a15f3fcdb931f8c3e
BLAKE2b-256 24747eedd9bb58e9afe8aff9e669cab25ce3a4f8ca563e7c1a05916496c5704f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 710cb4ec5388a80c119522e60dae230af85746e0b0c487a2bde7ebc105e4a1ae
MD5 398f2c565877c63b5c82ef40831b20a7
BLAKE2b-256 a95b0e3e6b681ce9a2d0d75f8e74ef05a6ea03de6259cda78d58d479ff50ce13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6a4bac53d88999eb9e6f9272dc2df6a633ee1fbcea81502217901d8f6d569b4f
MD5 3f6df6ff1a523316bd5e895d68a6e269
BLAKE2b-256 8a5354353f7eccd5949100ac261cdb54587a11b24573388ee6415adaca631dde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aa8f582de72cbed89f70f8c392578b2da24c076abec35db194d59834cbb08844
MD5 42cb3bf947a6a9c9422560f13cce678d
BLAKE2b-256 8052fe89c1d9a9914069513b49dde9f58baec3fa046b4c0118b5b32fd57058cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ea4ca917c91dbd93cc3584670f0ce21cd1f55f0f9619deef55297f047e5411dd
MD5 6c9eb3df2e6f885c2912d3869eb557d9
BLAKE2b-256 62dba94bd5b75e7dd04326da25c339930bb0babc83ac600cc2137dd57773225e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 64a80c10d51572b87cc921ccf7cb513d4646d590d4f0586e5d76269eb434caa7
MD5 5909ae59ad72548b31a3cfa04330fdae
BLAKE2b-256 b3c52bcb66a9bb6fdb159d5c3e931b5aacc074f719400d66bfe494a7b6700ca7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a40b2a6ebfc67271b712fa9142e640ea13d7ed868de6e89dd946026eea0ba46a
MD5 ef8f2ec6c212c1ac240d9cbcd538563d
BLAKE2b-256 4276f27a2724e2150073d8cf632beb259dffb2441b9beffd65d3685561792ad7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 53aca4ad86cad514f959cd4229c8a20ad7938eece3b44c042b8789651a633b52
MD5 d8964a513aa2d2af5a769ded707dc8f5
BLAKE2b-256 2c947b9589977ef2ce47fb80a57e9b457493613868c78a8ef6561cc2fb89b6bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9e9008b5babf4d780d7c5f3e3dde3d4909e5e4c9675a60dfbcc8ddb245e52a5c
MD5 6ea5afbe4ed975fa61002c38fd1bffdb
BLAKE2b-256 c6e2f3d66507741993ba8c3f443e9e6f31b65c0bda873d59b8fdd23b858af18f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a309a6b801a0066dd0ecae57b7a6ccdca91b6194cf8d57ee49724f0f7fb0c8c1
MD5 0ef66294f739ade2b83569cfb8dfbc51
BLAKE2b-256 19a9bb68ad6a56886935d262860c936438287a02368252600e3d16e41bbc7de9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2e7e43a06fd39a6f54887e015eb90982e17706566bb2140ea4c1b7c2cf22afce
MD5 61ce13dea72524c0744a0a9892b6bb98
BLAKE2b-256 dc8af0319dd1dc7de35a3e304bf7d48f1713ac6d076c3f93ddba681f34a959d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e47bca36016330fa425acbbc1b97408cc0b48b7f2ddb66bf6f04ff18626162c5
MD5 ae0632dc112e93281fd592cdf7294603
BLAKE2b-256 9f7f06c09fe1e93b5f2730989563ced5922f497a0f9e1ed789526e24f53a8f3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 78376e59e1780d5e834cb91935a4cf4483c667e64d4e3af458b7dabc7a41499e
MD5 19c32e3df5905d4b2f136da67fdb5b63
BLAKE2b-256 9e5bee989f33d9b7681423046bf031a41da69369b921e1588c1da24e9db7dc08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8005c2c6d6013532af43e8a9596fb8d4beb37e82bcaea7751e071d30a9f64d28
MD5 5fdaec39a3403ffcfc30cf88738242b1
BLAKE2b-256 ce4b9dd6cc0ed4a2f2c96339dbb01f6e80fa53a1cdf2e4063293d608cc099fa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a2a3b22fe2d02b094ac9c30a532b798d7a5b95dbb49c9e269ed02014c928e7b2
MD5 33500f6e9b0be951db40e7ae4c00e0b3
BLAKE2b-256 aac76a967bdda0a8783b8d592026e8a4cd2007af7dc3c79fa11ce85843297ceb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4ea9df654789c957a34bfb6873e96b0413d0699abb806119ab58f15dcf6b4d77
MD5 6efe2837407f047b3ee856507d35cc98
BLAKE2b-256 bfc52712160eee6a1d2add9799a08961b94f4ddf2fd70c92029078f597e0f247

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 85f4eadb7424b137cb5b029c7ca20e0ed501f985f192867aff0760c4a4bff948
MD5 f03089ee59e83e329ecd1edbff47c0f4
BLAKE2b-256 069f06f5b97993a9529c36f705e7939b3240371650244abe1429ba244e4d8bfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 944b79699c4bf6380f4281060f67648790fa321014ad22afbab9bc5609e323c5
MD5 0788fe445b6527596425c96d77a94e87
BLAKE2b-256 fbcee62d8b65cec059a967520a5eb9ba59c74495a2c851bde8512ff92c1bf6a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b34b9e89fb1a24d36749d9709d92d6ae1bd8da086e63cdd72046b587222ee078
MD5 41286377464d2698eea67de819d48402
BLAKE2b-256 233b339a165cfd4583d6fd40a712909901528c9b4ceaf38afade0c1c697bca21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 93ddfc81f3b421107ac44d284570d3f477b2395044fc283f4dbfb6b88c6ab53f
MD5 813a95c066e6b958e7d7b82cd12846d3
BLAKE2b-256 735c2c241f8e5abb5b80473a79614e948c33d73a848037afc8d15ebbe28e6e1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c1029657a4d1c5e6dc3ef141945d81fdc3fdee76e74658e5e62938e2e75b6ebd
MD5 f778be0519be6ab032a32b630264e1b1
BLAKE2b-256 8990076ded773c6a6bb3688dedf0449f0b4bed2a5826f48872c393aae1d65c43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b164d9869396863c3fcb5ec6f104704dd1362d1d2ae3ce90570ac0c10fa2cab8
MD5 6aad03d296d0eb0020f4314fd1c30ea3
BLAKE2b-256 c1418199f4cc727a1d530c11337f517b3b80b838c8dd25e73a82fc1627a57910

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b3cc0ccba41302d48b7d7f4cbac77cbcc29c5c0688ceb7af80a1f15b749e1482
MD5 4c3557e162cd7d48dd2713513adccf5f
BLAKE2b-256 28141e8b5db74054b5fab50287b4c155299eeab596fdf0a21db1789aba38239e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4edb1248dbd5e3f58509ffcfb02ce4066e977bcef242300bae1e808234e42728
MD5 5cf92c709242ea43214adea7a0788c98
BLAKE2b-256 df36a7a1b2fcc5e95ae5272c95840d4ec83f48f03f873e904df009d034f8de13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 37d55ef816ba40c922514b1af3309f719afab94c18edbb3d75287e7106a65b95
MD5 b003f62941a793f7e8a8aa9016cbedfb
BLAKE2b-256 09ff12d858ef9551b94ce33824a489af44ad7242ff9deb91b15a5c8cc39041e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31d0a58b3770dfce194cff1cdf5b58e918449fff25ea06d3cb32b9b9a422c43e
MD5 2736ae07eb7bb0136b801d1abcbb2a87
BLAKE2b-256 25c81462ab9e3ba9a5a67fe5acf5e1e11bf1f4b9265db7f036c7d0743a5e7cec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 38496a80f8c088c0890e1fa148b3d8aac61b5b0650884341433527662743ea9d
MD5 5f2b16837503af56ac474ad9ab19d635
BLAKE2b-256 a8ec5da0c6fdfb1a733457fbb28b33ea9ea1b9d56797e2d37513ce6b12769ab7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2c17809224e311ee5669ad9ed83196224e2ba5eafa59f2f3abcb85ca2a8d812
MD5 f3643a3d1d667ac57820df891f13c1f9
BLAKE2b-256 619c34a0da7c473a36b111c49575d68588be0e2158e078b1672be20abe0e039f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8b3ce58b61290956fe41f2dd1683e31ec27fed93d5b85253234dae196d046760
MD5 03ddd404a830928f0a1b5dface77e327
BLAKE2b-256 847714a5e975f61e49bfaecb1e8521bc188f9be61c823c9f657a8cc46694de69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 931ce7d72c15de0ae9e67644ad74011b61eaef5cf8a335d7c17efe8c6aec0814
MD5 a2fe10ce9cb7150f43af482880bbcf74
BLAKE2b-256 71c9c3baf830214717650d615ff586c9c7825ec3600ce7a627f2e522f3d3b559

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 330a0b9ef19add8f380dd83701a5bbecd77d67590403b2207f2ff7faaa438f76
MD5 b524b91cb71e845ffa30e7776ae73d8c
BLAKE2b-256 d42673bca3a82b698e4c45d683bd9662ad9d77e865c6b9b69382d874895790ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a9c1f5420741652e3248ac4cc84467e4164c6c85e02251d304b1281d2fec04fb
MD5 5b32b587ac266b79f26ff06dd70e7c9f
BLAKE2b-256 0630af3b0d4cb1a8cd3db6689df520fcb679c7f1bce58307e0fda6e2bf6163c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 da6272aacac7bc5eb9506a7f68d4ea3684881b7960c80dc468ef759f965ef73b
MD5 3337befb5c6bdda7a1fa7010f0c0ae0b
BLAKE2b-256 33fb5f836959914c9062723fd2ac0b96557b01d62bf0ef2ca561aaaeb2ea5ce4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5cca0b464e3e86e09fafc2676f8f526b2f4f4b6756766f8c25dce7a4c50f0879
MD5 f732d24d3c60b900cebab3af2585b5b2
BLAKE2b-256 a8d1e063c0ca13e4595ca9be72cbc3437e2f6873633a60a7f54202d688220294

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1357575c3a611136446d7984d082d8f17a3c4f79ed886789b3302b60d92eeff1
MD5 eed208d82f026a6c0cabef89f899bd74
BLAKE2b-256 8a11d7c408fab4b9951e2918aeb2307d7e2a967257bde0bb8f9dd722ebcfd88c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 787490d1f200e08b1778be89fc5111e12c3a4b0f8b310cca04a053b889571eba
MD5 cc1406f1fdbeca1c6bad937ebb6700b2
BLAKE2b-256 0f35915c92996c40505b9b38358bb7360c5d89f637bf9cb6bbe067d83e09a41f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a89f24dc5a1be1b0e3a71fefd42bcb323de1deb4dd23865f010709aead590475
MD5 00e5f712d99dc690daff74c4e26b2905
BLAKE2b-256 eb9b6fdeb2525110a07beeb2fa31db9dfef5222627d73d0cc1a4d8ec14849717

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 830a03dd998dfe484d0b89bfae48d24b2e7bbb9d251465aa39e296c42f42d1a3
MD5 ce17e4122cd25cc2e9a7edd9f2d9314e
BLAKE2b-256 6f84f97842d4bd7eef7b98004d53825a357e1224ac2c11f2813a305892e7e77a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b1e6be89c45b902a20d73b709e83164652925aef81088c6bf2b7c8ec580c0fa5
MD5 ed775f197ffb77c837356e0b78ed714b
BLAKE2b-256 09f433c707a5e7d5d27597085ac71c5ea31eb2ce256cb305fe13fa03dace62e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 93351d7bc5bceb2ee79cbb993e7f4e561989dfdc50ac8717fb02bc21bb701f42
MD5 db0076e95af74291e90f3274b9d2d220
BLAKE2b-256 8e0074b592a0c8f0de62776bcece2b52ab899a96784a7fa80cda7aafa9b02a92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c20193cea580b7381cf39e223ad0a27928842617acc091198691f2cec873c39e
MD5 681c558ed49f95fdc6d4a61809df1b23
BLAKE2b-256 99882eadb4676c64edcfa893541aaa39775b57a34cb69e23dd76fe6404a31ee3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 891995a245a6b3f91ab10d919f0b9824e33356ceb718a4836aace4e9b6392014
MD5 5f1b3c87d31d8ca5bcc13217b3fde915
BLAKE2b-256 b048ebdee0451f16c53fecbac6b6459b73cab97c08c726da4182af2e1ad2d170

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 de4948e1d1340afbaae1a326c196507fd7a8f1c58a9ec7cf6457ba4420df1e39
MD5 ed0ca37ce55e6c22df0f8bc68197f611
BLAKE2b-256 1a266bf5c70cb3a4374504456b158f6065518cf6489c7994e1b63e63d31499fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c04f8f2062ec865499f47dcde808c1cbe7ca83746cde81026a7c7d89f3c36f6a
MD5 34cd90a593576528d8ccc3ebdd135765
BLAKE2b-256 3a96d8587e59ee8d4dee2c4f68d6ecbfb8e5bb26f12dc68435989f857101a124

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 21d6489fe04ba9b2368affa06dbf43f8e0ac2e4d3b7b57b7fc4799c12d1730b9
MD5 581590cd3e878cecec6dc2556259e005
BLAKE2b-256 3af4e4732422cd6a05cc5244772278514b268f16da10d5c8b4d100afe12b3611

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 501924fa16540c607678e566cb246631ef207152c9153585282759855c2f15f0
MD5 864a61dcba8d900cf2cce993692bcd5d
BLAKE2b-256 09f51aa53a821e65ad723de08a0f1aafdf3db636a78101c62f5c8596ef6bb377

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6136b3c7ba6155ffc8318afb6b13664a3fb39d332215b9779a7e799c09a82367
MD5 9cb14708a68bc2ca1bf9affcdf2ba42f
BLAKE2b-256 0fb65e640283d9308c1601728cb7b5f500d87ddd2a6618789e059e104b7214c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c6a8f33c06d332c155499d2ea13395d1ff69f8dd26c6a0775689432c603fce4
MD5 f7cad5f070684e86f830c63396241444
BLAKE2b-256 f6aaccb97c3c7a350c206f67a96b9f211b29c9891af938ebc54112ee5afd8ae1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 68b40efc724ffb385f9f3e44a566db38eb0d6f834b2b6d80cc21a1f27d18987a
MD5 ef9f3956b4c764e076205c85f27beb31
BLAKE2b-256 35820d4d433d76822f9d3d333a91e3fa4783d5861b2bdb277e4a944cde3c7079

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 88406c7c5c39b23e9f92a46ebe4d173bed51680ba08bef7ef61f11178bd506aa
MD5 35d99d9c01b2f7d1442aac7b9b8d3f42
BLAKE2b-256 56f1ff6940d9ee0624bd6db467ba192c6c4d2728054661dee9952722e816f3d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b0f24d887b1233ba06dff74b33ea104c47460b16c6737fee2000aad33b1ab2aa
MD5 8ca5f4a3d8af51b1fb0893b4be0f3806
BLAKE2b-256 4b04c418b1b618c85c887061e026f772d90e1d8047e0a05a5660a1b3d7cf198a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a748805d254955021c5c8011c8cda1d7fee9781eb9d6cb0ee80c777bdce8e94
MD5 62322092870b2a6aefcab79bc492ba64
BLAKE2b-256 770c8ad020c2fd59541013e0e85007720c87f954314fa7c2cb6b530134386c00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fe5e24031e8a34b58cca62bfb0bbd6749b7a84ec0261fd9fa4afbc25bac4c2eb
MD5 3aab27ea0f655a98f0450c3b54dee2d7
BLAKE2b-256 35d53f2f36bcade3369611f8686ca3cf163d64f3d869cd3be70b6f81320371eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 52ac43c2017019b76265ac78c8d52a99b620320eda912de961bff3fca0b1fe5b
MD5 7e94a6758e90a12af1cdd281b49d4804
BLAKE2b-256 7102ac060216f6164fd2971063be8d6c437da115b90edd6d66dce847b3f1b4f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4b2f0b77b84fac8ff52efaeed4cf061699b1d53091f590fbbc45609f9b65c04c
MD5 a8a0c52c9ec4830720327e4dd80d188a
BLAKE2b-256 8747f56b0527594265c91780d24a309124050c6f24350cad8a5ec278a5eaa7c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f733d9f4bc5f7a9d37c9ea5af5c88d1e41844db9d2c1c02426f395fbbe04e41
MD5 e9b7bb5bb4b39564dcfcccd6d216c027
BLAKE2b-256 848212361394d4ccc9e7ace6328b8fa39164d90a06532605d865e67f310aee49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 01db00ef3a51f9eff507fa150b51b7080339e14c5c71436d28c98c50c066114e
MD5 4940c84b14ad7cfc30f685299004f3f8
BLAKE2b-256 074bf65efd0f8b2d6a3e87ee748a36ecda94776ca6dd06436f0ba3cb83e1cd52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 718b41be597cedfd3d8401ccbe9ff455b97daab43161602778c9a58e27177cd5
MD5 c389f5aab7bba5be260ddec678e1d315
BLAKE2b-256 e19b7edd62c2158dc30abb2718862a261792a26cb40017edf2f5396f8d73ded9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dbddc25684ccb1ced0e59745aa1212a955ba18414a41223d6966078f775bf886
MD5 4971dd5dff00e198409044c4dba1f91a
BLAKE2b-256 7f8af5a6fd1ab5dbbc94ddf845b865c06cd3876fca3a4e7bdb4da36ffd80188d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 20001c17aea456c34955cbc46b756faa1f7694383997dcf43cb8e724417cf4a3
MD5 a1f7f4a13afce8628822a6945119fd5c
BLAKE2b-256 5b33130d72912261af970d8b0e340b29ad5fdf0d4afddf259342f00256827b9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef804736d9d3ce8a2a05af0cda10348a6b633bda56c610e14811e1b733317526
MD5 0c66f6beb076267e8380c624dd866e7a
BLAKE2b-256 1d9698e53bd1575279787c1e4a34fdd043d37d11e5ace37a7a6907e3b3ba750b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9364bcd7741e7e3e728286ffd39db3d97f7e278145d1bcff743cd58a24711333
MD5 75c1fdbdeea86d4e685c725535adba0e
BLAKE2b-256 0a27ac88ff925d769c5837d8e2e98b106e25d744041fbaa2c1ae0f7cf6fac119

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c45f117187818128236512f8fc8da3102ef9d700906bbcf5f5923a6e498309ba
MD5 97b8c0188ac0e6bee3cbfebc77ddbbbd
BLAKE2b-256 e63f8c38575eab096fa7e63527e0c006b0a1ef2fd6ee12b9e77e0a36985580f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 027820852bb17287b9bd108dc9c07dc856427958e1a7d3cc5cce9b381084fbdf
MD5 4cfca498ae161a9975dfaf3fd8dbc7ae
BLAKE2b-256 c9790e8710f0d6cf1de8e788395b6ae879bed0420bebf579e25e162a45fee87a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3292a35c28fd6d89ed0fb06848484aa733324e8677324e4b1526202540f49bd3
MD5 ff909e58ca79e2a043ca5607edd75505
BLAKE2b-256 64594fb01e307040cfda9d74b7f7ff102d5e046dbce6a9ba52c1ae1865c57f70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37371486e5dd421e22854ee0819c3f2a0b1ddbd9ae83fdfcd95c50cdb3785e3b
MD5 062b808a6fac25f34caf2818f939f13e
BLAKE2b-256 5214af839f6ca7e93cf3b70eb76f62ace4bc4dba52f43f2158777f84ff556bac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b8d3ad54eaff816e864afdca6c485c315d2761d79b9c12683732ee19e4282bfc
MD5 40cbbed7a1ea7dacb70fbf86c8ec6359
BLAKE2b-256 407abed8074ca1ceb902514f0743b8f8497fecff09a7e70d82cb4807a61f9973

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d84789cbb2a3caf2cc3dc737f767231f04e614b7ac1c34752456f2ed062c162a
MD5 5f5049e84086b7795afc32ecff2bf7ee
BLAKE2b-256 70b9305c82cd2f87f17a4ff4b1642eff949c6baa6ee4e18be432aebe7824cfff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d1e902076ecea8b54133959a352785da3a2f7b736a3011e6959ad3392dde3f35
MD5 f22bb7896ef4412ac346c97a8503e3cb
BLAKE2b-256 c99921801246b1c96ccf99bc5c7690ba8a2ea17f3f9ab4a716c1ab08528b0dac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed9d879ce1816deae43b8a0e66fe3ab9ab0b74c08e198e4a0c8d5ffcd7f9720c
MD5 dd7c14fa10763f31111ad8d7d0b634b7
BLAKE2b-256 fc635a689d6cee5c419885062e44774a278ae0ba06fab500feb723bfe2f9ae7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e938bf4311aea85e04abf9fd4e4358abb08ebfe60a4bab017bbf7f526bc6422d
MD5 c20145f3e0ae6f0d329b416ba2975f26
BLAKE2b-256 4795ac49960cdf7324b8232e17f715be93154f80c4886f9e5e273fe8f9719667

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7d851be1a133be70654d50ff6cf9ffe0b1aca0915fc1aefdbdfc4e8ee8ab5722
MD5 5ccefffa1ede92523701d7ab62d9558d
BLAKE2b-256 03d013db9ec84ee8117c99ad6f2766daf1469ec19d911ed3a7e6a33f02796eb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f973c30ea21e75c31860b2edc9ede2a9f297c2fead00d7d79c1cbeea2cf4e977
MD5 92a18fd67db0981b84429b0caa394bf7
BLAKE2b-256 d725d5fb47198cf77ceda7a361a20247a8ded3d261c42d82b455980137e922a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bc0f497b3338fb9584921aede1500f7b0c525c094c8fd9cfe8c091833e8b7c5a
MD5 425c916134f4ef55acf55f75202e2dfe
BLAKE2b-256 055fa7d51aa9d89eca325af639cfab18cf4a6ae062c035af56a6957b971fd79a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef4f25a279b0592738f39ce88546265b16a03dcc66f8a934b89f8289f9b7f8f7
MD5 c7d3d7e584ab858becb07f0c90dd143e
BLAKE2b-256 ef41f05b927047f5d0472682ecd22eafb0fe8232c1d8c368fd44d6201c22f4fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9b341c15be0784146b61183032d8b9fd2618157a434b73daad5cfd2be0fe8e3
MD5 e1ce128142146253b63b66033842a498
BLAKE2b-256 4e30a632a73a5add290b8f962ff581771d43379bda959a0a18b24c3caa9c6d01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cd0274c6d9a9b84ebf57e49ebb5add943e32233d7f99d1934add068fcaa8391a
MD5 837bbbff1180f5fd451acb39a12f27e4
BLAKE2b-256 40502c745c48de78fb27eca8e926f89420a843e34a3374501bfe0d1f925d214a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 01c47248467eda22807f6fa5fa5a4d746647011c2df0924c1baa945b17658ccf
MD5 bfa9f6c43674a0a0231803e604d038f4
BLAKE2b-256 6e0e749f5a84824d9af0f22bf0a7c16a03830e3cbe1e12dd2657aa353e1b0759

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 fce117c4635f734abb9dd21ba7f668858aaf1935656b239eb9dbe9b9503589de
MD5 f52abd8c9d6ba671da08247611358c6d
BLAKE2b-256 05625ad4a22211b509d3c21cf475508d66dcab3c52af7e612c95b2189f6fd4e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a9a2baa02966b5f7ee625f078fcc1b92c8502b138cf08ca39f0eec8cea69e5b9
MD5 31bdee6d844978ecaf1f2039cc243e43
BLAKE2b-256 e06b38564de25d69be2bf47371e31cbb5112b2d6163091aa8ae6c9fe297fbd31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e254d942436d87439aac1fbb87fdfa393bc4d9ddf7dde9edb6f1a9c5f8cfeff8
MD5 5a6a1f17b402e045bc4424a48c2e4d64
BLAKE2b-256 8a6fd1f6c3c4bdb0364332fee971ea3eaf0a28d01d0eb13cb44ae674e3acc188

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 65529c4284429718d3362cecaa8f93fba1c3e3c053702750e66d65f83995655f
MD5 1f6efae1813dfe12748f34ec1bb21897
BLAKE2b-256 3b3cc72aa9c991570f262b8ebc6675b6c7050ff3fe0d3d99672675462a53554f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9a3b50ca4c7a0e334535f649244b1062b97ed9ebd13ad559f793d0445269f114
MD5 bf1787ce3ae8dbf3ae30299063a1c017
BLAKE2b-256 25a5b0deb3a35198243497a1267c27381fd5b0b5e83c6f1ca84ac9b4fbc0a44e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d945ca34dfbf5dc69b3649c0156348e778b0d5a801bd14cce6e3f21a6a14228
MD5 e46c2f3bad3fed84e269707577462919
BLAKE2b-256 8cbdfa9f187ad8a30993a0fb235b764eeb5f06de507fec5813ec54ec50f19272

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8650f01241a5e3e79707b87451e9b11dac301c35f5f153d4753715fd8447d2d9
MD5 964b956de6b83a01b48c9ebc23258a61
BLAKE2b-256 3d22b1c18c4ac8680eb0fd5512bb5ebd5d266b4c1fd08b2658fbbfbf072eaebf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 67a79cbf4e408f16f3bb96c48bad635a5469f292a3ac68826411e3a241fead5c
MD5 356b263202ed932eb8aee4b37bd5266b
BLAKE2b-256 2c83b38791674da808deec1a91960db7a19ccfad49449e04c22ca7922fff964e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 af51d6d1e43f4eb0614a065ef6dc723e1dbc8a75e831d6efdfebdba24e5d3e07
MD5 db70dd51aad5d289dbf20828178ca290
BLAKE2b-256 e6ab7d0096558019043c31228aaebc9944ace2231836b66ab5225eee60d5387f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4c0e6810242b4390089eef7e47ece7934021355186786ae69ce60392f0bde0af
MD5 0c960438947251c87d8bf3b23267d0b9
BLAKE2b-256 0bc923123a48165fa554356d860fe2f098add06ef36c907e209b1cab2c8e251b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ffa16be022da4d07dabb4f31063750219c0e3168d863350566f944f0e6f59cf6
MD5 4d3b8cab328e0426c31059d5161ca729
BLAKE2b-256 df2bc1fbf37c6efd71756712fe5ccf49a2cde49facff325f3d8abc1b105cd917

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d0348156466931679079ff37a159d054f56ec71b16c4179c7c16284c2f2af544
MD5 78942750fb4b91ffcd3d2884538501cf
BLAKE2b-256 7a053f2c4afb3a09be2fe531e4d08e683f7acc8ab1c23405a289b990560efe65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cdc220853b7c34bc430d7e76f6d1ef8b7360e8fac660caf885b5f354258eb835
MD5 d691e3eef0b6b6ef9868afc685ade206
BLAKE2b-256 cbf4c4b2683a4be4f69a83897c9d81b89e6da3a579c290425394673f247075c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 18a59aa477b5fa0829105dfe9feaefc51028460e959a21a5ec795e8094432b91
MD5 320d5807281110f447cb161c6377365f
BLAKE2b-256 b978cd0cadd179973cf6e051fc6b06908210228929c5985967b30ffffc370092

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c132f73e5c8805cd7f23d401aef062bbb7f4527e1d7801ab04bc01e946b1b05a
MD5 0ea0279d9a67940dbf1d77575fbe484e
BLAKE2b-256 35bee19852218479a083fce6993e79e3a42c0d150752f9b7797bb8ef187f9a5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5d676729ca6c6ae50c26e6947ef2a0d883a019b0fcab1ace6ad58ad547a569b8
MD5 053174f19cc010c49fff967cfad00b24
BLAKE2b-256 5af1781eadc9db54fa20e9292866b8fd1e298a6096fd56cea293682901988e98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c84d3bbc7942a7bcc3e8870e6ca8478c728e2bf09b7e6f55a4bcd986e82650d
MD5 0d1624c012653e6a7b4df2ca5882eb6a
BLAKE2b-256 e13f643031714921227c5d3dfc32056ae96cfbcae5add4f761e0379537230342

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6522dcf7e485910f95b6fb9e96b68c4b2d5ed045f005e90f1cf45023ca371cc
MD5 dfde68ab4588c13302be135f2b8c12a1
BLAKE2b-256 dad2b09515bfe170a7723df1afc3f1cac572d6b43edea9f63d5cf14e7cda1cdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 610b7e3ff351a31d0611dc0e10db4af02f9c017a9aa2daa2117c143316e886ae
MD5 8bd7ec94a9cb0b5c120fb95752ded7ba
BLAKE2b-256 a2c957c7cd6bf50aec8e912472fcf6161a9b516bfc96c2d9a06f0639d2a6a260

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8b915375f3a2ffa6fb385bce413a5e861fae9e82dce074660572e692b82edb37
MD5 0e76c74624190f2c67db5f771ccb5be3
BLAKE2b-256 d8938066df6ba8d288c72f7d0dfd2f9eb4680b52274ed9e76d4f2a9d58fa06c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 be74d1e4609332afb8ae3b11ce7b49682c74235b02821688103e0abec34266ac
MD5 3e00a1c4b4007e178083b71d05773bb3
BLAKE2b-256 e6f5ccbb3c28bb01b50ac99b0b7865b1c0fcfaf9f1a070cb277074a7648a370f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3615f4cbd91c52a472900a9b62eb9023c9437af48412f34af25548dcea25e916
MD5 024598261b7f7ff7aa3f213d398e5756
BLAKE2b-256 30f7b020332d6972aeea7ce80327b17348fbad0f374b0e27fd67a74ec14d3eb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1acc9bb4ed2b9fd2f3eec0c3200808f0f4090f310bea97e65ac47ddfe8295d4f
MD5 5ad650c513db3ace7f23dd1c48d66f6a
BLAKE2b-256 bf14909977b66479d33b8952f3a0af56dba959de080a9c2d9a2f08a66d2e7ed9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1f5f3d48dd2ba8836d5c36d18bdb592d7b10840edf0d070954f14557ab1a8e57
MD5 da093b7de942927637cfa232892d4ecf
BLAKE2b-256 2a88f4d6e76bc23208c98ec70e2e17a0e5fd893ef0a631b47db8b7b450ac7587

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6e64aa1e52fd68d9b64f750b2d4c3298a44aa01a976ac4630fe85947c7cea31e
MD5 656621114d4e6ad3556f7adf6abc824a
BLAKE2b-256 b83a57d212f86aba145131d2d1f3be46560b1fa11440dad07de09c29971540d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0b03db40cc785b76dea6f6749d41bedcbfbea00a8022ae8a2f684d4924facf93
MD5 0477ad88c8f1e3d35c9304b5ba53e841
BLAKE2b-256 2c50979ff2777970701f7aa1e200391ec4a5910fb1ea2a4b67e39f88b3ba84d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cf265073e41165928c85f0c902e907248122eb9d51bf54b67e3c46ee164bdd91
MD5 99d3d5d0320a2962986882b531439038
BLAKE2b-256 b7267a74f4870615c3c69f5612f9d7fb4a6bf3c2ac61febbd5619d78193e935f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6dccbd17e2766f2e8f7f46f27a4c169fb0a5fc412c945fd85bfeea15a22d40a6
MD5 a8eb5c0807b46d67277fc7b9e72c4762
BLAKE2b-256 03fede9304325905fb2a2fb042885a7d593ae4b95188012255d04d25184e9685

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8e2efd7297720e08238e950d50637e6c333a9f7cd3e851d08c8f7a6432e8737
MD5 17689606d5618e3c70a7d820cc7da483
BLAKE2b-256 a27dfd918c44412811983fa7d02cca6dea1e458b58dcdfabed8c6b065174226b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ff9ad735315a769e705b2c94d2bdf00d5316406005763bba9f3c6a45c30203a2
MD5 2fc4937ae46bae730b716c04666756f2
BLAKE2b-256 51ea8ecd84f78a7ee34d824add4c58b6310e38bbb7de5de8375210d410de75bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6389b76578b6cb88007addd2ef85ceb56608fa75c43b24a65da953a04d8ee776
MD5 fed00a3ee60f0187a1bd19a1f654ade1
BLAKE2b-256 cafa12dac37b99bb767a0871ecafe7b6cbb408005eb07362fe3f0e68999d3763

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d0a885fccb27d68276f54b89fa52657e7c9869e79d87b22add3c4429eaac5930
MD5 93e0389314f22e02ddc30926c54b33fc
BLAKE2b-256 d2631e9f1159b9d52e8ef7597ffab66b05267c954b72a02556df318106aab4cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 02d5cc0dd62594eceae13a92ce71e7ee9a7be58e561336ffb3420f6dfc7fda29
MD5 4c5b6ad06aaa07db0766bfe4f6ec852c
BLAKE2b-256 1be82fa58aba73a8f6333289976dd276cbc1559bdb9a999a786dadb4fa946cd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.30-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6091e7a9281e562182987efa57f1f46e0034e1ebe1514d9d00fd791a9953cd3c
MD5 39a6a3bea69142d39e2fd55a45fb6982
BLAKE2b-256 0fda736c7d648f23f6c44ced8fd81856bc2f7d0495e13036c2b3bc3c974410ad

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