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.29.tar.gz (209.0 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.29-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (744.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.29-pp311-pypy311_pp73-musllinux_1_2_i686.whl (773.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.29-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.29-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (600.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.29-pp310-pypy310_pp73-musllinux_1_2_i686.whl (773.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.29-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (747.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.29-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.29-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (600.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

attoworld-2025.0.29-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (572.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.29-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (569.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.29-pp39-pypy39_pp73-musllinux_1_2_i686.whl (773.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.29-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (834.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.29-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (747.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.29-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (571.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

attoworld-2025.0.29-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (595.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

attoworld-2025.0.29-cp313-cp313t-musllinux_1_2_x86_64.whl (741.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

attoworld-2025.0.29-cp313-cp313t-musllinux_1_2_armv7l.whl (831.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.29-cp313-cp313t-musllinux_1_2_aarch64.whl (743.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

attoworld-2025.0.29-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.29-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.29-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.29-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.29-cp313-cp313-win_amd64.whl (411.4 kB view details)

Uploaded CPython 3.13Windows x86-64

attoworld-2025.0.29-cp313-cp313-win32.whl (396.7 kB view details)

Uploaded CPython 3.13Windows x86

attoworld-2025.0.29-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.29-cp313-cp313-musllinux_1_2_i686.whl (770.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

attoworld-2025.0.29-cp313-cp313-musllinux_1_2_armv7l.whl (832.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

attoworld-2025.0.29-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.29-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.29-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.29-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.29-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.29-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.29-cp313-cp313-macosx_11_0_arm64.whl (521.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

attoworld-2025.0.29-cp312-cp312-musllinux_1_2_x86_64.whl (743.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

attoworld-2025.0.29-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.29-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (600.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

attoworld-2025.0.29-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (720.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.29-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (595.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

attoworld-2025.0.29-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.29-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.29-cp312-cp312-macosx_11_0_arm64.whl (521.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

attoworld-2025.0.29-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.29-cp311-cp311-musllinux_1_2_i686.whl (772.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.29-cp311-cp311-musllinux_1_2_aarch64.whl (746.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

attoworld-2025.0.29-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.29-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.29-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.29-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.29-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.29-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (568.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

attoworld-2025.0.29-cp310-cp310-win_amd64.whl (411.6 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

attoworld-2025.0.29-cp310-cp310-musllinux_1_2_x86_64.whl (743.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

attoworld-2025.0.29-cp310-cp310-musllinux_1_2_armv7l.whl (833.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

attoworld-2025.0.29-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (573.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

attoworld-2025.0.29-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.29-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.29-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (596.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

attoworld-2025.0.29-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.29-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (568.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

attoworld-2025.0.29-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.29-cp39-cp39-musllinux_1_2_i686.whl (772.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

attoworld-2025.0.29-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.29-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.29-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (725.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.29-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.29-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (571.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.29-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.29-cp38-cp38-win32.whl (398.5 kB view details)

Uploaded CPython 3.8Windows x86

attoworld-2025.0.29-cp38-cp38-musllinux_1_2_x86_64.whl (744.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

attoworld-2025.0.29-cp38-cp38-musllinux_1_2_armv7l.whl (833.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

attoworld-2025.0.29-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.29-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.29-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (724.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.29-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.29-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.29-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.29.tar.gz.

File metadata

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

File hashes

Hashes for attoworld-2025.0.29.tar.gz
Algorithm Hash digest
SHA256 a793b66532d26ff7e1eeb4d5420bb34703ce3e828b9cb2458883848fe33e6a41
MD5 33d7696fb317bba1920ea0d8e94a8e57
BLAKE2b-256 b69d626cb00ee105dbc0c45b20097d660c76e6c64a69b40c0fe0493dc0ec2410

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e124946251d2fff56667862527d37bfb363bd7fc36cdbddaab39b2044abfeb90
MD5 610c830a6558db831ac18c9d73c9201d
BLAKE2b-256 5e3713a646313cc2ee51a852fd50c4f86338bf7ce21e4b77f9a92d50a8f3820f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 92205f5a4c08c66c1867d55c496449a1983d447fc62f630549e5c689605f8b4f
MD5 570b19c1a01e91f334fa44c10c0445ed
BLAKE2b-256 70255e96d5bbab3ce75ecc6f8c323e43fd1ded755e18bb5098cb4be9d490a00f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 06895ef89e825d4ed4ad5ee40457b55816883970ff1f1af698b6ca11b3fd21f6
MD5 74f502494974802478afef7acff29ce2
BLAKE2b-256 793092b04604829f58348d7ad15f9891428be340dc6f4836cab899e9e046fd8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5540fe555b5297dd28d535136248374223d8090ea3420c15029ede74dbd426bd
MD5 0a696321e4303246a959dc9d166493ef
BLAKE2b-256 dd46de30eda9ead9c7b6f995ba36f9df5853bc66ccee76414329de78760943b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a29835094fd4ce1422ef81f4355b5e003f8a6e0011f0ff3487b332634c08f9b4
MD5 edfcf368b566b90a5ccee8a212fb0d4c
BLAKE2b-256 05f8e92d9249fa491d345d44e50475f96d5010fea9ffd118792f2a4e9303e664

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b56ba979c6caf3c73a5879eabbaedefd3bab99b993288e1a4b13d93e2fa6b1f8
MD5 d8b9ecc61f7a013e08152b6f5a5fec3c
BLAKE2b-256 9d212f6c97a50259b481263807781c1a0add57f539d1f1c937472e8bf9a609a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0b430e57dda03ade0d05dd635ad8ebf6e78e7b00627ed667e3318ddd78638911
MD5 a952c7d99a2acb713c9c789e1aedaab4
BLAKE2b-256 3361de6c5aaf890cb2e9ed93a1ca2d690c44487cd7da18659f8d2220316d5d62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2b75e7b17f24cd0df2bdcef2ba60804f5e896f88c61e9b6333a8f1533ba36d53
MD5 3f256beac29908bbb5343f3c0f0874e0
BLAKE2b-256 9ee34365f5798a888122961375dbc92c118abde4a5ff708148c007dfc922ae3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5d78037fe4e583012935475e4eeda2f664313203ac77d745c26202b5bd31d39c
MD5 96a9fef550de79db52fae58443a1f34a
BLAKE2b-256 b8d74e92e241c6a3afc6f55e05188178cf20a22f514369174e8f7819fbee4101

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e84d8dc34cf9268b7354781fda4d76be6f604596e91dbac28ca4d6b9e7ca81ee
MD5 ccb57d89b0b7d864efd264cc9abf6f3e
BLAKE2b-256 30ccee66c46799c9ad54d800cd517a9e48c0b098e17c810ea36dbc2d5b1b09a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1d72a23f075e8021246ef59667d66718c225f5a76110a10b38858bb49ec0f630
MD5 2746c0fddfd3f950a7e1044862b38d24
BLAKE2b-256 167d9ec2d04ce6bf81e4b3271c3dbf7593b6805fccffc3c8570fadba2e5dff15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 94d9279a4633c81e321786399b738ce30a970480ab7a861792d1d04c4b577548
MD5 24ea047535fc5f0a754c7ef4fe48e7f2
BLAKE2b-256 b315eb2d6f4bc8afd65b8d1867b23ef83bc386d1685077b6f3f6c1367cc351b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0e16a5ed5d3bf5e58d0f30ec59dfb38f8c1bd078fd33605e9c09796e7215a95e
MD5 24413ceb4adbcea47163bc2a52b3fccd
BLAKE2b-256 c354f268b0acf0568555655b88143dd138f9072c4e0e1e111f7db13f564cec26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06ff420c5936e794ae7a01af9615a06d8d017671ce0ec409f3f77c066eded173
MD5 2726ed9ca4cc56c4d5dd17480fcb7bf7
BLAKE2b-256 cee7f1b0fd4fc02e4e9016a334aad1050ddd6d42480ade85223eb205d72f919a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94ffb50a4401b87f498886b7cf83aaff841535c6cdb2762aa1490cd7e98e4bfe
MD5 83ed86c93d7082044e9437f9cb9c4256
BLAKE2b-256 a4e48a0f27218f9d80274b178067a1d38b10d75e148316bb863e15fcbf3d3cc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b3703f0b7255be59f0543e0fca32f8ea11642a21265d63e7c3ca4911d7a2db68
MD5 c7a85ba28b1e4edb0989dd1cdf5f6308
BLAKE2b-256 fe8a294746b9bf2159ca9d1ab492d37c7d80e9cd0c949fc1eb4cb678660ffc2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 220e3d24512f399198a653b65520ad89c74f6818095c0c5979ae314bba7cccc3
MD5 12c5043e86c05aa14252feff4eced4e3
BLAKE2b-256 0fa1660a211d0c29600e620e3fb809c07cc5c09b16c8f2b9e440fef9f23a429f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8dab284e3b03ccb648d7f9c0c9f05f8a78265ce97d18db83a5e4599f912746f5
MD5 6768e71aae9f25d67fd50874d4c8014b
BLAKE2b-256 c614872cea88695961cb16eb73e4c350f5365329d93e91e7ccdcb6b5037fbfcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e5646c680812aece46e6b568f0a229e0c9f16f6fb90e52a9c917b075c8f8f12e
MD5 c31074ae9459d0c491697b6ca557af73
BLAKE2b-256 26a1fd2bc891ceb0de3d9dde683cd3e55fd16b09c7e237770c25e0ab00b0b1df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5a26d5479f1550d8f6353229945fcb40b47b17c86edae6c45c3517390b229587
MD5 33b697abf7d8539e6a991592afda1b54
BLAKE2b-256 e989dc1d187f5be878c610ec958b130159ebcc88ce9e3867ccea7473633982c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff8d18e6f01a831b0f4932da527f68e153195d4b3ef0f7a3a7d4f2a7aa1a4e6e
MD5 a2a240cd31a78df697485eabb44e8a80
BLAKE2b-256 0559d0c429a7f55a048758de5d3ba611f590c04e97052702b952bb6275b77a2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9d45d3f9df49b9b2c11ce28f132ee264eecfa4d50e15f8c4e1bf487a3a80204e
MD5 15e628a5e204bad272ce18234f634f18
BLAKE2b-256 9a8328d85331b01cc9bd1da41aeafd6b8875b3173015e304fa5e13622d8fab75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c1269867091877cf97e84b4730018b527c586b2c548650eef888a2b985e24a33
MD5 b479158e6d76ad48c88c8fc7b85c2ec0
BLAKE2b-256 5e035903711c1e71d456eb6650cd0204955a1234e8e5262cc30a0d3ea5967e7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 043c8fb1fcaef6bc56e3644a14ce6dbc3c692cb6be5a7f0607520cd2038a73bf
MD5 3c66d6e841d04bc2d16951e2cdf3ce45
BLAKE2b-256 43071feeec22a601eba921bd1295ef98bf387ea308e9243be0a0c1f0e7351d6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 97c4f8d90fc9f7fbe5abf03589cd92a8ad67e1789bffca6acdb7ff4b981313c3
MD5 aa55f4482d5c0b7ea1e3f7dc7e940327
BLAKE2b-256 8653479746a343077ee5615caf7723875e1b61483480383cf8bf478224333ac2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c989576fa09db4819a6d67fcd88b7a8e06c0f552b7658963802c9dbc2af2acb8
MD5 e6e0823abb1d4ab6f91ae17cdad1c04a
BLAKE2b-256 a7cffb543404f303731efee671f48b6bd4250865fcf22d8272c4476b9c7caf3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8f1b6c64bc4a02b04d8f2a022cc7627136a3b94756de8c8d8a3029d4dbc11946
MD5 f42f7303de4757d4a44d5ae6413c9bd5
BLAKE2b-256 869b596f508aaa6c34110da019d2f672dab0f3273dad90b069a7e9075115b018

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a67ff7b3fc588179822d8f741d694100d6ecef13485498ad23b9e964339c58af
MD5 b22832294175911a8f710ce6100d9bab
BLAKE2b-256 b300bb1c477d3cd70b6a8715d0c122420832c2bd371c45af3742d7739f638d35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 38ee9e2e21e632ffb5911eedb89173fc15d4f8a5b211ddd6e7246a72711f0a8b
MD5 57637259159fb108fcc42a54c557cf7a
BLAKE2b-256 56d7fa7dfa2a48409d548e78a004df549d17f8e276723fa472cde12de906c36a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0317fda94e179c875b636766679db4e3a20293391f985a6f9301dc521d5a52e5
MD5 b56ac818518c4d11633032ff21e35418
BLAKE2b-256 43a9e7cb4951861616848b969d7081d1a417818544a9b033f04ba27dc28aef79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 20e5bb1e64ce14be2d24fd5caa465d6e743224884d2a9289ee04bb071ad37f29
MD5 15055744d4a15b477a928f860d38914d
BLAKE2b-256 32d0e52ab5183a0249ba7596d8a9cfcf1df3127e21de3e2b8fc892106690366b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9e42bf3daa8eff2d4ea92997ea31160aec7939598b9a4a82a6845488520fbfdd
MD5 6807e84d0a1726730a767f4ed4f1633a
BLAKE2b-256 a55ed2698cc6d1900827ad84d4431593cccb9e44ea783b050a1beb495271c11d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 06a0c448a83410c56c97356215aba802afba4ebfcffe29da1c2fb4f66dbe7b30
MD5 f038b23f0706b1621b270b0058458969
BLAKE2b-256 1a126fe14f888118520d033da7f7f1e33b57c67e862666aae489483f44fa55bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 52e072bd9015a5626dcc8e10023929dc454c7fb7baa115496236850df0233b9e
MD5 f8e2cbe4ca8416d7827b53faf42d5aea
BLAKE2b-256 71efb7402571a6f52117287147f375674487021b52d234c2efa6c942122a910a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a0e7d881b76bd75bde9cb3df3f60c2de12859139fe5a03c32f64e1b442bfd947
MD5 93bbc1110e65c36c88ff844ddb3c3b4b
BLAKE2b-256 aa1539a38c31a723e11a88a2a00dbf7b85c178c4cd40a76ae7b6ef846d66f80c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 58f39a599620c922ed3cb057cfbfd16156ffb81749fe766eff2afe189cb63a2c
MD5 7cc1de02cd2232cc99a5fe0e2c4e701d
BLAKE2b-256 26d889515c034edca4e303e1100ec82958554131992e14993bf7c99b7561f425

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2d97e2555e868ad098de151da48bc99d1810af5261e749d42acb2ee59825113b
MD5 72f6ae1a60e1e4dd9b6f9511ec35d37c
BLAKE2b-256 d31a60c73e81f59e0a094e9ac293ab302a1f4d6d9ce7e4478104bb28e49f3e59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 04c3e9095ba61eb098da51c8927f3d90e389aeda14acb241ea854328471e6abe
MD5 c8d51ade0a80062bcd534f3e8a8e74ea
BLAKE2b-256 14458181a93310943794d2514fe31f59d8a26edfdbd35ddf463b7c299f14c473

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bb1b807ddd11136b164de184d2fd22da1a55014d814b26a8878fcf7da3fab2fc
MD5 ca9a0ee210e4368d11d9a9dfffc63a2f
BLAKE2b-256 007ca96400cfb4bd7e8db035dfafa5d00d86e8afe0d001978a89aa7b0dfd83c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 dd362fe42abc9ac7a126f1bd90e843ce3bf1c3d45b1131d715c951b6a0bd5543
MD5 909adec763febaa1b8bb1b0a2dc9f055
BLAKE2b-256 f7798e21ebb3c4439eba4c659bd9a2ac6be2e790e1d35a3b077557247f22e62a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 81b510c731358d6db0d0c805b75e0b73c7e02bd12b4cfab6fa693d503a538172
MD5 d0d4e8038fbc924351a73e1dadcb8ea2
BLAKE2b-256 b6cd2a7bb715524adeecb504d26e30cf019ed85e75e786e36538d7df3ebd1fe5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ae305c125ef956e8cacb83b0850f465ebdfd24e9b9544f814871b51b3b1ddf21
MD5 c7a06e58e1f6531e323db043a5e355a3
BLAKE2b-256 7a0dc5f2cdf80bdc73eb56420f7ce88b16afbed02de2801d6591d8ef045abe84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 464a28419e19d3e712076b635c496cc5ec06b338047a56e120d40f7f2b13e5ce
MD5 ce30cf19a3532f9604641610d0e97398
BLAKE2b-256 db705eaf3a6e4834c602c25325c9366e101b32b3c16edbd4ab98f938a9f54ba5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6a63478b37927d0d914eb3b98d423ec27adf872c2c47765200778f9102d85c32
MD5 6f474aeaf39c2f81fe96472f59c91779
BLAKE2b-256 2eb80bd1df96b94c067793dd2d379571a83c33588f8b51e188c72e3dd6a97679

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f57b13597b8f1c4091acd218d76fa59ae95b68875c8426ac9eccd2e14b7cf7c6
MD5 d2a76a675f7f54c848064016485d6adc
BLAKE2b-256 b553360c01d06c2eda77f878a80344c882fe21dac20fa36c5315c186130b1a66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 30c7c70e66064d3b0d9e66528027cdbcf636302b5d5fd3c3eceff7ffd8c4fc8c
MD5 ac2be68de76641d4978a8b4c4ab7a161
BLAKE2b-256 52e9d36a3e21862a16819585ea9dd8a60639fd5230ea860ed3efc9b635a5bb9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ce1db75dded444a64cfb81505043681ca641abed7ae625cce36d8cf1ffb9cd79
MD5 7bc285ea6e5279dfb8fa9f0e489f3692
BLAKE2b-256 5cd328ce656c7a3dce0b180bd0ca3aad80ed1f23ed227c8f8230efe95c0a6549

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9f1d55b78d7e83fb959c93368e7787c49410329f0da878d69cec8ae8cd81a3c7
MD5 c9affef15cf2ca6e12fbd789edf76895
BLAKE2b-256 3648fee112efd42fb00afb3bfc56fc17a33422a71f680e8ebab8d6ac02c907ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cea92ee73c367cef96e24325271af60e6e2c20bead314f58333eb50496f0152d
MD5 48dbbbcd4041a3e75044696a7cbbe776
BLAKE2b-256 47a2faa31867fdf9b8344b2a540f75a164b44389c4c6bec074a388d3ad280bf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b3df03b605377c6a3890a6db13de7820aaf6ba8a8d9ea7b7add9a9eeeb0cf0ac
MD5 a5b55d01e2fc1774a0f72c6c807e3449
BLAKE2b-256 d22b1356ed02541f9370f086e9f2ffda4e16a55921645f0425f45685823e5eac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 283b41b0dd7f201f677a220c5fef82d3bcd8775e2995a99c97d4254cfa97ec67
MD5 c38a81e76c94d04f2ed4a1c11917886f
BLAKE2b-256 5c62f297e4ba2575c7ee48b773659284105ceb854d772998d35553782e3f7398

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4ba2d514c57a5302df81fda463e3903604e01f752a94a45ea23309005d2ebb40
MD5 2cb124dc48ef34e15e0c06ab50f16c4f
BLAKE2b-256 2049eb61168ac7e0580b6e73a852b7381944cdb72c0886568f7a646a7b5d7b41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d725d3691f58d336844fe686760ce86ed0f6b10d2404ce08cdf65caa2d8b9451
MD5 740f1f3e0d870a2bd899cd849abdb416
BLAKE2b-256 253bac9508a500deb200941403cd748ac99e2bd3a3e399e7bdfa7bd35f0923c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a78d2dfff6175651503be7742e01aa46592ad8ca2fa306ae5f701b3877f5df45
MD5 e8d080dc518d6882d5af12977429e0c2
BLAKE2b-256 77287eb1f41d254c8319b9ba62c983713cf8f12bd0b165cdd1edae221df0dcdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5cd355fb0b890617388b1e0be6b1963400ac77c350e20099b9fbe0cb26fbd5ce
MD5 effec1872d7ddf697284b05ce822561c
BLAKE2b-256 39070a926042c41d8dc66f07a58e2aebbf3b2f107ba16f395d590572f9b6c059

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5575efe577c5e12fa8aea666efc293b52e70325e26f467f494c431e3886ee66c
MD5 2a55e9237f16ddbfebc00404f0b326ca
BLAKE2b-256 8a86cdb69ddc9914fea292f089ee1dd50cd3eccc23f267bfe24763fc941ae494

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ad85f4c6792f0f7d7a68bc0cc68f389f800e407a38429edc2c1a3ddf2f750044
MD5 62ceef851dfba22a97c91b9b05a01cc1
BLAKE2b-256 c8b64c1f489fe92a664557b8266e6bd7a966b2ed959491f81e88c4d2c204e1c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5b2e2b1c7138309b973e39ae0bb73f03252e9181f94822dbb47b21bd906a4917
MD5 f2285c891cd0cb6c68ef92d82ebab136
BLAKE2b-256 f902b6041b5c26c1d138c1b2d9581c758a9c99b1c34cc09e1cac8f45a4ed5c0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a0f702d9f4fbf5f72eeea149bc055b4f5d8a48c3199bcc271134c88abd806b09
MD5 7f2dd3128969fc8c2b3b2a3c6a007506
BLAKE2b-256 0922d149cecdf857a1b117b4a2aa02a62c4f1f1885d44a473ddc99491a0ef811

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aa67ce111e0a5ce4ee61474ba9433d3e19d739868346f271561f465d6d837342
MD5 99991fed820fc4c90ba2d21b55a906e6
BLAKE2b-256 92e8ab0e8bae79ebc114cf06c77ae94a3bc6b177425a55f0fbb6b5e6cdde9f20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0492228ed8a0043c1b956f5fb3fd5e8876cfc2201d9ae6c9fe957dad23f92e8b
MD5 8a8fe63ddf6ea40b6acaac756987ca2b
BLAKE2b-256 3589969c3980d99f535a939dfca987da810e1db9c9f34f57de2db8e78d3d4250

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 070f9811dbe3744b60693a67da01708ccd4d55a30df0875c699151f6436bfc5f
MD5 e769402aa88f074e4e7b25ebe3fdd148
BLAKE2b-256 8eb63b2d21a82ccfda6aef8d263c8d8fd21a30260d6904a4d6c4e41453982daf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8fd67a06dba6711279ad8fb7926491e1fce5f305cb8a86fe4ad0db44aa0288d9
MD5 54c25bafcb1bf6c3b57ddd652ad2cd06
BLAKE2b-256 27b98caa236824a136fde4caa50c4282db6d79ad5f2ac62a9a5f48f5b3e51ac7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 518d109a6f0ad44a626775e82ac78818a590cfe914f7d07d0803a4da450cf13b
MD5 cf62523ccf9e4c4a33a04f04eabb58f6
BLAKE2b-256 c9eb1cc62295fadc66d1d8046f76836a6fd5904b34b5f687db105885ecdb6ef1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7068bb25a1af95f3631fb685e690b2ba01bb938ee2e19cd146628e7a1c8623e0
MD5 e247b4303e8b48e41119e1c8d3812ee3
BLAKE2b-256 62fed5450106d70bc9be133024bd0fa0570439df7f9c9a853e8b9eb88729dac1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e1362d2108173e3d4e14efc0d94dc584633c9dd5c2f74238022469360d9a8e68
MD5 f4ab6d8a95642d527533c462080c962f
BLAKE2b-256 8f9717442cb08b91d5aa431413ad590fb78bb9a471fa5bb11e1d43f5446464c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c30ae5115bd7edb2ef7cc79c49321fc01e3cc873b4c984c31c006f6a23fb1d0a
MD5 ceca06e6f708cb4212d024b12a950cdb
BLAKE2b-256 41f85ec5a4530ca016ee4cab65ba93d5321a9e2eb3144b601c6af44e3b572b21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 079779218cb7cde97612f43ca7fcaf095b26a4a6cd14037dc1c17eccd0427f40
MD5 8e06c72620cbe16a50066ebd6af7d1d4
BLAKE2b-256 99ff6d4cf57999dba4ae5ef8db600aed814fb5d1d21c9255ddd105806b1aa25b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f2aa146d9c1ef2e4f94ec7f73ea2f6a9684eb248198382580a15fc458d2ba70
MD5 dcf835e24bc7bcbb2625ffffbec5a0c8
BLAKE2b-256 873ebeeb91255ad581a9365cb5d309d73e8c70da6204b255ae041b9dd1bebcfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3c982472f1cc62041368a7164e18e08d836b04a3d03883f50ec5997f2a65c5fd
MD5 f6c1e73295b94f5808295996145b644c
BLAKE2b-256 be34744b970dbd41da4572c3f20e318cf3a7bed94c79eb5d267b31d8a0b68b6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a4b9b549abe0532cf97e9a8f1d63ede325e3911039137402cd243f4614e97a77
MD5 d547c914203228e47f2da6469b665308
BLAKE2b-256 298c5801d95ea452ca5f0ee66921269a7ccd27cce74b91136b6f54bea29bce9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b584c0e3d3a11ae09a5eb381fa9e855f8354f52475a1dd8d13f4d5a819d059fe
MD5 1e9f5a9bb3b770bad7185231b151a4ea
BLAKE2b-256 8a25d4ce43b71b36c88669762b587752ebbeb752edf4a148130b1518dbf0b0fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65035c25b33147eb9b50222413ac343ddb6c4529d0a2954c3fe8f3eae9a4e350
MD5 bde0a87a89ad99e6047efab15c7eadf4
BLAKE2b-256 b78bda95c228400377bea5b2f0327dfe667760adc3cccf5d60d63b6ab74095e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cd9cc35b35858c488346cf447c1c59b969d05d33099a062f7d77b9ff364a44a9
MD5 49d2ce79fe031a603edb8187cebcafec
BLAKE2b-256 4bbfda4dd1c23105c5cd7db31e4a5fdf23242abba5d113cd1e1bf65abdbd6590

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 68d0133ecfb902910c85c26f1891a5310c086426084308634ea75361058cee39
MD5 f80db8ee782138f16d6fc5953fcf89a9
BLAKE2b-256 7b7a99af3d9e15954ea189ff3e40d818c8a9396efca3d615c5bfaeb77695fc2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2433249cdda646deaaf9b0a8ef80fb282a372a99a3d2790072fe762b055baf8a
MD5 5b7e1fea27dc286c222feb1691123bd3
BLAKE2b-256 779177bd1ada6db3e97fe4bde3485d6cde972944265e8d2f2a03ec40e8444405

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4366b8273b3b282d229a7288b3c71b46ed2f2829b34dd13ee5a311ce5844bc77
MD5 4d2cc6a859431bf15bd258ecb97ac93d
BLAKE2b-256 39b866f1cd7c5dd0c9f2fb3a842b73e41c4d4b9c33a357aa58f00b66b60210a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7cba80c32806e4a790404f3c264014f598510718f7957a84832a45069e94ed69
MD5 80d136e00e245505c76d66e8a167840b
BLAKE2b-256 0d7d33a8c8644f5698ebd1b5445166e38e90b91aecaaa445e56bfd9fe69b2099

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1274bd6efc9152380e73984b791e9909f76d71deaf9174cf1edb54563644087f
MD5 c78332643a5e4bb09d4191d0ccf7f255
BLAKE2b-256 da512d48564bc19976f2f50d5248249c1c961b52f1584921153fa72b186d92ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b0b2427109868bbf5a9fb807b81791b91b5db2b9066ffbc446b7def4aa260a31
MD5 bb5db345b9546d810017ef3bc2f1e175
BLAKE2b-256 579a59caf4fa3187bed93f35a30fb8bd67356a2d80b593ce187126a46fa671fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2eef3cd5efce46e66441f5dcfcc7c35866f9e8c9939682e7a892748b9bae4085
MD5 bb5a90e8cccaed37835fbfe972283d5c
BLAKE2b-256 94165d60aad8f48074197f68757c23cc1dba4fe00ddc5ecca3679fe7e065566b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 15c5594893478622efdc526735b76df2b0b47db2bd8f8d4f9e9023a016747550
MD5 5ef5200143244e85ffb7dfd151bd2cd9
BLAKE2b-256 258872f370d4413665a38a3368a9c279e233f0fc03e0f2711a011d2220a10b31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e2831419ef6ae7d9ab19f621183d4399ad4ca3b962573b4f874fc2b4f9a2ffdd
MD5 eb31bea2df89ac1e4265bd589f073be8
BLAKE2b-256 a588daaa76b4980da8e6b0058ee55d15b5abd1d3c2eb1a5ccbc7aefa5e2d99d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f2edde09a06de06a8aaaac93c8acd144124bb7b4a2027a50dad0be31baf260aa
MD5 2557dad57c503635b16c680c9cdf46ac
BLAKE2b-256 4b793284b6f16a8de442cb3e0b863d4eedfdeb77843eebc8199eeede629ad2af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 53280557f7c58eef89bb2e26e3842e796c57716bd5513ee9f15943b7aa0f92be
MD5 58e99f126e33896a78e371ae80b1ff2a
BLAKE2b-256 2a43dfca471f2e92d2e5cbfcff33edc3dc40c6dab9dd8ba0284e64b0c68ab412

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b908df6f0414b0e1c3f9e5d4e656766b2dc90763f1a74936349293cec32a99c4
MD5 05aefccd63cb6688cff49b7823f8d0c9
BLAKE2b-256 76282f9cbe3317871461de11d0dea62b3c2d135ea006c22c6e204ace50907242

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3561b06e783f4972b912d89bfdf2c79159a4c2f7350abd6c7fb9c3d45f79f9f4
MD5 40fa7ea7c9302174620f81e73529b60d
BLAKE2b-256 410040aea941a742dc5e6da972b3f243afcf3e8667f05a3d6ea91b96dfd98f67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d46e685e0b1935e80983dd00f8b91d4b82ef6865bac3b60fdd0a63e47be9df9e
MD5 46d73de2ab1c59c88587e726d9e212c8
BLAKE2b-256 7368c17563c41be87fd5defa35780ee6463793cb2a61c7ad2711bb395cbcc965

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e897b51dc6bb62e3032801247cb0569832738b19d7db04a4a98f940a4480ffb9
MD5 b098136139a4b5ab9c16af8a92db0859
BLAKE2b-256 fb852bd788c4df6f7da0928378adfaee20decc1490973740f4f814d10431cb7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6fbe63720a31a443306dab1e88f6ca24ce14be227cb5abe01bb92970c0a40984
MD5 0b051851e588a5fa268279e29ee72dfa
BLAKE2b-256 696940f3fa10dc97a6bc6cf7d6205a2cf0d0c6c9ad56a168b3a7c7c68b24800a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7e482d42686468fced93cbdce8f0b3c6fbe1dd46906e96ee91a08d966ed813f1
MD5 1df759617425dcd91b21085d9b90cb2f
BLAKE2b-256 8bc8e4931f3b99a1aeb5d57fca3984ed4291eff590ca73abb82e47dbc016bc0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 217dad9846973bcd2a39c2c720d8ef7a77ca70298b92682b0516b8b6436aacf7
MD5 ef00023891628145ce3331351623f691
BLAKE2b-256 5eb52dfe76ab4ebf21a2536cf8a4f543a414dd2f65209e4357ab9e1b738315a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 af0e441cc1e6f6c9431da137de3b37dc4458a8efb2d222d196ad48a3ae7fd417
MD5 b817c9663aebdb378634cf5dd2d3f657
BLAKE2b-256 b0a7508c34a79e274418f314c649a7e1c397f3ec8c9ba140addd0ff23bf5cfcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 64317258c7112ec441bb1b9b8362dd496ecd81d8bfc86bfdfcfc5089d5a38421
MD5 e2571001ce937de2c108a104e87359d2
BLAKE2b-256 4ab8a35a9fe78bf8c4ce03e078342e93ddefb0faa29c66aac27006e3c4c23abf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb043ea44c9a70a8bd0ec962680212a02d90b87fc472a565a8ccd884f97c79dd
MD5 7eefa60306639363f7005369578690a8
BLAKE2b-256 4cd015420c6c0cc1264f0928c29fc17fc33e09896c41a48c2c4d66d696e015db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 523429aca0646283f90173ce92a438ab9783e16bf42823744062e8167689dd24
MD5 b744fd6941c643386663f6ac0fa3ebbf
BLAKE2b-256 2e52587c81a89c8130fbafe9815045209e7adf7f794cd40304beb15d16fc050f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eb1c220951058ffbab0cc8fb5cbd4149df051220d77158ba8d6f775750de20ed
MD5 657f1fbf3e10e5ed9ec09247ea2933d5
BLAKE2b-256 d59c47f3faba4bdab15fc4ba489f227e20c78dbc3b1584f552dea9fcc3bdfb0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4f8649898027cc1d4004a3fefbc72163a8b9d62ec11f769e22d7da9f65f81166
MD5 1ce864d8d55bf6b79d3989be9a896bcb
BLAKE2b-256 9a911ac4d63651b42b2b5d3f5a115d91674fa644ce9587aebe843d18a1ee175a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b043ddd327f21a2992c6e20372b396ff32fef8dc8c8420ea7e55cbc7245912e5
MD5 5f2d287ee0dc52c53fc360cfdfac0b9d
BLAKE2b-256 05caffbb16fbc2772b018c2c855a837c8c2d560300652ebbe12be00d5b9c3fb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b393ba551724a94306d707521c28f5a75bd8db3421320cb5f5461c8444f913b0
MD5 d423ceae60b5bc2ce2f3fe12ab746063
BLAKE2b-256 3ff952c0cf17f6a7dba383d287d75c6b961d0de2d226745ee4e25fcbb43f8f0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fcc6c6cfe4a0cd0632cc0fdd0d392a673ea431a95e9cb93f6bddfb189f51e8f1
MD5 62be96a4bf7b90b9ddc557eef306a2d4
BLAKE2b-256 64eeaeb712c40349d46ba7a2e1d18d566c6cc8e03993e219b777aabe30eedc4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 76e0fafc2e8b02019b459b87e92fb5c3e6531ac46d30665e7cc50e12a1370f69
MD5 ab7143b96a8cc33e43daf1acd1cfc43f
BLAKE2b-256 763a757be0952a498b318302b8f108d7e399bc68c50888026f4be0bf116e079a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bc8cb595fedaf6cad7b09e6232c0fc2f3d0cdde8a6ad73e9cd51eaa8db011e42
MD5 f17ec20edd19a7a4a338fa9fe54c3290
BLAKE2b-256 f0a52c13e43822b66058f64c8334d87e5738a2c2e64b65aa8f5d734b6fdb8777

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3f4caf3c33dbc0ef097493b3e9a8ac50976b7da73fb409396021c8941216bc88
MD5 6a83e103db9c40a43aa7830f71266245
BLAKE2b-256 1e8e19e9a7d9314a92aa181302195bfac594a11c4b23ed4286d41bd4027e44b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 95079748cd81439a7efe85907af2d41a01b9e3353ad156a4716d0c26f3adf3e4
MD5 0fce80ddce3f9abcc64f2f179874de1f
BLAKE2b-256 64d9cbddfd115d00bdc82c32f06f3d2ba04b8ad38cd8683015411415e4c58715

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 650660035b75e0440adcff2bc1b6db51db6c6a0edf8535afc4aac00fed2df6f4
MD5 c45d56836d2b3b9f051ae11365526606
BLAKE2b-256 741eae4dc2582783b0f3ee92bc938050eaad01e68f5b64a049447223d2bd123a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 68f4c2ca5269a0efa3b3475e359ee06b4bd9fa12257fb89b5fc3191cfdd829f0
MD5 74303d5aab38cc9509ccce419b1681b0
BLAKE2b-256 57b9c8dfd30544105d390f58caf8f86dc367acad78a98989a3e30274a50ac3aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 959842ebb983cf8c0b52f385699f3374a782ce713408d08feaa02745ceb4c48a
MD5 17c139fb2cd8da9706f618f9c5882c8f
BLAKE2b-256 568d593d544130822e0de687266f832b677822dc848faa0c576b6343d782187e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3fcd705c7c1ec9055d307255e8bfc8909b6003c6ab1892ddc268c6e4f1b5a9ba
MD5 83119e1f07e8a9e8efc45cdd19050fac
BLAKE2b-256 41391eae0494e413cfc953430ac4c5476f93838d304eaffb2e0835e45e75126b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 246f4202e85f6c4b644f2082fc64ce197d91645fa5f534073fe261c97ae61dad
MD5 315c9cb865f7dc6b15190d0ad46c1da2
BLAKE2b-256 b96b79ac9cb7c38c72f277c8741618ddd3bd0cf96382fb2acf3761899f246e14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 769e3637985cfbb648e98ff37ef6be67952b39b20a07c7694a30f22e35879cf2
MD5 58073d77b562e07f6bf22a8ef8b02e7e
BLAKE2b-256 ff97750d86da341d8089c253d06022d9787d02400e1f21538a1201990af3a5f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 40c6dcaae7f8a2dd069a46e168354c1f2a1067162a936b8c2467c413ec6dbbb5
MD5 ee02a82da7ddd8423e11e1ac1e72268d
BLAKE2b-256 d6ed6bfed6f2f6f31f412bb16f8e1ed4ebe7ecca304a3e1e0ea6435cf6225a09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a5ebc433d606a9bbb28442438bd5e3a88be5ac5bfbce3c84fb96956c2e0f7a9e
MD5 3ff5309903a6dc35406316692cb6c56e
BLAKE2b-256 91c13826bc7080aaad5a3b4fabbe46a0966536ae3a4b3055519037a25865bc06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a2f69b644711c4b128e21862651f2119c30c9eec0c1619752681ec7078a194f3
MD5 43a2319452f996f7896131e3882cd5e1
BLAKE2b-256 de573ade0cd438bfcf84e7ffacd85837eede861ec745ccb890ec26957b7db7b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.29-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eacd62d24b79c522cb2659f543b322283310cff7d2d48b84cd938a06e67d6dd4
MD5 c4bbb91069d19b8f757f6d151a4406b6
BLAKE2b-256 1fbe7eb534e61baefc49da75f71e54077dfc991ac9ce6b223291c85b3b0c1060

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