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


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

attoworld-2026.2.5.tar.gz (489.9 kB view details)

Uploaded Source

Built Distributions

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

attoworld-2026.2.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2026.2.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2026.2.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2026.2.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2026.2.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

attoworld-2026.2.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2026.2.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2026.2.5-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

attoworld-2026.2.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2026.2.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2026.2.5-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

attoworld-2026.2.5-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ i686

attoworld-2026.2.5-cp314-cp314t-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

attoworld-2026.2.5-cp314-cp314t-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

attoworld-2026.2.5-cp314-cp314t-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

attoworld-2026.2.5-cp314-cp314t-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

attoworld-2026.2.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

attoworld-2026.2.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

attoworld-2026.2.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

attoworld-2026.2.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

attoworld-2026.2.5-cp314-cp314-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.14Windows x86-64

attoworld-2026.2.5-cp314-cp314-win32.whl (817.8 kB view details)

Uploaded CPython 3.14Windows x86

attoworld-2026.2.5-cp314-cp314-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

attoworld-2026.2.5-cp314-cp314-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

attoworld-2026.2.5-cp314-cp314-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

attoworld-2026.2.5-cp314-cp314-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

attoworld-2026.2.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

attoworld-2026.2.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

attoworld-2026.2.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

attoworld-2026.2.5-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

attoworld-2026.2.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

attoworld-2026.2.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

attoworld-2026.2.5-cp314-cp314-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

attoworld-2026.2.5-cp314-cp314-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

attoworld-2026.2.5-cp313-cp313t-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

attoworld-2026.2.5-cp313-cp313t-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

attoworld-2026.2.5-cp313-cp313t-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

attoworld-2026.2.5-cp313-cp313t-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

attoworld-2026.2.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

attoworld-2026.2.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

attoworld-2026.2.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

attoworld-2026.2.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

attoworld-2026.2.5-cp313-cp313-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.13Windows x86-64

attoworld-2026.2.5-cp313-cp313-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

attoworld-2026.2.5-cp313-cp313-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

attoworld-2026.2.5-cp313-cp313-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

attoworld-2026.2.5-cp313-cp313-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

attoworld-2026.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

attoworld-2026.2.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

attoworld-2026.2.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

attoworld-2026.2.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

attoworld-2026.2.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

attoworld-2026.2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

attoworld-2026.2.5-cp313-cp313-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

attoworld-2026.2.5-cp313-cp313-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

attoworld-2026.2.5-cp312-cp312-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.12Windows x86-64

attoworld-2026.2.5-cp312-cp312-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

attoworld-2026.2.5-cp312-cp312-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

attoworld-2026.2.5-cp312-cp312-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

attoworld-2026.2.5-cp312-cp312-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

attoworld-2026.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

attoworld-2026.2.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

attoworld-2026.2.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

attoworld-2026.2.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

attoworld-2026.2.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

attoworld-2026.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

attoworld-2026.2.5-cp312-cp312-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

attoworld-2026.2.5-cp312-cp312-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

attoworld-2026.2.5-cp311-cp311-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.11Windows x86-64

attoworld-2026.2.5-cp311-cp311-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

attoworld-2026.2.5-cp311-cp311-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

attoworld-2026.2.5-cp311-cp311-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

attoworld-2026.2.5-cp311-cp311-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

attoworld-2026.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

attoworld-2026.2.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

attoworld-2026.2.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

attoworld-2026.2.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

attoworld-2026.2.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

attoworld-2026.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

attoworld-2026.2.5-cp311-cp311-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

attoworld-2026.2.5-cp311-cp311-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

attoworld-2026.2.5-cp310-cp310-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.10Windows x86-64

attoworld-2026.2.5-cp310-cp310-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

attoworld-2026.2.5-cp310-cp310-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

attoworld-2026.2.5-cp310-cp310-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

attoworld-2026.2.5-cp310-cp310-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

attoworld-2026.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

attoworld-2026.2.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

attoworld-2026.2.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

attoworld-2026.2.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

attoworld-2026.2.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

attoworld-2026.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

attoworld-2026.2.5-cp39-cp39-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

attoworld-2026.2.5-cp39-cp39-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

attoworld-2026.2.5-cp39-cp39-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

attoworld-2026.2.5-cp39-cp39-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

attoworld-2026.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

attoworld-2026.2.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

attoworld-2026.2.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

attoworld-2026.2.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

attoworld-2026.2.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

attoworld-2026.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

attoworld-2026.2.5-cp38-cp38-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

attoworld-2026.2.5-cp38-cp38-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

attoworld-2026.2.5-cp38-cp38-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

attoworld-2026.2.5-cp38-cp38-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

attoworld-2026.2.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

attoworld-2026.2.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

attoworld-2026.2.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

