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.1.tar.gz (485.5 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.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2026.2.1-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.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2026.2.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2026.2.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2026.2.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2026.2.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2026.2.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2026.2.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2026.2.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2026.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2026.2.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2026.2.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2026.2.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2026.2.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2026.2.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2026.2.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2026.2.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2026.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2026.2.1-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.1-cp314-cp314t-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

attoworld-2026.2.1-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.1-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.1-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.1-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.1-cp314-cp314-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.14Windows x86-64

attoworld-2026.2.1-cp314-cp314-win32.whl (823.0 kB view details)

Uploaded CPython 3.14Windows x86

attoworld-2026.2.1-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.1-cp314-cp314-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

attoworld-2026.2.1-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.1-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.1-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.1-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.1-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.1-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.1-cp314-cp314-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

attoworld-2026.2.1-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.1-cp313-cp313t-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

attoworld-2026.2.1-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.1-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.1-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.1-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.1-cp313-cp313-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.13Windows x86-64

attoworld-2026.2.1-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.1-cp313-cp313-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

attoworld-2026.2.1-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.1-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.1-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.1-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.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

attoworld-2026.2.1-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.1-cp312-cp312-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

attoworld-2026.2.1-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.1-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.1-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.1-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.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

attoworld-2026.2.1-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.1-cp311-cp311-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

attoworld-2026.2.1-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.1-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.1-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.1-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.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

attoworld-2026.2.1-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.1-cp310-cp310-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

attoworld-2026.2.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-cp39-cp39-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

attoworld-2026.2.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-cp38-cp38-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

attoworld-2026.2.1-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.1-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.1-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.1-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.1.tar.gz.

File metadata

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

File hashes

Hashes for attoworld-2026.2.1.tar.gz
Algorithm Hash digest
SHA256 644bf16554f24489c9d4558187e7e4a3468210bc6b1d2254b88137754f3aab05
MD5 ef059d6763c6c737c3034ff8d943d72e
BLAKE2b-256 e653988c1ce3a6d23d5e58bf1b83c69d0d24091d76664ced58a776f3dfb4bd18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a8358b12334c875f9354718886fdc26b0118c85197a9474320bc9a3d1a1fcf23
MD5 b0fb5e672f696959deab1db2d19b0c81
BLAKE2b-256 d36923170a4c5620ab940d441b325323735c7171daee85d8471d8e89c0ea20a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a290b1d211d6afed0c6697e9013fea2c88a38f9ca0c5135532539ad658815533
MD5 8207bd15b08da0a460d248caee58cd11
BLAKE2b-256 c1107019ca731fae55ac3c5189d5ab2552968ce6097ce649c97ad39ab0ff8b2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 db3845ecee20d4f32e0e0c3360e9cdebdbe03ec9630221b9c4573604cc8ae7c0
MD5 8dc4149f4ea4f66594b08c289f6e35c3
BLAKE2b-256 eb4216e161fdb427f538ccad6cf2dcbfced3a82489cda4001e3dd78f0d726921

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fd4927ecb99c0fe32b948aea1e85719afdb1f61ba5c672f5fca39ce9b4fa63e8
MD5 d98491e6bc6d2f06b00144b7205454bc
BLAKE2b-256 998580cdf8c6583a840641c460c55540cbb54a47d264870ae3b69997bad7d6c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b87c409e717db2c9812cd2d7b5b567f024cc1483c285a3ddb050a2493272693e
MD5 482b76e7a1d9398c0ed5bc31aa2b1ff9
BLAKE2b-256 bb4dcbe681f5bb55dc5f657c83fcdfb087d713c79463cccac3d8656009e8999e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 06562761bb9b7a45f901119bb7d4ae2b6766ba3d5a59a83f3bdba20c5237b028
MD5 6a071807a750e839cf2777c2a406042b
BLAKE2b-256 5832ba48761391a6dcf0126f9fe9a6163dccbc25d1e05441b0e4e2ac695edb85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3ee5567418396c728810d84dd2f2e30afbac1b1212762dc5862d50a1ac272ddc
MD5 d249e4503cfd30d5f1bc069c08443f75
BLAKE2b-256 2a20c463608818c78eeb8c55f30a700b630c310f1c96f2a4ed8ec3064de6c9d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 858e6bef54beeda24056cd08e73c0b4e6dbc3edb70cedf8e49f5a1495ec9393f
MD5 5866ebfce0261ef9a0ac280257ababad
BLAKE2b-256 ff86bdd2f4a89afc7a3a1fb7f0070f55c3d17d6169c35b3bbc5a45b4b107b2dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c704fd76b5828ca0cb4b30e71ad22e3ba79fd24a541ffa1d2a728049a06b28ca
MD5 2e0f2480b4d142af638102da3c73dc57
BLAKE2b-256 92ff08b2fa9d9d453e2cd9446d804379fc97a9a8df139f723a0ab058ac6bef30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2db202789ac7b40e6fc29062b3722ed56f69f9c22a71411690f90c0c54ae22f3
MD5 f2adc7751ab859efd45d4e0d42bcda2a
BLAKE2b-256 4a9c0da656dc9817fb3bbc7c23883a91c8dd9e03de409731b8fdc6dc9ef42501

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fc01389add633761b9f5039df48bd1c062f51ddc9fb77bf7c380d41e983550df
MD5 82c9812756b5ccaa7153311e1744cbfa
BLAKE2b-256 8e47b038388c9f8fc7dc64c5961fd8021dc79913d1d5293581667c9b0fe19353

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fcaf147c9a9b773aa5aabaf436ce168d3a7695fdcf01442f9409c7af122f2199
MD5 d0e76c5d66954e52488479f8547e5cce
BLAKE2b-256 e334813afa251d9ff351ea1aa5a96ac88fa12a6ac74dcb2ec7a694b0a88445cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4e5abb692821b802424ca414c62edce9ac03b3e12de67c4db64c55e201bcddda
MD5 b70433b15e6c05ef89803d82491416b8
BLAKE2b-256 1885d0cdc3a45e605d7b49aa070385fd69a50f2a14bb5ae494c6ba442b5ee03a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 67c967ee20c9b6bcbc994f8352caabf7a52a593cf36e50665874529eeabe27a5
MD5 fde796808fd2a01d792d4f8f6b62ccb1
BLAKE2b-256 78cbf1691c20dad8118def4172b50de7942f90f845167fc7dae584576f38851a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 34bf7e7df07f261208f9b612df0f35f1d42e38d6ff2e84de0f358e993d756ccf
MD5 9f8ed8867ab4ec124afdf5c50d3c3846
BLAKE2b-256 b59e1f27d62d4f94410beefea8c3c5ffded5a7bb57a6e4cc9cad8327919bc445

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 261a37564ab7297e66066d310d7a33369dad4f440e5c45fda16f67f316ace178
MD5 b5d0b16ba747a04aebcd1e91ffd12fdf
BLAKE2b-256 da3659053b115263f74168cc5215d425ee224cc16cc6ff0c4670b73984e4d9d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a1eb8b8d5cc5543daae190c84ed6d87b1fedf7b6453dbd5a66be1a1c70b6f3e2
MD5 1fbc113d3d883b7cb707e526f7df55b0
BLAKE2b-256 a8d6ab775fbaa01b8a0d2742a4b5c822a287747fea91d58e1c8be4746c6ad299

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c7c39218b605aaa5e4df9ffdffaf9ef5b5fea79431d38bedff0b92b98195e0fd
MD5 9058206bbe45abdfd43aab9099d91920
BLAKE2b-256 c96fda96a7e17d6fd45f9208176d73da06cc71ed867a411f44923160b73d8d73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c27740276489b359f9b0d8b5785730a43b5cffb2feab3d2a1ee4c776b0004320
MD5 aa3b619e9b97f080bfb2c6eb8d8a4dde
BLAKE2b-256 6c1afad482918f4e6035eaa34201c8707c16b3369929fca939c2ecbb2053d548

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 62aaaaf604ef24558a92f5e719b0f43d220db2310aa2398a3c5f5a0c4bda2abb
MD5 9fb69850d895414c084df23c15ed8f9c
BLAKE2b-256 c2293132bfd1f7b5fd5ed7285d3c5bd9acb51c300944dd1edc4931fe7eb27054

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cbdc5aa65749e108a1093d517ff5bd087ce20e899e6c6f9b12590540d607ed59
MD5 ea33e1bfa22fd756ab56b3957e2b4e55
BLAKE2b-256 ed2abbed414647446c750399a73e3a3d6f918d6acbeaf4f02c87d9faafb00172

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6ae36def81bf7caafe21c8337ddca54bf1618ed3293b00ac571f7c1f474b669f
MD5 22f2c409323793e0959cc53d1a8c6bef
BLAKE2b-256 c5fc66c17fe84efbb2cda6ae5c00fcf0cfecd2ba26baf685402fd681d35551c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 baa66bac69a8718c1050fb110c124b0354f7e10b71888fb96427dff78f404ae4
MD5 6fb5fc8ad9c70d8b40225d7bc0e082e9
BLAKE2b-256 dceacb7ceef67fda690dbf0517349a70a3bbd0022a8a72f7f5c40d41ef46a4f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 15ca8635b411997422f49ff9f144008198a0926c89af12e7268c0dd909663531
MD5 e42c1adcacf2c81e4bc242cfcf5c8962
BLAKE2b-256 3a70c44b1834b828586a77b2d78c959b29d3e0607c66ff1550652c813659d843

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d8643320f39a7f7172af48de3d4f5b41bb5771f7ffceb57531c9d6cedd7a538e
MD5 2d137e6edda5a4ce2466a7e8c928635a
BLAKE2b-256 390e3f3cb31be21dbce208cf887736254330c5428e167c70baadae3b93b828a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da1ca6601847b607144b0a2cf419e3d65899fe395e9b91fe2b76eb859841e714
MD5 7d6e579a410e1728b930a256b9350d93
BLAKE2b-256 c4ab8f1be6a49ad0a44bd58735a1c02735f29f6035d04b056adfaf9361786819

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f1ad376ea042756affd7bd513b4202ef324ac73d748795923c82badc2df56336
MD5 1e3baa0233e5a398ae053c3f529f64f8
BLAKE2b-256 3bf71e557a3f0f969d1b06a28be6f02f24ad07117353ad2e04c2e3b86aa47966

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c8040dbf484544f0b6803c634558dbcc1f04e34b40f928379bd7c2706b032814
MD5 f2deb4921034d3dc2b1d1bf8db1ffa8b
BLAKE2b-256 b8f0c730fe5bfea13c4cc6f783db975b8ff298054841cdeaec818cf48ce6579a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0a2627ae1c77b51286420fd8adfb97387877a44e6236c5eefcab0541ad09d20b
MD5 84de6ee4d90c6b265919723de779d77f
BLAKE2b-256 9ae3d20569578797c6302c5b5680cd5876b8ddcbd694fa1799183c14229385e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a7c4f7ee2b3a71888edb8b17ba2336613a2240a1fb312a9141ec25f56498082e
MD5 86bc33f27d09997dd1d823083f69527d
BLAKE2b-256 f9cfff694559159568722dceec874e7708c7e9bce04893ab35c40ccca4476955

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3ad9a881460dba3ae4b9ea7fbeb348d2a4c2d82dd6c917802c91e72385257a40
MD5 97157767db40012c88283767c0ed22b9
BLAKE2b-256 de5c32b038bd6335152f76a3c5c774dfd063bb4b33178c6c1355c3691504a8d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bcc52c25d2c0b54641ce6e63c59377f9c7f1b2c5927c28c502483c61c0846b70
MD5 598c0bdd77875680dd4bf185f68cfc2a
BLAKE2b-256 57eedd8449a6468eb3322ecddfaf24bedde34a56d68fe7c2e69e38fbf2fd1e24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1cc5ef724a39eab309fb5789edddd1e90488313021c578f23fe5430909c3164a
MD5 1a7ff27c3c4e032179232fe964af31b4
BLAKE2b-256 7f811dc670f30847acbb74b8b62a135d09fe0df63af321d5717e6ebab8674413

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 62fe47f4ab7aec5aee05c8c7ad24fa1a104f5bad10c6b70205266ce51d1a978a
MD5 7e7f180fcb2386121e3349953e505fdc
BLAKE2b-256 815563ca150d3de3871c2db9426046b9ec8ab0ce8137b8a58bd4f73e0f6c7cce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5da6da7f062bcc0a5f825334456eb35bfc2cccbd453cb95d129da90447a21691
MD5 95209cb4e84dbfad45e8b78209bf8d11
BLAKE2b-256 0675759369b061ad1cf5c570c7bb494f6664639a154adaad316838bd4195ac26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 063948461749d5bb8b33d7b8c353deec66620a35209e677e2f76cef3c813f168
MD5 3746fc97d13bb81244ee0daee491b645
BLAKE2b-256 91c47a23e5389f14c6f11ddb2039a08e171e441841a4bcaf6eac00c5becd855c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca6aa6706633b61b8095be8648645aa91482c6fde84d48ff8fd2aeb611d1064a
MD5 17ff9400e36a7202964a2369d1a6cbfe
BLAKE2b-256 346e4f202f9f714b33f570d4a2b257ca6e72eb27e8c862a7386ffc0132fbfbbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 025417a37417a4679df26afc544c13265cf39526051da716d0737856e4b37ec8
MD5 53eda88cabb5ecd8da5a65d2765f9979
BLAKE2b-256 2cace0b606938d8fda4d93ceaa67502c5249cabc6cb8a6d6397234138d4cd688

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 498e74124592bc588d561c409f524b46b8fb132813aa088677b176ff6f6d0d3d
MD5 0e0e1d4b521c40df2295752db967cdf8
BLAKE2b-256 ee7d4a9a37822daa0fc8626245971147d0634f9dc9dd10a3a90f44c8b7d31caa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9ccacc1298d45b003dcf3dfef8ea72743ba0601089d2bafcd657bd8862fe2bd7
MD5 6242caf9ae77a993b7c0af7012e97a53
BLAKE2b-256 9266c70abf1ee4949b8a8f188f95df0a364e4f96a46467e357ed76ed81d1cff5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bbb0c6f6f202dbe97adba315b56f2deb468bb2bce59b8a952d7b727a09ad0691
MD5 0865fbae129d31d277bf97c4f857a41a
BLAKE2b-256 2dc318d01d734036bd4270f969f0a9174cc3814cc4609c15f1058d131c1d2667

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0d5d8da5159b9a2fe51d683030c2413d1d296395c312dcca4f7f24f6d5686696
MD5 b6cdf75c47fe0f7b9e6d45c5edfbfaae
BLAKE2b-256 299df24c7de909c04efb3f70db1074048614246a370c44e512c1a5bf51f59479

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e2642b92bbc56a013a24d250195e8c90dc1f06b91d5af4f9c16da64fa987c8ce
MD5 17be0fdeb064673aed7eeeaaf68bb1c8
BLAKE2b-256 97bf7fd38ea39e73401912d47fa763d50b973a0b7f2fcdb1a9c88bb373f48c93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 300429fb703b9210772742c3d1d8d2c47ce229f1ce49e97f9529f4207e738599
MD5 24d3d123b585fa1c82564bd8cc12d898
BLAKE2b-256 46cd4c8a00f249da7240711433f3b5e5419d99cc67d95328216f0e633f413d69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 88b01c775379ea8cb6f0ef858eaf2e8d56b1c8fd9ffb5b0db4d3b5ebd6b79985
MD5 cfb84457161f1746749bec8a8afd22ce
BLAKE2b-256 3fc70ac3fe801384a108304ad9e7abb4bb68c27e205b007f91215a368af3f487

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d3335eb6c39a4afe5aaad7192ada49fe9f25b168107912db31dceea7d056e09
MD5 ed57bc0094cbff91aba99c52323f8673
BLAKE2b-256 2e4bf6e716295f6d56d3a5892c5bda0846d6013e05fe89150360abfcf5438e6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ecec6491f421980a4b32ee7450628da39a5609997748b11b9c35482cf85f636
MD5 2c1b44defdfacce30423c87946657c24
BLAKE2b-256 a8c2a0d02a7522a87aef5e7bd67bbf5ece12a375ee7125cf0778d58b1760883d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f961ac096930adababdf30427ba808ae132d038bd12643a161762d98a6d1ccaf
MD5 3e56e711f298496d9cf131c3c151de6f
BLAKE2b-256 6b2987618e446c8390c1cdd65c10f0d02da26ec97df3228bc282fe3ba4143890

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b01db87f403447c9007d7a6e44d90d41a6d6bd6cbc969a100db164fe149484dc
MD5 83dc16032daf40fe2edc0d6517dc290d
BLAKE2b-256 b9f5c53a3bf2dfc24285816a7f0c4cb6446ac032ab394c4712203b722d263a51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 254e31e1797fc2dcd935a18f4ec2d5f671294dfae99558350710bc26aacd6d2d
MD5 1626d91583bfe4b0677669b34ddeddfa
BLAKE2b-256 c7800787e54583603a60f76194a1a9808fab7516c6519ecc577d9cc698459584

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2b02c45ddff90479dbf75216efbc223df5492fa335fd4983dc6f06396e4de32c
MD5 9f8b123ca10b3bb1da4672acb21f7f95
BLAKE2b-256 4458b8a1a62b718f42ef1eb8d855533dd5b68cf7125d9231cd001eb468d642e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 62a7b17b698a7266344b4c138e3b5eb408ba9cc7d8fd605fb1283b8fb4989873
MD5 e7f9ec6d410bd13facac3efb0b605b34
BLAKE2b-256 5f30a8fc98e89a2b3a28471be955c1ded0bf435d92c9c701e3436f3bfeed5c8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ccc8ce1f18d7c18c683aedea3313d0209babc82cdf587d1972dd505dddbcbabe
MD5 3349e70e5232f33a26490c42a921ef74
BLAKE2b-256 908f2d09fa45676488c31228ed0d74a0dca3476d33d6357e1c937d780d9fce64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8121d95342ead705ee66d7b7983fb2ebfe8718f68cbe3ba8608c1f11698ef73b
MD5 da0b8cd600ece452130c17f02bd52f18
BLAKE2b-256 26234d6f52214773326f6b0452c0726737a72ed3d3b983e481048ca9f96e4f3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a965a3b539fc20483b97146fe041e261e10d3c3292cc2fa57b7bca7b6a02dda7
MD5 e31ecfa1c61e92ff4016ded14a7d9100
BLAKE2b-256 edfc5cf4f9f2764b67c730550dfc0b85f35af8ad3cf4608cce30d5e5f6aee20e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f6b2a3279971f130e6ec164039a95146983c18156efe3227fa9f0fa413fc7cbc
MD5 fc3904f8bedbdf468d3613b174aeaecc
BLAKE2b-256 66c88d9a76dfd82de979ee245ee9666db62babe23890cd3ddbceea2ae94e9a7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1747d61170ead2facbb8e64f3448d118c67c754920bcb742d42935946a69ba5b
MD5 3517ef2f45a1680ec40a46e4ba815396
BLAKE2b-256 71886600f0a1b41de657de6ef63c1e272a83e6ec56361944fd5a6a50e8749351

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3244d98dfe1f0f82db4f3d52549543423f31af686bcacf3be307a130a18b8b5a
MD5 6379645fde8cdfec7a4cf99028809ead
BLAKE2b-256 a4188de65cd281e9c9a4e4c2a079aad637274b81e239c18d788384bc45b603cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2566fec663ea212aedc07227c96228b38d12038a412574c9c9f7b5275a42c933
MD5 89b995de2e4c747db3a7eced6278f1f8
BLAKE2b-256 702e19b2f5271c0ae71c309b1c825bf3c28e53a6ead8aeee1928d102461a1682

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e8504bc3c748ff4ea99c9e76265748eaf942707acee18871e6fde4cd681ed72b
MD5 cedcff8c5f521ed257effe7c1f339b9f
BLAKE2b-256 069097fd7747fcff1b66b9e7b2a1c8e46154a599cb05c00533fbb3766a572b13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 69fe87d0bd0c398d091f24504a8a0af56ae0ddde56a169f72818411816efae61
MD5 267213fae7b46a9c330c1f04c5403d3b
BLAKE2b-256 17517242d1fb564767b166b742b8ed51f8d5488e84a5a356016c6245396050a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a787ceef8be903e2e9bfcaec379e278e07f966439989edcad2fca3df0bdfdb6
MD5 96b372c567864b71708d323ee75afe98
BLAKE2b-256 b98a36877401517c020a88fe4336719e6c0d103212509916e17e02b84bf02c6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6690057b2db7a451a2ee87ca1d622dc801ea02513394214d94c98ab852229a9b
MD5 5516f9c353f0dee1c6ad67f1c5d06954
BLAKE2b-256 77854ec1f4e165a76f59b1ce5972398839140ae8b394d91ac1238ded9eb63db0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7553c9b2fcfb99c46891ae9017ec8ece52533c8e5ca3fd7faf3b18215f09e169
MD5 16fd7b5ba55f43779878b5176b953d82
BLAKE2b-256 7856cb4224def22d180a284d56d19b8fa2f1b5c915c31fd7f84246840636ac94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1ced514b1a297acca93deabeebc4d76c5b546a7a3445cc0b4a8cf03f2e12d3d6
MD5 8a2eac9765d354e0edde33df37be0986
BLAKE2b-256 2e54e157cc33d51e9d5b02afd59b8ccd73daee07aab6124dafe381d45fee1100

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 44b7276a76c23f47ee2a0456b3f042901f5053fe4929f1801f4f1ef15fe9b45a
MD5 b602641339a53581393c22204770b9da
BLAKE2b-256 dfc79ecff46399488b63bc890115038be933a1c79f47d0f31e2607ab602306a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ae66acf1c16ee4e68d8752b0549fdd061c62d9153c881400e1c9f07d46d3ac7
MD5 335fb1d3137234d22a76bbcd371178bb
BLAKE2b-256 42c1381a3c297639949d15bf5a3f2ec9e366343adb6d8bcd04ceca81280ef73a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05e4c146377b3485e9a36ec3fca50150ddbe2131c611b32cc1a0b4de91a71464
MD5 579d50ae8f3d8ace151a8f4e92b2e57a
BLAKE2b-256 8226df555934ca87ead017deed6de621310c14a42f8f3ad32e8e034a7cf606f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cfb2c9171cf4c4a10cb4ec081e1e5fd5ecf26b28806a9098c2f174735c9f3ad4
MD5 e9978efdd55a948a1b28fcd0a695bd0b
BLAKE2b-256 f736d72f2add1e903aa8020b8baa16647c2bfe1741b149aa16ecb543925ef0c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b94313880ff5b04b4d01ee9ce5f7347f37ed1091afa08a40c4e5dc98572f51c1
MD5 050d0f1233577305aa59c85addf417a9
BLAKE2b-256 9fa9e591cc5fbf112e8e626d9c6efb24948c8732b897a6b9bb6758c559259ab4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e730c0dace98554dc05a9df7d74a680c54c9811b00cbbab32c5fd256ebe8e75
MD5 3bc3c0edabe8b02a7e8a594d35e5971d
BLAKE2b-256 294953c7eea0b7bc47e72cad7fda891ab6bc04ba41ca45ab5122029635acbfd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f7857661b9b9b177b3b648628ba24741969c352a0c0350b79cda9c364198689e
MD5 9f4dab41ca25429a80d87e82ff1342db
BLAKE2b-256 ff512031ad88bb9ab982d418fc26f7c36e56343c80472cbca0a6fc792e30cfaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 903ee0c3d34d3949740566bb8ff94eaf661b9de4599dd4fb59a2c285a177511d
MD5 671ced3d3a3e62887259473279bd5119
BLAKE2b-256 288b90891dbd2946735e0b3a443e67efe1a9dcacd866a89a8bc80e2707a9a310

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fb8648a4aec5ceee17de535ced7778e97b211a1c5c68b4e3e14ae6f9e25a5576
MD5 66455b33bae6b459b41623d5ba17367d
BLAKE2b-256 e7634ba673af3ebd7d7af92bcfb1b5f932e01c88f97f0fb19231c6b6c552c0ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dccf33fb072a328011faadbffd4791e02cdc878a8332ec750d1fc51499b558a2
MD5 5db86c8d5e9a5f8252705ba24ae4cb26
BLAKE2b-256 924087e3451a54915bef5c6e2500746f6c3408c26db4cbfbbfc91d11ee92b2d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f11f270bc437fb91337ad74882a57cb26bf4db2e9f2e6b098c254e629e2a3ef7
MD5 48387a4175a6f9b045b22ca8ea52fe41
BLAKE2b-256 8767b2527e48872ec513a2f65d5678dd8a78d0d450ae274f39025e851a70798d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8a0ef8d2929b4239add939604f576f9444be977429109916f894431309e80c4f
MD5 c58a226fd48dae278b62181eac5f11d5
BLAKE2b-256 3423c7924a53d578a9db020369fadff1b31eabd1d2057de26c12d8176df8e150

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 85302d9e90417ecdf31cb3c4a8f43ed5ebc840e0ebc66c59a696ac0403417a12
MD5 29d38da47aa940b829c992fbfe0110b4
BLAKE2b-256 91b8db9d2162e270aa2d061fed4ebc88fa0ba9eb2c1c294d260fe1e7acf658a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d1d6f6272c1af8eb08a63e7c6654dfa02f63123f71865dc6277dbec5abb6b8f4
MD5 f61bdf2ddfd62c44b1efd4d77e960725
BLAKE2b-256 41344b35ccb0012f941599ad325e092111e99061a209b30711067ad0995d9297

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 503f808473d5c22b8cb55f0cd16e93b8c9d5427aab9c6a19b845b8e9db2c082f
MD5 b6b5fa7ca03df3f3ece008cf494347b7
BLAKE2b-256 2cf6af05cbccbfa724cec9136d51b295c9aaee676bdb49040eba2a75cb622937

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01383b19af86208f8860eeb9aaf878dcd9393c6ed57c5aaecefec8d6ab496921
MD5 e0520b745fd7e362105e84bd4bfcd9e1
BLAKE2b-256 864504523fb1c644b71478a49532cbafbec4b1ae1ac02efae341f08c6940ec68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 da9a9b82ca382966ec892d2519f4bb848844f4d4bb62db38489a9c8481477fd7
MD5 e714d93ea8dc9688c5f0fb2616aa4dd7
BLAKE2b-256 b0adaeb1b9d94200a6b777b9a9cbc96b200581599f9653dadb629904ed4da9f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5433d8035b5633f14f15ec16415ad334f283ead5b6fb502685ac0aa94ef2d14d
MD5 a2937a2f1edc127e440660a2f2863355
BLAKE2b-256 e04faaff55b836024bd8b7632c7de5ee3dff37e0d46ac29a8784bd52f6c5fd7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e87d17e41707ebbf02605aa1d768f82e1b183285ac6fe55f2c27f651ebf268b9
MD5 f86de7615e7378e34942cdc27924f0fa
BLAKE2b-256 66a7d3734f37203f078b885daf0af3c41174d069f09441a70939439bdac73462

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 655b5ab29e26af0b3e96987bd089314d6836548dea0815094efaf8bc5a405fd7
MD5 1148461ed851ee72821cd1a7b390c96f
BLAKE2b-256 629df10a13b13b5815ea9159e3b49981b62a95e97b71da1198a261bd3f630749

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 91df8a31a97c672eaf3f33e3ec004b3736d1ec18246ea63066e0ba7d083d3e0d
MD5 0a49396aa4744ef42c517f1c05ddfa85
BLAKE2b-256 740585cf4144f74a556b80585fc20dde8310cd7c29864ed1fde56177e724a0b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f1f709621df066a663014555bf960b6ebf911d77aa07c402312b3a37e4ca3fd
MD5 15b31f2ba70214788e8a6b8d237463fd
BLAKE2b-256 444ebd2406ba4a35ddd6a65d2ecd6ef89d215c0f3b2406fbbe8869990dc3a470

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b70b6a1513f4a9479c7d2c9f80fcabeec98b122f7c842b83d76959f1d0413b69
MD5 ac109742b1c3f8e7dc5f91bf7e34e739
BLAKE2b-256 ab5e7d352f363e0c09241d012da6170f0484c7db56f4c4ef327dab2fde130f02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3889e7d285b83b74a4989ff6151128f4c56c5e7ddd94682cd2c5222b9a26087b
MD5 4fef1135782a1075db0948ce12f97a9c
BLAKE2b-256 dc8d1f41bb6bae4fe73cab413be4eb5de1d99d7c5bd3396e05a7c845dd691aa5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 522d0d98cf55740c47045e1fcfd3853d77482ab72f33bd3169c5844fbd72712d
MD5 82832374b8fd7ea14589d4ae6567ff67
BLAKE2b-256 dd9dab2736f483fa359f60f889c6afb051d0722b0039ba618e537c8654c9d9c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1fcc5f144bc7e3e94c77c0e285a4f104afe8d9e8a036ace2dcd0b45b7bacb137
MD5 793d50353f61edc97ecc505dd6116de9
BLAKE2b-256 a51aec7faaaf882762fe9c7686adaf215bd12fdba1cefd1d4cef384d3eaa647f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 791fefbe0863eff5a5f4348c07f0525555cb2241dc777eba0b59fc92788bc147
MD5 d464799254d9141a59d17079f2c3b2d7
BLAKE2b-256 c87d6909b3457a0186375ba0d90dca5eece9ef14d9fec9816b52c83c052dd95d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 02119324f2637143c10c9d9c262d58f7efd892b3d1d95ab5a407c7048b565918
MD5 80123d7423878ca8de44640f2936ad5e
BLAKE2b-256 c6b523afcfd70dfe134930b7a741f2c2cba086a19dc919f2376e5d252f729f83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b304f6bb83cb99c3998d90d91db1784b5ef6424f994f3d9b3acc71cab3852c6b
MD5 eb0ebbb4cedebbfa9373c74f14adfed2
BLAKE2b-256 cc6e3400d64bdaf6bb2d6a0f6f00fd71cf16e765c2e01cf2c304e061d3b4a35c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 38802545df030834b8291adb415d071538bc8ad7bbfb6fdd1294d4d3d2a50dc7
MD5 e3a54f31ef10e13dded3d93c4f1edf83
BLAKE2b-256 eb378f2fe13e4d4cb61cfd526e5b930378a79ec190cb34c8ef1f5ed249b632c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e6b04646bd46a818631ef96c732c3041c8daaa17874169c1cc33551b4279cabe
MD5 6d17930fea25e986ef2a35e98221ac16
BLAKE2b-256 7a810fe3af1093d05028eb9d182ab4b4adef085ad9abf49751f7baa5aee03184

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 28baa1a5d5b3ce4b06ed89c6f2dc580d7d4bad163d9fdb5d7c552f094ffd082a
MD5 4985c5c518c17aff15f68f59a3b62829
BLAKE2b-256 e5e106df4410e198343cbc3eccdd81315df8b52d740f13f81ed7844891656792

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 61eec873edd6613ab1349b2c1ff0f565d51d0ad457fddd38e5b2967db87c9339
MD5 43b28721b94cd641ed6b05789ed3f645
BLAKE2b-256 3a0ab68c76b9e1129931bc983341db17b73cce94870ac5966798ca30ed28922d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d5c09465f93502fee07ac6d7d9683998ebda90e6d65bab24bd7235ba43fb4046
MD5 6934dac83812154543e2529083d362c8
BLAKE2b-256 17d5ba097b06a66e0be14673f391e94f427ad66d1230a9a156f2d347b547afe1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f3d2b7ea5a1eaee6aa2fb2ccfa069ba698364a0fc668b185ea27d581d64e900f
MD5 0152d5130d91afdc010b3d98f86269ad
BLAKE2b-256 12074937f2e2f765299eb6c222e7076aec6cab08c3c33874ae66437a06522b55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6fb28d656b5f8c9e04f2cfa32ec58503b869503459bf4363a5127c015118ea05
MD5 fde7578408eb0fcd15da3fffda0324ed
BLAKE2b-256 892902f69b6bf2285111185f5056ac66bc4a9ba5b59d2d0412b74bcff25e2d0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1717f6367d9602975b5973148a548891bbdb15a89d0a3a00b5067db8091c37c1
MD5 548b15aac5ef6a039bdfddee7d9e7844
BLAKE2b-256 0b54daab368aab8bca039097f979bc425bf04258827a86860f879f3eb270bbf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 78f5466d37c32b9507cbdacd3af01438a56d7473d58f1855a6c999903d714701
MD5 aeb88f1ac366ae63baa362af9086abb9
BLAKE2b-256 bcfa33b104a2b0808e8c83589c10e2bde385f4785f2ef3da3f924c4faca5a21a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e89a8391f18f1cd30675f35d7c2fdd7bea505461c5d5af0e8b8a3086768577a4
MD5 3035abd4f09d17e97b87df17ac894d1e
BLAKE2b-256 6ff060fe0deb05eb0d47d8a85eb0be121e5667878ded27226f67593def22b955

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 db3b928f567732013981b7bb27468e6c2160b1db2e676d29a280d4cf8954d283
MD5 696968c85280c17c35b830bf62f33cc4
BLAKE2b-256 96fbe3e71bda934950c79adfc70f05540a74d53a00664bba0a5e83ed6c237cc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a90d5776a5e48124a0ab6df45c85bf5ca7f132d1675d55d2523b3f204b18bacc
MD5 f83d8f754de8c8c2f5835de239027c2b
BLAKE2b-256 56ff7d28f9d4ea4c3720be7984e8f0992a272d4c7b0d251cc7b2447032f66979

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2aaae8176fc7566ef55be50e321b98fed226ca90d6bae4e936b01704468cc1d2
MD5 2257adfa5acb91dafdea49759bce563d
BLAKE2b-256 2ea0080856c3eea9457b074c8fd5a053d7f104867908b95a0637f5f893c9d6c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e6aefdfd0ed7ab8c000c6df53484ce39e098df1114668bc19ae73790879d9c05
MD5 59b64a2ef42700f7803279716ae1513b
BLAKE2b-256 6d08a65a8a2938ca7e8f72ed64521f0916e7e0360a4817cc1a188491b7ad73f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 187e3b5ba7fe407613cb96b889e97300cee21de2a78d5b6342b2fc01f87bb572
MD5 d6115a7b8ddbc6b663270bcddc613667
BLAKE2b-256 3079d2f9e2cd34c7561b1521401c6029558a836bee516ce00ba2e2170a53d583

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 27a54f8efc533f3162f2f4946fde09ae4647181ba25aa3335c875cb513c54381
MD5 37480df0709ec58b82d426db7446f5c0
BLAKE2b-256 aa33f3320300c9b4a913c8e6ea4babd2f24d7a64922a540477307d50a87a15d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7fdf8c324313d3d22db0ff640cc82213d549b8a6e1ab8a4eea2a381072f29ec3
MD5 f7ef93ea4a64c887973929281c34a263
BLAKE2b-256 44b7a7eaba81d7aee4781983deab1ace7ec690d5885d6e1734b2ecac4bda15cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 14fd6019e3a0cc2a2b8da66f8be5779d5e220508b699511df9591c7220d9a46b
MD5 2c4bf8745ae4cc221be3bfb2a7a2c8b0
BLAKE2b-256 3a5d9f9e25a96e92b5df06faefc9f67de5b59e8553bdb3baadc9bb3a13123344

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1daf58ae0b1ee27b67b9bb20fc7baf2d0b2d748eac5e0157283d9ca16ad34e25
MD5 1e59d3b8e1557052b4a85c2456a67d82
BLAKE2b-256 777311b2a248a43c5b8142de84b9561381436aa68fee4457e811783fd2f5fa37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 77720a04c8e5482c64c4e06f2470af2dc2ab0f0beecf7483a1b0425815833e70
MD5 4612000a54c0a7d5308ace498f855a11
BLAKE2b-256 2b0829723f69f1210e1c4b11086f88479d34260e740a491ac2f188158770e836

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ded3eb2a859538ec072d2251fccae92ef0a562c355cb421089a416d4900093cc
MD5 db18ebdab1ee1d70f239874f80a640ba
BLAKE2b-256 ff7959603619c7c8a3ec2d0cde82154f9437bda7246ae44d7e91f2a843ad84e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f2af977d11e352f529a8c6abd384bbb6339eea2515bb59566c2ae6b0a44bdc8f
MD5 6eb05f8ead6117f4b1db1d21e4825e30
BLAKE2b-256 370d3cdee54dda0c37723ee0b725a664c64808ee25150d3e9fd9a3e3bda3bc1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 09a6e4a421075d91aca226180d10649a9d58e0175e72cff1134f39aa5abde083
MD5 37358d9df86001e06a4b01cda6fb1501
BLAKE2b-256 8deaa58f76a556d9133dda492b9910078ec28df3f377d724db0214158edd62b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 848f3d28e749bc5f04d5e6a68204ec45fa104a259395a0bf125b1f6f3cf6937d
MD5 2436d30e8a481029f47004d5c2a9acb2
BLAKE2b-256 fcc280752daefaf77a32a1e2a41c4995e3737d618637d2a7dd31d530ad447e52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 596571a4f30441e7ce00dc8511608faf6223cea887936a33ff4b34b5ee3077db
MD5 083eb1bc8f1ebe4dbc03f050a74e07fd
BLAKE2b-256 53650e9a334d41f3d1bc34c3f5ff98352f20f1b860d29877e48a7ca094cbabd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 733947b9f0eccffd3f91445e115f97143c6fc7a2eed321c8d7c86df66741c88e
MD5 da9fe01c51910a533beefdfe6b8a21f1
BLAKE2b-256 1de91fce233910011e22ad10bcaf3fe3b2ab644f8d006451fd92dc09d39e7676

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 43a78c79358d618d860cbe2c5d21c4afabcf4e3ad51f0390c4f1ad706f33bf7a
MD5 24fadd174bfa0b616fb809a2e3ee1039
BLAKE2b-256 8951c7e4bd05cc9ee646bcc8d5d6d2a28f927f35529eccc90f3e1ae176ac2f43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c0f7458102d56eb5d2c83d40e33ad13b8da2d423d0ce8a98861d4dc9e87ee1a5
MD5 b5c4519370040882d2f88ddbec40eecb
BLAKE2b-256 238cfa86a7ca8aa31d232676fa92d3fe77533d05b5f3ba93c9b381329be72ccf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8313e412957f2d5a79fc5174efc29d7c730bce95a3ef8cc919f4abf978f16fd3
MD5 22b4d55deddc322366fec01046ee6765
BLAKE2b-256 7b367e52c978598c8be5b535b4abc6c5e72d8b980815f44ff04ea4f936fc7347

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f82fbebdc6311fcb325038ba9c531564d45c9d1d545f905c1606c81189ab9638
MD5 d9ed66d0aefada0382d19a90ce3f87dc
BLAKE2b-256 43af3ca975c7c5601f38dcb723a1bf054dc0b829bcda01e46638db8d65a07274

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