attoworld-2026.2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for attoworld-2026.2.5.tar.gz
Algorithm Hash digest
SHA256 b5ee4b4491a783a8a4dd037debb7b3a1079a7b2989d699a330e1889a456aa42e
MD5 7113f57f0cf3fff27fb17337e5c945cf
BLAKE2b-256 9b54984ffb0c90903dd7d75e290123156c4e09cc54b543b5927a03a3d13f6189

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eea68f43824f9ea591028abf8849c7164f6d89a6a89278ef87bb0ee29455ae0e
MD5 2102f7ff1b172bb200a634c2ab9f3fed
BLAKE2b-256 dbae448b7ec5de3558d6519b7218fb99e64aa9374c094ff59aabbbc934f1db1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 63ae8a50c1bf639704bcce046bb66f6a930d588442ab255379f08c7805ec48ae
MD5 3bb77b10146fe9042c4f2cb32b4a44e3
BLAKE2b-256 c0aa086f75be7a8c6f67daa6879052c241deda0a9c931ef2830a72f44eb0edc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1854642639e75746fd2d7377be22fd58439a36c552a8209830347ad5ae81b0ea
MD5 b43888f1eac3a382f2c5e22e28bc7eb7
BLAKE2b-256 924d03c42cc105a5b88c0f50bbf8195d232a3c394a9d0cd9bddc2be7fb2972f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 09c8eda2485d7901867d51b2874110f1c38b6b673f1cab27b37ffac9bd59b712
MD5 489f0b0537e73e8cdbe530cd61cc79ca
BLAKE2b-256 e1782259003b05212a82b453937703604fe342e4baaa0a6eb508d77935271bd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7ac6afc304d53215df7fcc15731f87060d3715de60cd3d62d69d276d0f14e50a
MD5 ae2722c0c98c8cc53704a282e1875f6d
BLAKE2b-256 f0fbd979a78726b45aa1f6f5ec1394b77261af686328bb84f432a604ff9707a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3b9ce1e627117d70030fcb92141ce821cfcfe702d386972c681e4c88fafefae6
MD5 0024e179920704dfdb0aa34827078328
BLAKE2b-256 d95d3f73d0a679cfc0853b2560726aa71e4a1f46537dc58afcfd646b87a64b12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5475cfa174530fd437ea0ee0a6bf7fa490370adff8167e069933cdc468aa4ee9
MD5 1c0a384e9e892cd905ee93281a1a36b4
BLAKE2b-256 0786f585027942ca51b90f3af085adcd735bc1122e8a155215e71ae5ba114162

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2e3e68aeb10b4b40edb577dd6ddae4662a59d65ada2f53760ea3f4d64dbfdfa2
MD5 116a8f546dce81cce6da5baa19bbe886
BLAKE2b-256 b260598ce480566d34e4177ce3c0e5dc2bc3a8e0cc45a71a49306676be399b49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e2f9cf280c441ff49f452e1a65e6b31c2420fd953c701de85ed92347065df576
MD5 f5ef7b4c2c3328c965510be8cbe4cbe4
BLAKE2b-256 a51ad5c501d3c7eab4a2ba0c8350c3d05f638e6eabe5f607d0ca37105cb23cf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 02e1f0fe72c44273da6955641c791d8e47bc5db21df94e31a884c27ea23f6f9e
MD5 39bf1d8176159f3a1e6dd8377a0fca97
BLAKE2b-256 126d5e69ff8de82886235dcc6c1e6f099dab7adb060d65966a7b7fb1a27d47fa

See more details on using hashes here.

File details

Details for the file attoworld-2026.2.5-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 25832358e8ce8573f4baed5468491a5395b2873646dc6aee2769a4eefbd35265
MD5 9bab8e3510c98d7735988495a94fba2d
BLAKE2b-256 5d296a679c26fd869cabc954e7d2fd2dd3762cbcd7558a083aa59d146b6c5b6d

See more details on using hashes here.

File details

Details for the file attoworld-2026.2.5-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bfbd6f10a0a159e27b2c34ef61736646b7dee057f667689b1246f3abfe1ff232
MD5 ccb155713b5f598edd3f64e08c135473
BLAKE2b-256 52d2e061acbbd1bfce7848482d5f7c0a5ff3b6e31604423a2751d8b4af004d2c

See more details on using hashes here.

File details

Details for the file attoworld-2026.2.5-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 70619106120577f3417cccdc9a6c81c97ca8b691cfe5ace41ffb6d7cbe98fd56
MD5 7733ed2357a58e6996677dfb0fc9fa24
BLAKE2b-256 81e7b911aaad66f7c611b20286bfbbb2a493f975c6b123edfe37200f44a3b1c4

See more details on using hashes here.

File details

Details for the file attoworld-2026.2.5-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b55e4cb36604488daf9fb62bcca2ed2044ab43c15bd22219c7b91e6d704bb13c
MD5 4d5125e00c483ea45be7cd1694826020
BLAKE2b-256 e43c2022b94f0083e788ec21e62a41e61779dbd7a57ccabb70020c8c6ca63bf4

See more details on using hashes here.

File details

Details for the file attoworld-2026.2.5-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9e70aa0d85c6dadcf016c8b0cfa566bc68ee9cff1962e1dc5a1403082bcf5c2c
MD5 56773a5de84afaa41df2c857a8aba51e
BLAKE2b-256 33bd08373752a71aa5719f1c4535b540c80922b9d613af38e974276fb3ea942f

See more details on using hashes here.

File details

Details for the file attoworld-2026.2.5-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e361d7a2a4b0cac165a0b13e5c91a79652783d809a923b06b41a506de022ebbc
MD5 92809fd03913b97d7b18c833ad979fbf
BLAKE2b-256 cd890c6627ffcd4d51ab2e211978bce6132961e604a240c3405afd2cda9263c9

See more details on using hashes here.

File details

Details for the file attoworld-2026.2.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d7a01bc3ad8681f014d422dd25c6d66fd553b9dd233be91e656fdb389a1b304d
MD5 319ea4004b9cc848442c1cc15d7214dd
BLAKE2b-256 68c1f3a741bf797b26a2b6abf11071449b026ebc29f634e6c97a719b8c4cf332

See more details on using hashes here.

File details

Details for the file attoworld-2026.2.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5825264fcdc53bc9c296b176fa0af510bdd8375091c1cab109a06ef40d0c3717
MD5 a47a1a17a52b735c708260fc53aafc08
BLAKE2b-256 b98ca12ee632f131a78a160df7f11e5eaebd9376b0c8e82988b3747933a56edf

See more details on using hashes here.

File details

Details for the file attoworld-2026.2.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ac9e8279b1bae9c25a612fbf7926d876202965284a8f98d19e0d4b85cfc61b85
MD5 b9b4729a58fa25bb5844fa7b953f5eb8
BLAKE2b-256 8c5aea65f05e61cded6b506a2f7693ca76591536f99d9cb08ef663124cb1a35d

See more details on using hashes here.

File details

Details for the file attoworld-2026.2.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ddac6e4f79c85e33d337f695d32802ee3f66e10a65ab781abb785f64b66dbfe
MD5 7cfa73cfbe8141f366523c07bc9fe62a
BLAKE2b-256 858684b19ef30c324cf58ebf4c0956d3aec8c9047181a2eaef6a5e0f549425e6

See more details on using hashes here.

File details

Details for the file attoworld-2026.2.5-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 17e453ef0823538a5d733ec327a1863268a58d3ddd6c42d6662a12de82b157d7
MD5 5b8c779f52844dafc4ded2dadc651b59
BLAKE2b-256 e1316d65a3c3deb1c4c8b4adb0b608917ef1e15cd3f3806df9aea892047cda01

See more details on using hashes here.

File details

Details for the file attoworld-2026.2.5-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 ce4b45fc52843bfbde4b2d8177cbc30f64f2108af618ff34685dce917be7e04a
MD5 3c3b9ae5a0bb023d5e7acd7d3a8309f5
BLAKE2b-256 ef9e2d069258132e1dec54aa0bc89624d35ba8828968c0b6d4b011183f5e3fd9

See more details on using hashes here.

File details

Details for the file attoworld-2026.2.5-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad279c45d323d959157e3449421fb80e6a2ef7af36690ab58c41d13d836f2731
MD5 a648dca3462ca5116fc4d9e931680fe9
BLAKE2b-256 51a8ccd9ff6c100f8a0c5035ee8d57d08df91c7a02a426fa3b64aba537588053

See more details on using hashes here.

File details

Details for the file attoworld-2026.2.5-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9ad0e53e006bfc97bad5600638a0a9981929102d25b9ad29fb585c48cee343ec
MD5 c4094ce210bbb3d2777d5ec88535fe7e
BLAKE2b-256 85a8d39fd5c64e0859940ab7d51e91a7918ab80b424fc9db2e28dde0139613c0

See more details on using hashes here.

File details

Details for the file attoworld-2026.2.5-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3489658472663055d45e6567029d9dcfd7b8be4190d5ad48b4180acd3fa5f0bd
MD5 d34a75a259a51ba6a1130b1ed5ca75ef
BLAKE2b-256 3bf450939d65626d9aefb8e3ef3eae09a2cd2e3d3d0031853ca8d8911e689d02

See more details on using hashes here.

File details

Details for the file attoworld-2026.2.5-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 109012de60c26d6da5d120184a9f4e3d706f881a6c55ad31c29376c58013a941
MD5 eb8593ee7e332264cf964c148550ae5e
BLAKE2b-256 1fb03c74229964379cf753ec8872ebb9ca71947c12a4cf37b8e7921fb54704cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc011fa0129181f7b2d787066297573eea05a8a194813fdabce28a89271d2e69
MD5 36726c86886423749c105d702b63b509
BLAKE2b-256 d38269e117566e921321815bd3bfe3fb24be999cb901d778c11a3022d15d952b

See more details on using hashes here.

File details

Details for the file attoworld-2026.2.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9e290d17212b3a2b55fb768d3a54559ac28f1295e0fcfb83499632524f9146c6
MD5 81a936e7293a4ecfdda1d7e377b83273
BLAKE2b-256 eb6b1ebd6d5f7a4c89c726b2650888be8bec35b3f48ddf1fbe764c49820a5e50

See more details on using hashes here.

File details

Details for the file attoworld-2026.2.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 016221ef71c9e4d3c4cc72b3031df53d46a4035e1ef611f16c4abce84505801e
MD5 5801f61e6aeb2f8f04a4b7d455fe28c3
BLAKE2b-256 92152484af1593883b9da21575c0ebbef2efaa8195ce7a93dfc60f9764ac7cab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 108e3d890ba5dfbcc89bf66aff2ce630a5624cd5cd59377e5047dc0478443006
MD5 40ac204f852b0c23115789304ac1a20c
BLAKE2b-256 7cb2b0b9474a32ff694b4cfc1af5c2fef910970bba7db28a55a8bdb2a04bbb62

See more details on using hashes here.

File details

Details for the file attoworld-2026.2.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8a59d1bcd6354d62fbd697d411c781c4c9155568067553dae115f9b0ca922ca8
MD5 879c7d2d4ecf724357032feff5f6b5ed
BLAKE2b-256 d97d8b35c8c920a902af0275db4108c17012ccd58c9cf84dcfca3134b8161174

See more details on using hashes here.

File details

Details for the file attoworld-2026.2.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 23d2a5b3c4642339674d30b5da5dffcdd95462a737ddd1339a1819e7965987cd
MD5 0b0e8eb5c58670f10564a052d66091e8
BLAKE2b-256 f1c9ef95110d26d0025a6dd04edd331dd31751f556c0f71b99a6070b089f407c

See more details on using hashes here.

File details

Details for the file attoworld-2026.2.5-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9eef9e768b9227f73860ccccd4424673254543653b8d23f867047eebd2cdcef
MD5 459a12b3646538e7c29cf46cb8067bbe
BLAKE2b-256 564e8d186cbbc3d01014d01d0177d62a3e1e686f70b8db2c2d823883b27c2793

See more details on using hashes here.

File details

Details for the file attoworld-2026.2.5-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e8819ca66fddd86432385c7266f305f793de9c54c30b377986792829e20b3c86
MD5 643495887b130dd77ac0c751ad3d0d9b
BLAKE2b-256 1c0af96814911e718ba05d726ba7bad517a064c38aecc2e33bc90daaa44d5a37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df7d6b84d7b1ede379b63ff212338b608f43351876627a14caa592f41728e149
MD5 24d1f7bd5707133fb22c87750b49397a
BLAKE2b-256 19c856e2d4c501478427928577f130062828bba247cd30df381291dc7cc1ce6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3fa248550c56b1a145ccc7e8502faead311fa23e5c6c65fc1bed69ca3db6564e
MD5 a3b4ca5d816269e3496d15026a8a9f0d
BLAKE2b-256 6296f9022dcbf0c43a2d87a93b68c791d2830bab381170c02e8112cda0517c7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 86cc7f415e39a1151dddff4cc49c151fa921e7dc2fce371215022155d47bfa03
MD5 82fb6c50a0fdf23a193401758e23d120
BLAKE2b-256 aba0b0b4af020497e48847283b0c1f97b6a37b4ac51250aac215ea427b274f33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3f06a30d2621c47e43b5ea6a524b2722c28e41ae94b3b09c3691ac4f0a1cda2b
MD5 6cb3da30d7eabefb91b83e1087b5f0ad
BLAKE2b-256 9d871a95ebae37799e4b23f6c525c64b24b3aac242c7648bd5d762f0b0e13e13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a6ff7130ac5e8c407d0525978d871954c6234172272b2dfae5dc2bebbd8a9a12
MD5 536df8d723ca800f2a9ad4cd233849c3
BLAKE2b-256 a793fd4fcbb7b710ebc2994a3dcdbc473b6bf89ac9b3179a3d571ef6d5f371f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f341d15bac74b85276ef3604086d6db3d80b9320cf33ea773e7e75b05f7ec527
MD5 87f0de548aa91b67adb7d5feaf8accab
BLAKE2b-256 364ce760a3896f0f8933206fb1e2442684bfd0a2a268e8c8e6d2d3eb690a0acc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 381be05f6968367cc9631e436f8eeb32798c0863c6e097f6e304db9d7d2d94d2
MD5 85dfef01005e0bd8fa8edc4526f82aa4
BLAKE2b-256 640887273ba2a2e9ffed91bee318197c6c82a785f2dd9c4cd978e04d961a97f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be349203da03fe56de3ae4db22c7ec38a057ed6a24c6e87c0f7cbff5565fb99c
MD5 d2e3b7f98e926116bd0bb8033d597be8
BLAKE2b-256 fbe55421dcd4c9ac61626a037bcd1fd01732a2d259d44035b25197c259ea4c73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a16f978b2c998a3e37cd43389d57dc139e64d8e6c3c87c0a9c1ecde092098b35
MD5 c6acd8a3d26aff8336d26eca96bca613
BLAKE2b-256 e51ee4c83817fb9fff7ae2f7cd2a18c02b70a895ad7330c4202c06099db05df7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a3493dd3b36ce77498eb1a914d280ac557a80c9de62958b534778a6921e6222c
MD5 7910fe1ea686620a412a72077999239b
BLAKE2b-256 58db30a4536d3aa930b7df26b2be9b060a12f10dd82927e337a8fd8e2343b97d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9c587d6e6068989e71b2fe430e4a69d6cb7c323aeecb5f4c60beded856366cd4
MD5 3fb4a5a6e55e28b0e795d86f2afa2de2
BLAKE2b-256 ba84d07f98181670dfcc0d8968216a8ab345fddee6886b3f44eced0c2a23ef86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 160dff3b5adddd0fddc34a963ab5a3ef9250f5629a42fba8b1b8a8629ecd26f6
MD5 02b12c1559f9f286e7166eab8f91b0fb
BLAKE2b-256 861cde4acd1d1d4e013b8bd7c95025bdd4c5bc841d3b2bec2138407a4e39c2ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 31715c6d0534b9676e662d493f6e6d9eda4303ebc3f3b1429395bf9df4d400de
MD5 314d051d0393d56b6d9cbe79809af550
BLAKE2b-256 8e115f4e9fbc97689d3d4ee5c759883458c24e48ba92961d9bcd9d8d23f012f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe5b5e2d806ec0a7021c91e3c821534343322a7a8765b59ea8b9afbf513379a2
MD5 1b0e53134365ed8fe8e1abd409c83c60
BLAKE2b-256 9277fd7f94fd4eb33c8443e170f1307e9703f5233165554ee96df444daf854e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b684c78853a96c332bc209d31dfdc72758d285454e8ecfe04a04ef2663d71572
MD5 00779cb75556f9154f2cea8d0138452d
BLAKE2b-256 3e38828ca0cd48977e620b289ff831c9b74798e25c018df7fd78399c3a71dd69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 df3857371461a8fea3a0adde27d0a19c69d093e5d8f1807d460887e68d76f212
MD5 49b4b7ee2c4331a46c55c989090c951e
BLAKE2b-256 2a5af60a981698bebfa34fd4dc653a81866d4769dffc34fd6e668680280e583c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d0e27721f1cbecf95184bdb8c3a78cf89f058bd29816c1091b67a9e520bb96bc
MD5 cec3f22ae8b810526db2aba0520981bb
BLAKE2b-256 68b8a8c3e9516d93ad03e02522bad17423e115eb40426555350ecc02d9fc2859

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7ecdfb34df83366829190ce1fc812285bff560754a95902a20ca1b9ead94af16
MD5 119b4685335d07530e6252b6fe31e9d2
BLAKE2b-256 63236dba327225a2ecf124dbb5c7b1fcfcd6b168d5aad2d74470a8f334c2f388

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0b6008d6429a0099b83497c82d8a53f01db26f53d3cccac966b2b5224209979
MD5 c5a6e38a604cfc4ab388924661f0d224
BLAKE2b-256 3499b03361acc075c47bdc2f06c31b83179b9e1e8bdf00640785bb8927433296

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91e2bf6b5fad008e4016d43a5826c3d1c17f8669936ab7741b11675239de67f6
MD5 46dbc93e2893f43ef9332104164b277b
BLAKE2b-256 e20635b7e5d118b74a10d298da966eaa38c652e5f867f200df116a03016ca03b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c832115b88ae91ecd5a8992984098df614dfe9b6f8aab484a7fbb61aa7dffb8c
MD5 6d21a2175bbc361146bd12c1ca366a08
BLAKE2b-256 8d674d3f7764baa081b286eb65512cd0879a06615628c21d2c27a1d810ce7331

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 17ea8e75a8b864c3a67cd1d738e228f824d01d62912a9573d12f5245b13159bd
MD5 ab5904d72cf58a9df22c3fc875b8a428
BLAKE2b-256 b9950788334e4a8eb745a5f7623c594b6809d1f034e6367bba9af561faa27290

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 698f6cd367940abd178c98a38b5001f794aa9f83b7e278ae0d43a183d4e52277
MD5 6a974ce4c5bf76739ea6eaaa8087bb15
BLAKE2b-256 5508795da80e027024023243d898389fed3a615b9d6241492ef3855e138fe40f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f8ef95d9f574cbfd6063cbcc1dcfee58223042057b4c2ef5bff93ce3c2c3f395
MD5 0b7ef0c012e3a7c5367be15d8b7cfe1a
BLAKE2b-256 dcff00c974a9c63e13dc5a8cad7fe46d07beeff4056964b5fe4466b27ff1ccdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 84c8d3496f0a282391b340d4b758ca11cf7386ce11b2bf59163407fd32d13b6c
MD5 a2f545ff093751171181a49f1445e122
BLAKE2b-256 b04ea157bfc8825262266028d241078c621f8ef9ecc4ffe236127ff6cacf8f01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 252d957a0f0857ef1b33ded57b1b1c9c56b66779f3d28e6286f02c3749d7d195
MD5 12a4f9c90242624c0ce7e5c54c5a2241
BLAKE2b-256 79ee4bc6abee3487cb633db3dd59e5a04d8ba31de351831df25e642a178bd508

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ab8a664a8be772f3dadcb8d4dc47c408f4b7d765a222fcbcc20d25cbdd5968e
MD5 b0ae29af76a56bc4755c42accf001742
BLAKE2b-256 0601218324a271d0ccd728ccc8f5ada0f7dfa0276ca8f8866e09f4d3e284b699

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 55e481b8b7675d3662d557ec67ba49601d61282f2caa0df4b72c51a25053a13b
MD5 7e3611a3e8e836279dd498988f146956
BLAKE2b-256 86ab5fa4e57d267ffbb494914d2c2c01bc9aa2888555d28e229c298499329303

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3bb5f1b651fd7c6975bbebf20fbba2d7496bb2e12dc1162ac7ca4469752950fa
MD5 1efda6490977443f50b2d9e89bfc906d
BLAKE2b-256 e6960cd63104542a2f7b66e0b9cf2ae5e966708026048d8d0b384173e37bd752

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b3351e5f65be6a381ca20cdb254e2dccde36ea1c875e2f0fc5c6ab17553ac3b3
MD5 9f8fea5748ea5558bf65d38d8b3a1a2d
BLAKE2b-256 f6bbe78c2771c440a11ff7a51e59efc0f706eae5afe005714c0ef7392a89a7e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0dd996a81e31ea0d5596eecde5f362676cc56ec3a7a546410db080dda5a7f64b
MD5 293327f3ff9f2a5f86f65a33f3741b86
BLAKE2b-256 92bab0ed42f060ce28ee69a5c407d65f1899893b7975baf45af8424ff4906ec6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b73b43cd7b6c51eccc01dcbb818199b3d60d4d80d49c44036d1ed01a74361742
MD5 d88e0855603ffe740d2fb06492099c4d
BLAKE2b-256 374327cfb957a864f85fb180e03569a661fb51ffa61a30462b2453151c62c159

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ea2156d72e69b0c245575c0ec104691a014689960b23447f7e8859897af6cf3
MD5 4a36123357e4ed6ab37e3fee4c28a932
BLAKE2b-256 ff76424e007edcab1e92bd00c344613f53ffa423babdce5b3bce0f3505665886

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 57733f6086e794084245087512c86b131191f8279d15dea0fca1e7449a6eced9
MD5 1e36781d9ab1ec229f395f67ef8682d8
BLAKE2b-256 25330425073b56e5ded1a3dcb18bd50dea8e6d95bcf25423edf7c3fbe5edffbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6bd4169a8de3b0ffd69122d490026b49de9f6b44bfde2898eac1aedec4cc7a1d
MD5 c7412127247dca77ca7102290c1584b2
BLAKE2b-256 d144f02231347a06c0024ebf3416907e0bae1614540959d449a01eb6c9c75e75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22ae5840a9471860e8e1b07e4454fec03c07b0a0b836ad762ffce7580acf3b46
MD5 ab10845c2e820395b7c3d81f829d5a5a
BLAKE2b-256 4ac0f0bb7a5cc84534f1667637475024f40466043c693f7699d4134e33332073

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 85bce8694cb43e4aa722741f44b49766221f443e3956b6f5c155425ef86cd0c1
MD5 c7ebe74df6d58dba9222897dab0577d3
BLAKE2b-256 8fa8dfba127dba4d6ac0a3bc0a527d78561360ac2c88a4ae976d500f23dd25b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 48e6e566782d4fbf79dc2e13c9db03b0598e2a56229369c1f9247599845fa460
MD5 10fe3e30d52b3972d9d2da151600bc26
BLAKE2b-256 31c8ff491c14555c836dbf33abfc28fe1cae924c598e66586ca9a6269af68116

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9132eed346161bc89cff85c5dbac0697926ce5240a6c737bb0af07fb5ccca75f
MD5 acf4138330eeffaee530cbbcfbbbc6ca
BLAKE2b-256 9e931083f5c20e092542d101d864d72d7920acb5fdd42473903f42e13d4321d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 42aa451d47d8f9ad6d5824a93fea1e95595173b00ef4e7a8a8575ea1f4ab0ea3
MD5 12e715c2add703a48326710b0c41bc72
BLAKE2b-256 d4d487a9468ddc74ca3c62c730ffb4bfb5d4c1d69bae84e02c5cf512a2ec7ebf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aad6de551c304aecb258c4ae33532eb07adf705801fc25cb967ca91ff8f2446b
MD5 5a29925fd9795e9afd8bff40742d0d49
BLAKE2b-256 dfdf00b90ea3bb772abb8f094b0cb050f17b75648e7e2151ecd318de0a131bac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5ade5571cf79eb8445f9ddf2850e2b3bf4b487e48b9e50f157023cc5a33214e3
MD5 3194faf9a1026c83012182b34351d008
BLAKE2b-256 9e5a17ea67025c9114de7a1200ad82cb43e9e328a246b254ed6eabb06bd14cdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3d86eae8e54832da65a269414461f6ab4c4d83edf793524a3888c79633ef78aa
MD5 d5afcade3263189c474755a51afec064
BLAKE2b-256 d39eb91f5976ff332693489cd927837fa9b161be779860c1d769d8cb81eb2d3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e8489ba605488c11e65419a79b7971c8725e8016b113e0c18e704b6a01ab8426
MD5 34734279a07dda1dc4b3f1b402f5b292
BLAKE2b-256 7a964870a33152f39b73b37555bc3441ecf8f9ec4de7d86ba3bc375a76bfd403

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e3b387fcb162d21c96737ad1081e9bd4477778328e51fda02435fdef20923828
MD5 6bb5a7297a80f30b875eb05420854965
BLAKE2b-256 b41c658eb020c182bb12ba53401502e1dbc0fb01e525aa026e8b2d0d1e0c0d6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d6ba7d7a0d143c67c36ada350ebcc17576f6451eaa7c55e6d59b48cda512c28c
MD5 555dbddf50ac988b483674989c324801
BLAKE2b-256 d5fb93f473092360f2570e2e3b23817b12227640065a0d66de8faa2917d3f9fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4a63ea357038ce2f06ebd29d71c86b07f7faf713e2c7350d313d78fa4f68d67c
MD5 4d61f158c0b3674105d64fdb7ad0db3e
BLAKE2b-256 e4448383bd6aa76b8bee0088e2db3a3dfbd08c06f2ab528630614b5c956bacaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 20d14f9985d534ebc48b0549bc58ff8ac3eb09835106dacc499282c7049eb95c
MD5 a2d2e00e23f7c5342772421d57e29639
BLAKE2b-256 a944e066c7ea6b1bcd6e7880b3e18226556fba3b62245b0092cc498a453deee1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad367a0e8e07027131227ab6b985eb496648dc924f1e10daab38ce269e133542
MD5 f38b41aa7e56b5d618c917cd4cd5ae5a
BLAKE2b-256 413837ac176115f9260874fc7eca6f67fbbbb93ca95fb3feebbce3af8e958f83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c07ee6ac96e3290dc4f5ade963eb9c259c70472324bc41cc8e09eb7595c1a22e
MD5 776a532ccb475314a5b263b199dc3292
BLAKE2b-256 8efd9dc8149d5be09e297fd1f8651f8d028e83222f774191373f9d50d7d9a125

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 15a022b50a23480eee2481aa299d246b6a87830f225416b3a9077b98becd4ee3
MD5 017eb2de6961d80752d081b942607586
BLAKE2b-256 7a6d5c371950114b63291ff61eb50f01e87d919e865b0a25a1763e99d34afab2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 49b1bea5eb4be0fb02ad0030797f18c4a54de48f049eeb96835d6eadafaabdbf
MD5 4e320faf9955918da41d0c05ce61e847
BLAKE2b-256 ff7bc8c70931e76c3beec01269f9a05debe3ebfe3db55c0fc20f75e7910ce802

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c1db5e901269159615cf7c8dfe8d1c7a26e56d221ecd3b2cc29c7ed498079f22
MD5 c810fcee2d4c3ac8966e6b0f6a23f51a
BLAKE2b-256 398a82feb593a0f18ef90c4edda8cfe612de9602284048966273520004ab8311

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 563905ac93d0a4d417d0cd8c993f7848bc9c5f2a7953af83816704f9a1a03afa
MD5 e86e7c0b120725303ce4893e44773647
BLAKE2b-256 551319583a32fbdd2b2bf7e4ca653647933448d93809fdbced0d31d11b9cbfcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8475347adeecebbe4e2f7809a7b958a084200168d6fd2ea96980ef1e2b89ac2c
MD5 d58d7635b234ccfca089d0772a726759
BLAKE2b-256 e8c623f60f167f44c7e551dbf7899a08b60e897bfa747ab88f8dabc65947c37f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1bfebb74fce1a01bbec8ed280aa0561fa37d01390387b472420421fadfb6f11e
MD5 9520351fcc873c2a75004c23edcbb406
BLAKE2b-256 50a628fbc9cd261da7ed86a68832f0ed2726269a9b7c038b1cf7c423641161aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 963b63f702ff6263e07ea0529f89a0076f7a3aba4d9ddff7b3a4b6c3379b1f36
MD5 385a52cf697410e29fdac55e79b0e3e6
BLAKE2b-256 819fd48d6b7bfa34a3d7d2dbd9997498e0a2524aaf859f81b0ee263d55e38d59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 46b6a8a5231c6564a169a7365d01468b43091cb70eaf4a3d5600c43a36ffaf7a
MD5 2d248fcf3b01a7355a72252a64672802
BLAKE2b-256 d424b6e3d33f1f19f11c1fb5ddc077935fbf4089518db64f60352830325f30ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7577c29b1c9dca4c024f53ccb9053bf99c721af21270212c087261f2cdb13434
MD5 c373f8bb42006bc00575b324aea4936c
BLAKE2b-256 f3b90b92ceccddb132538a7976b8451d1c281e615f81ac3c17877609b49556dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8001df7edf21610ed5f9d23e3382bf447cffcb9370d26d9290359bfdc5b40c84
MD5 8654bae44a6f6af43cb2dcc26193efdb
BLAKE2b-256 8ee6aec5f67b79b137810091088d3d7831aead9762e8dd661d0753eddfebfe97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e35b440a02f1142eb36013c9d09f984dcf9205b57cfdfbfac76f1cdae7498e29
MD5 c7d61cefbe786701d113b1cd253fdd07
BLAKE2b-256 9e69ee820190abee77da18b6c99b6e16de8b070ca1aa4931eb23ed2cb8a3668a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0d465c184331904a605adc5eba7aeaf43617f0d073983c28bd253f8d6333dee0
MD5 5728a40c3e26fc7b5ba4143aa2f31f6d
BLAKE2b-256 57f6fe4addf7f503ce77b960bbd17d203b9e4bc340ee2ab4a6818d3c741ebf78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b6068c2469891539a3868563cec3acd6e8e38b9e2decfdf9064551a2fc901f1
MD5 e920b93b0f16834cf82b943d4056fb4a
BLAKE2b-256 486171e0050be5662b33b1aa69ca7e90350740123098197869266ad9bf996904

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c034f844fb43867cb91f8e3a6d35c4354964dd6cc45f4e6bb67c9ea49629d55d
MD5 9a831996a55032b59fcd37ecbb935479
BLAKE2b-256 c8529b5d2d64152a581dcc8e12e9587e745dfa5bd431c4a34ea77821c6f43735

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d06cf60c78090056a5ca8ccaad5829bc31e0e25d7e1b2afabe19dc0e34748154
MD5 40ea08b2c0fd3855d640bbf24075971e
BLAKE2b-256 24970a6e86ab2f3dd6832773005b100ca0618b3ced1b85ce6c59e3b63bd4810e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c0bfb10251f234db5274f76e2f849d307641694716761fed263e4f6a3e466ff2
MD5 d3661ac88f125856cc3777b57b92f35f
BLAKE2b-256 371b2f14739fb2f945e480aa20dc7d9a327c0d0ab05bad524ca0938534d5ca8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4d550b688789f3843b1d8a22b698bd036f065c9ecb91e67c3f73b3097b192975
MD5 45f044d973cb0a3335f2c523938099cc
BLAKE2b-256 03ce7be2449c47b91431897eb51d52eb69915a749f63be7937ce7750b0ce92dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b85f942742e58e019d97e466f8b49de9b6621dd21022a05cb30c5e38fa3e0839
MD5 648dedb3d4b636186a8bbeec7211b8c5
BLAKE2b-256 05d5683900d6b761d0ad2469ff1914d22ca8d07f9ef8496e607f56ff6c15af90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 50cd743b865408e7e0c37a2bbc5c9621db2a68000f523aa6e9de63cf6cd5216e
MD5 b9cfeeda88e618f3e07730b897fefd9f
BLAKE2b-256 c921781e178df6a1be3d7d062215c07bf31d01d2ccc467a7478e2de6b1aa18d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6801659009b02021e9141ebedb1cab4403321554dcdbfc1735a5a3bf04536aa6
MD5 a2d7156a40900eb056686f1c74f0efd5
BLAKE2b-256 c5a677e6c5699b0f5bd6e35437289127251c6cc7046d3dcb5abe02084e5fb8a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5a67e7b903785065890e060f1e482703674df81385860d569be9fd1eb6943306
MD5 d1cec6ce2bea8ac6e9ebb8aafc175b6b
BLAKE2b-256 f64252b2d083d1bcff694e20e101c71c1c47adeba44fd8ef0a66edd2408a82eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 641e1de970e859b4a8be3f6ddd63075d1538b74f842b9d5040b053a4804c6b66
MD5 f0fec776d04fba7fde6340f9d8d988c0
BLAKE2b-256 75cd73a87adca43568b2a11c387e0f5b7c8ca850f88f80f89a415a2dbacc7f04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 64bae44830e2b81d8ef8bf25d3de44f5980aa7005c60bdac519675748e9586a0
MD5 0c4bf9a4e767d8856c4a06c6159737be
BLAKE2b-256 1368cc977e6f468f68371499f7f437db532dc0f51cf0a1380839b32dd0b9cf7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ad279fe68dacb4878ab1c555052fa0015220c8c19d1ea565bb57bedc789e60c6
MD5 d52a114d9459721b4164c3bdd18dc473
BLAKE2b-256 35ee2dfdff95257386cfb2b4391520e24c52590e371582def8ae0175eac0bb9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6a9de90faa9dc8757290a677da736819f3fd7a5523f034f950e345cfe59519b5
MD5 8496c9016b94ce0289a552b2d9916fa4
BLAKE2b-256 4389705bd69ca5ebb3b4cca919206cdcdbf119dab97af655e706eada29ac57cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 939210efaf57d0d66ed3ea12eda2de6cafda416886fca629d45e425cbde35055
MD5 91d3b4bf23bc0d646c51fa0a9e5f6976
BLAKE2b-256 47d03a3cec28253b9c3793377b4fe93dee03c30f3e3c5159e02d981308dc8761

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