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.1.9.tar.gz (482.0 kB view details)

Uploaded Source

Built Distributions

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

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows x86-64

attoworld-2026.1.9-cp314-cp314-win32.whl (822.5 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

attoworld-2026.1.9-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.1.9-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

attoworld-2026.1.9-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.1.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

attoworld-2026.1.9-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.1.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

attoworld-2026.1.9-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.1.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

attoworld-2026.1.9-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.1.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

attoworld-2026.1.9-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.1.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

attoworld-2026.1.9-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.1.9.tar.gz.

File metadata

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

File hashes

Hashes for attoworld-2026.1.9.tar.gz
Algorithm Hash digest
SHA256 b4f3eabce89f3b84813d2d0eefa474ff702105a4b6a2505351bbb909ce93b292
MD5 f1878822dc80b43ded8f85158b8bc06b
BLAKE2b-256 c0a355352d60b77aa0d057062f612943f4971620fbf999c9f3b57d792c28b955

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c1d78b32176967a71f7665d6e2525b762900b400fe2cea7c43fc344e10fb173
MD5 5801bb48841a87f14f171e5e984e4289
BLAKE2b-256 ebe18aa2d2a31eb7aa840f67e8c6a20a638bbcfc5419ac4c60c670f1b98918af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9e3f113f8bf311e862038685677269f23ee72e80d29e96b055e9f94cead41e4a
MD5 f08d6d0d63f24a461f666442b945465a
BLAKE2b-256 77cb385921a72a514154958d3e3a5efc1d0c9372040343b6c7a2cbceae8ed694

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 69c0b7da72d4d650652bcb67266d35f6260037f0092cc1c0a31836fb0b772e65
MD5 07f0d72a6cd23280fa5d845d5355da2d
BLAKE2b-256 470d2601ce96d4610610530ddebfe0f74097e36fa24978029c9f6ba228a6dd03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9560e6ad96b49417af244e2c32180e238499cf25ee0cbf025988d0d4f74fab6b
MD5 66e4bba77d2058b7c0c9e52dab171142
BLAKE2b-256 a9131f54169e488300e95d1634036b7d5d2ea970966a8d3c75ecef96a4d89118

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1938826a66e18df215cf47f7d356544611deeeb42ad8c14064d229c18d832cff
MD5 22488077f3b22e2cb2272484ea68f985
BLAKE2b-256 b48c51a3b82be9d6a7cc0a26ec0eefcc32b0f60b51ef12f0ed25abf4be42962a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f60c011ae03ffac70f76dbba240b40f66db7be25512c490961de49d6cb56d7a6
MD5 a1fa3a647ffd3fee4653dcb53038e425
BLAKE2b-256 f10d433253e879e4e2383794f7ed271a1300c5b556e8ad73cb54c9cda2c97123

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e1faec2d9f9851f0be2f2e8d3fe312431b99dd95ac692e77cf164427425a434b
MD5 3e6c580a0e1c21f63974c045fc6ced8f
BLAKE2b-256 bb8cba2bdbaa1046b2028ec8c21f6584569bb5e78a148de4141005962727688b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ba4fc56a9be6145982d2a2e92030c49ef70b1453f3ac8bb353a7858f255c8575
MD5 b9fcb342cc464d98d4ea16ca89a9c23d
BLAKE2b-256 9fbcecd39bbaa738861281b43d08d1599f9349a35aa2a66816cb614342c3541e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 675d95fe42beeffcc9fc63662c144ce0f8f1e4dae8474246457a7419d126ea41
MD5 c40b6898518967f4cda81c9b09e4b20d
BLAKE2b-256 27078ea556704c89108c147d6d95a6690cf2ecf78e3c2fc89d5416c78e5e3c2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3429e1ced77dc3c93a8f284c1a84a7b4d99b527386d40df339eb57c8d3e72d6f
MD5 f5d73f0c465bcbe3a88d2c77e1572b89
BLAKE2b-256 461ed3eb7b48ffab0fb20f58864b3de9368a92bb70800befbfe7ae0e386799be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e255949b0290a75645a23fcee6a32f40c462a5aa6ef2bfd1a356d63eb095169c
MD5 108c30756290de483ada8d863c86adee
BLAKE2b-256 e6e72d6fedd285017eb22d396578a319c1d282e11832c508aaf39b20b6c455c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3e0e78f50addaf121a53c451bd4f030de15507c82d9f6f2476e5bb8a46d94ae5
MD5 22aa1e680ca7f9e6b202e2a679104fb8
BLAKE2b-256 0bab18df70bd5b3d48489b44cfb132faea9551be367f43b4c61a196a130ee222

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3a2b5cdb5a60e1e46de3d694ec6c24691432cab7be9038419dbc5abc9ea96b6e
MD5 00a140affd5f321af5ab560b248ea80b
BLAKE2b-256 0d2af825ad42f7b8adb83a2669352077057879ca1f07f5002ab33e68407c709b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 abe05045e309391d401701516ea810c7018aaab582ae61f9f8cea4c24e435b23
MD5 8b258709f6a470cc40d40aacb98c2efe
BLAKE2b-256 9aa05b2576322501f55e36fcd2b8d3585e34baf922b77133c51930ca834304d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1d7dedc2cedd4a964c43a8cf174540adae94f3abeef0b1bd2854d111eee1cca6
MD5 1dafc329e11f2129ab774489616e46c1
BLAKE2b-256 5f3725f8bec74be00f051f8a200e06f56b6dbebade43e359659462f13bca2fcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4b4199398376674609c0bc977e020c64291e58fcb3a723142b552a55f1c1cc8d
MD5 d59c991daf7f795eb2d9564fc366a672
BLAKE2b-256 9694675483d9fae388e7386d9be041fb64e2c32e910e8f321449f44f909a74d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 739071a5e54eab48a1031341b63dadfc4f3dec4b6d30dc1cf1a461bb100a5be1
MD5 54c39c13a79e3ebd0eedd385967c2413
BLAKE2b-256 19be80e69f81c902b633efbf753400e56048b3265aec1bf86feedbf71b60c46c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 595394efbd475238f82b9b1bd2974e234427416f9c729e38752e36de8c055082
MD5 a695fb7385acaa0a0fb4847144caf465
BLAKE2b-256 5bd9c0c98bcb9e7fdc7bbf9ee541973f95d58012148a6bc43225a025e9af2666

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 90d39b4501f68e2d712a6b2a94c9611a9d7e9f935025cac297e805e1d80a37c7
MD5 7162e03e092ab40d8b1a569fe6162b78
BLAKE2b-256 1cb7bbd3ca0bdc5b2a771a0cac0de1d19fef5b06c28b600023dd77374fa776b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b5d96e1911d3222e8bd3ed9b49cf46bd52436d5433f90710803102cbd26fc447
MD5 5b56ff8f7143e49890ffc17fd9740eb5
BLAKE2b-256 be3320102125546399bbda311e7efc039bce3bf28235218be0ee54929e125b37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 83dd69ce36c2d1458280d72ceb657f7d543da7199183349f7c33469e563ea67e
MD5 440857d2042c84c3f05aaca6a58bb55e
BLAKE2b-256 edcbb2bf6d5d5d8b27189bab3549362485baca66fc1a17a29250f6b288c1e51a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1ced846cd0542d16eb8beb7b0997a503147bbcf40db4eb3335a0737438039cf4
MD5 fec756ccaeb8d6260c011fca66e3bf59
BLAKE2b-256 9a3d004ed6fbba62e45b0a57ccf024b71d11411cbe693bd225bd53c32afd7e1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a7eef842f4460b31b366170374e229afdb8def82bc3e3637368821cfaa7c9e13
MD5 a24d97ed73603c773d59f641547e93b1
BLAKE2b-256 984bb7fd8b8ef6fb4e86dc70a7d88743e7c6f2e6d7e55f09583d1cfcacbf6c90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5ac5b7d07a874f6d02f1be0784fb53cacc27acae190a9a31eb97882291341ef3
MD5 868fc40998fba79d14ed8360b1a04871
BLAKE2b-256 798bf71c9e62d208d96a9b57a0e45cac2982e9b60102f01abf972e3d3298a289

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 525e59b2b4772ff8ff833f68b329e9d57d782abec86ae403d41b4a9e72fc4a2e
MD5 824b75511512698e6f9d26ede7ed2c53
BLAKE2b-256 af74f84e49e06adc4512490c11c832b1778d6e5734ba1cc188444cf9acc318da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b617805818ca85e7dc7f582840bb9c514756ad0ef3d85aa64ca10485c1f4e44
MD5 d357b42e231d9f492c6b65f6170cd4cb
BLAKE2b-256 a8eaa77e3ca63065a56b72f537447d4a033345a134ca30f8527ce79dd683c922

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 06a8e73f4ac48e26a4451c6e316b4fa9938be8059308a3e5b4692d34a968731e
MD5 9e6ffd0bbb22e41a587dda7c958a4ae9
BLAKE2b-256 c2a8468cdf71286f596eaa560d89447bd9ab93e51c396a9cbcfd52968ea19306

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3ae15ca2909b00dad313e967ee1c1811864a7688ad36e25895a36dd9793ef5ab
MD5 cd0273dd08291afadbfcf303262a01e3
BLAKE2b-256 148a52792803ae63085174038a55ed5ae5ce94420b1b59f6ec7cf11e418de3aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6c5a8ce7c9dbbbfdb4b63783665600682397b7d4427d6906120f10b4ed84c821
MD5 e4527ea312c42e6f45fc4ebba0764262
BLAKE2b-256 df143f72b128b8d4ecc818ff49f638ef4ed0779f65677beb056df413f7c32ec7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 237bc3a8c3d86d8d1e0419948dcd1a5dcc0a0f922c722d64482bfb2cd366fa47
MD5 0780f6de85b09144c171f8afcf61fff5
BLAKE2b-256 a7b524c6863d2b11d699b661216ba7cbb767e36a21d36872f25208c6c30475a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1c9dee79ea77c775c65b029c040fc57246f33747720530302ba23c966003f8cd
MD5 85a86dfb37c5c889e370e8d16563b86f
BLAKE2b-256 060e9b6207f8eef2a8c4db6894808bd70d0bf7f5ecc8537928f6f23537706bb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0ef311898b1fa7eff1d157310fe31fcf169e823f97c2d31a0456961de7154719
MD5 63a10e8d64a77949b1f8b3d647737ffc
BLAKE2b-256 6b357661e5f87a930e2a9387b3a068a9182b21b539bbe1b20e0c39f2ceb51f21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 34633ca6136772315e87d291350c3ea238e7863f85b68be48cc2b0fe27b366fc
MD5 8357a361d39df4a7e46186a0d92adb96
BLAKE2b-256 2720c57a6859bcefd743341e7a930147d7c08584314315b75ee2e5b3e77f1bfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd53be5d58c0f10068fc7ab98615c7d530a795dd4cb6c61861fb04d77a97a897
MD5 bbbd7a897a7f1108c3bd9454a8ff33a8
BLAKE2b-256 e6b0b2a5f3a57065299a88e3fea814487e597db86eba482cb2f7102afc0e3c1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d01ab39e4a87c21b87cb91c07ee58ab93c70ec216953e2be6a73bc12c7f9c506
MD5 ea8abd9a276373eac3d011de787b2614
BLAKE2b-256 e273b9abcea4272df236d116f9c8ed5dbc02eb63d372005a9cd892ef78b8b513

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 4b0bf111c6e5017e4275d240205f23098c8e328db401bea9af264e1af5f85a39
MD5 9e216f9ac49b4d10304846f2dd5f8a4e
BLAKE2b-256 13aee8399756a6020cc48006f2117885b7cfb1f056b37b3fd1ff8c2c7b89f434

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 23da1140104cee0b09df525128cc82d98ecb172dcdac67f0bc3d2bf2422de1ee
MD5 11cefe52078190283d5f8f244eab261b
BLAKE2b-256 517cde2b0b3c4241abaeef61f2821b733b66c916547cfc85835846bf91f7dd0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 71c5e1697b88abd0bba7cc495cfd29092e5cefeedf4e6b8745fc2d8a30041fba
MD5 0fe12ff1fba68effe4ffbfd2ab8847f3
BLAKE2b-256 aa96b50916df8328ae35a6a2d8b7f7b0a93adb171c75ad463b44fb45396fd104

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 78fdbfa8c59c4917379a48e300254aa8948d3af7665ddaf9a456f526b8dd7647
MD5 547d3dd70f89410ea6f3b697b1a1e354
BLAKE2b-256 d866225dd0bd0fb1899450cfe55846ddc5bd01e9a2367e31d1814b8dbc22a0c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c3991a5221b2ac8fc76c3c8ee94f5999ecc1a15d0493a4e8184df32086b88a1b
MD5 79d73f23018375d8dbafffd68f7ba3fa
BLAKE2b-256 b1a3ddb5c0ca89a59de6c4bc5cd94b40fd332a088e364c63350a2372a7f82b84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07441edfefdd65bee1cf28105a9295a751ab5779a8018afcd4983546dfe9c3ca
MD5 04a579faa669cbfbc02bc29bb6980d15
BLAKE2b-256 167f567d49839d7b96d3cda97cf98451a85564a2d529b809ca96f8a0043313ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d086a17bc83207e63bf988076097f9e8bf16d8595a0ca45762648df68adc0fd4
MD5 29357352b8f5405e6964db8d4509d341
BLAKE2b-256 0869e49a9c41005662521de495966675e1dbd514ad848d6f36b9cc03bf98cb2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f89717067a4c0826c9322532b26c8047455fe7c764dde5f40039bb90f13043c1
MD5 d3b165a0f9443efd1bf28038093b4cc2
BLAKE2b-256 b73362a0ee82665288a80165f1f394aab48527a01417368b46c1a3fe1670d42b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4f3324a0ac7980140813c3d3d4998d5446b77888364c2576735eb4f06001214d
MD5 2a5ac9116a6fe9fa5bc8df3a3f38656d
BLAKE2b-256 5018426128442c94ef08eed75f131929f4a170d5f8db9f6dccfc370f4f9973d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3ee9563018d4b31a501519b26ba20d45cf3492565579eb206ca99dcc389c8977
MD5 24e252f6a2131d41a5766ba17e14eae1
BLAKE2b-256 e317abf114943a9086b13c1742e7146d441bef25cae612188689d5ed3fd9e36b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf620b48dc208355e9524601a12cd447151ca00eb83777bde74ebb3364380454
MD5 0c3f21b88e0684dddf9cf1ce23127b4b
BLAKE2b-256 0ce70baa6cabeac3c4424e43c2ba5c9e0d2b7618d0fd8c15e41451267e906e7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 816f179942922a2a9fda5c17f6f5b83cdca2e350d03766c045a2aaca018d6ff3
MD5 17a724923b6f9aa26b563b2fb2e9faa0
BLAKE2b-256 a641552755ae787aebef6f6b4a116d2440b7c75fc043ce49841f3c3648f94649

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5bbe08f513270e6a8ea3f0fd7e9af6c263a9e7a87a7bb7ff98e2835cc80f99d6
MD5 694ae914a7655de6320e140a29326a5a
BLAKE2b-256 b5b5e8ada670952626bd1b5b1d43068d6724eef8c11dece0f1875926bdff1802

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b1765c50e021b03ab83ab3742e2da72f5326b31d581e6df0058eacd15209dd61
MD5 6d4b0d83a3db5c4d676929f9aef9747a
BLAKE2b-256 96a31e86552b7b09d735f580bc184a7ce4c346e30f35b30352c75151092556e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b593c16815865e2c4789d9ed10a4a3ea14c849e86a948167e683e45888380799
MD5 46b4f1704195e579e425d4108ede1b74
BLAKE2b-256 1b297431481356f8d87e385d13ed2eff65e1556124898f0c98731c7450641f55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f284878ead2859532034926e0bd6d57c5c23b9a884265fd1dddc951d3181dd79
MD5 8666404e06b2481715a86d5a9bfceb3c
BLAKE2b-256 352c5c6819cd7e6c7dd39c944ad539e8a08edcbfa5778361eb120660a4c8d0f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7cffe3ca5bfd8d829353166c7f727257576108552b82b54931d2cef53f025b7a
MD5 07caac4e0166ef3e2234ed2774e66f67
BLAKE2b-256 7ba4ad4cf68169de629461c9672a34ef9633f8eb02d01ce448cacd089959aaa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e867d6dfc9d1865bcb103502289f1a215a86162ac82ddecc76b6de63f3c8dfce
MD5 756b51907bc5b525d9a0293593dcec67
BLAKE2b-256 8ce652fac78df895c98bd39f79faac8c0dad1936d7773ff3c8a0bb0e9e4e5b1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0521f664261bb875bc485a41ce715677584ffb366a9458cb92cdf1926a34a36b
MD5 6a6907eec514f2a793c3bde4591f67fd
BLAKE2b-256 6b8e66f662d9ee06fbc19732015de6bc412ba79064aaf6230415c5d0c2845e43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1b2e8327e19012e70c99af6524a67332d532643338ab153648e0ea301e0a85dd
MD5 2c9dd1ba249053d7705ea797822fd895
BLAKE2b-256 20b62d24a9f370f7580b8728ef14b48635413970e19643aefea25d8c7eca0806

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c2fd934c2c64dd97d05aef3b5778eba4e512c329e8ae85e28d7b931f134d89c
MD5 0916b34cc92e1012406d3d2ca04b7bda
BLAKE2b-256 c63b41a9af2f171b1c8dcfd79dc475cd7d5f987f5265eac65eb3ddb0798c48e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8b739a86c493964acf5dbb591a0b009df635ba575cd365f4df6cd339b33b5d1d
MD5 989bd037dbe53f44c4b73d8168e87ab5
BLAKE2b-256 bae8d7e44976531715d241b0183f034fd7ae91546f6fe6a3b9fdbb0b779bfb00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1df974ecfd913ff8d239ceab52547e7e6c76c2e445d2183f1da6c0a8baa05573
MD5 408457b25069f1e7a202aebb8478fc90
BLAKE2b-256 665e50be8bca1f0928494a5c811a9cfe77a4f1cb55f32b1f46afa677ddd319f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 241f23b87eb9495dda5d39f6869fb4bee2f258d1af7a1877b19dd6e4db2aa31c
MD5 4b8eed709ebe7d30c1e64c65ac1e3d3b
BLAKE2b-256 0935ac44745ce131b2477c22dfd1b7cf6c19234fb6b9319268562e562625e8ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6f61d6241e70ca4f09dcbc1f8fadb785cf771ddaa462a6dfed629969fb704651
MD5 272eb5a7d9f7dcdd97773d8953fab621
BLAKE2b-256 3ef297879180e99932696f76a81d2f3abd681e5b1f675656ea48f684d62c3b8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f3ec4abca2f966ad5f5521c92c57d6b5cf2021d5c992ad7c6eefdefa1f5a5197
MD5 3e1ca9a0d24ceffaead78ad537c521e0
BLAKE2b-256 9c4c9a3762baf2e65d60519620dadad12dba60200bbb06eb1ea4dfa6853d8a1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84d0378ccc49906e963183e9fa92cccd6cd87fefcc54a76734d26b19fec8259e
MD5 961b5dd5ee7730e34d516f35be36f6ac
BLAKE2b-256 c6dc46a055586630643b52aeec3982b9a5b7a44b413127aea7cbf1b88aa98617

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 10f435d8141e8938b30b760aa88600af4369b23679100d2d31e84e71dc31e210
MD5 3dcbc38d89e534aecc7b6d5d503b7fbc
BLAKE2b-256 1e6e67a78ec8fc5edd056d2b819f36f932b37a92717636243639f0ebba909f6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 498f3b1eb225ea8cadec08d2edbca9e4832e00608dfad178f8637b6436a323d7
MD5 d8f46fdea0bcd67bcbb1f97f7d44a66a
BLAKE2b-256 1681acd3be69f3f69b90cce2cd914aab23bd2b4705b2fdbafe8b7c96e1af038c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5af69c71d3b03a800cff777a69baf231db4dbdb2ec39f572fa994143d9247c97
MD5 4907b01f2bc18ca4eb16a1c25ea4edfa
BLAKE2b-256 3b4fe46d3b34f47019a9b6bef258b08d3eb9901d37bbb5d2e40d4892e5c16170

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 706581cd91fd12d73720ad610d9ed3316d69aa8b5f121999d245d75f423e25f0
MD5 eafecb8f17dd138c139545ea78294a7f
BLAKE2b-256 b6a2c1817b91a50046e25007f6bbcbd6ab1e6354ef8ab58b200ebbf0348a3fac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac37a6f617f4fb7f35113737f1f855a4ba9868df59d6d23edb0aeec1246a5db0
MD5 359a068f29d4e17af5d84e2b18c808ea
BLAKE2b-256 c8d94824f93bf9e87a50069023dbcc35a8453b24f1b16c61f01d6dea063fcf66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34dd06c67340d41f88588912d43b4522c5c874ec56db4cea6b94f64c876063d2
MD5 fb3e728f771207f0816639c9f541ab63
BLAKE2b-256 c606cbb069d5c1b89370f48e8f0c5966b55a9bef5135168537130979f6052094

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f00f90d96b79154b9513394002495ebc9be36cf8d82b2084c93e1292597f2403
MD5 b90c6df091cb8c510b87c92742d08b59
BLAKE2b-256 4c36ebc2e69313362146149c2897b23b7fb38fc735653a623ca8763056cb5a81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2f7f7694d06601577fc2aab440c9a9d0e249a8b65d73fd4afd4f2ac1c36758ca
MD5 b9a28d13139a1ee5d759d3aad54de26c
BLAKE2b-256 b11276edc1fa46f3c9aad7413c5d902c32d0798a174360f9a58bd8ee86b819b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab90fab27e90a13834034760095ca533cd57feeb687b38531f08a66f496eae7f
MD5 961e7111c08bebbbee55e32e7808b93a
BLAKE2b-256 9079db583ab3060ac6a733b78577ea7673f1d26882ca6591797a152189c41ee6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 92caa9ec4b541cfb7fdb588e320683cb86f9f358d35989fce6972c6cee9a4d1c
MD5 3c20eb1e223bf27ae2c8e6294951ee17
BLAKE2b-256 e2df5a74125a24f53ba9c40bcddc6beda9a3aa0d372afa2b83ecbb7f84cd3ef9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7c8538cd15dd02bccb609d25d217d2f5616e41312f9cbf183acb06674da63d4a
MD5 79c48aa0efd0cc9073d49c4bde50f070
BLAKE2b-256 1b3c22e4fedb59e46624ca2510c6b33f5b67b1eb760dbfe5a2886bcfec50d168

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 54870338f0a3e035a42e44ee603e69603c736cf10deb3d6aa8f4874453d9434b
MD5 1c0349e8837ec924e5e437a41bce6842
BLAKE2b-256 d3e0a5ecdeaa751c96bc2547c50ca6233008cfc68727cad053b7b91edbe90052

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05e7e3178cc030f56fc814ce50676f197b4ecd15a3c4159eccbaacaa72fe15d4
MD5 cd3f920b142ba0deb872aab692e031ab
BLAKE2b-256 4e70eeb2ef23a0d8b7ec2af725667fbff493a8014c6f364ac7659e8bcb12d893

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2ddc83f6e8f8bb8e6fd3eed9eabb34f134f86d9587363e6d908ba242e8916143
MD5 1d41121adb63ef8542783e6c4f26a517
BLAKE2b-256 4841f4407fd7687889dbb9504ca41d15cee4661b54fcbccb05ca99c43a82abe9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5521b30242a9712ed0afefb33c491584c455f8519a0960ede9957e1439e0f3fa
MD5 6769ce2d882d8f803651b4919c8c9224
BLAKE2b-256 c4643b5677b95b6b636efb3cb1e9c91f08e474aa0a662ee0d151d96ca3eac26a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4b4889a084de6ab02dfc525503f4af9c4083675e0f75298bd5191dc691c52837
MD5 92e8f1d2bff6cdd58da5398ffaabbaee
BLAKE2b-256 ef1a72321c621f478efd5fe7e09272d92c8fbfbe962062a3de5c05d373ce9913

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 203a6cdcc9c4045f48667a9088a6917c616617709286bdaa3ceae1efb13ac711
MD5 0f823459ee7987e26bb2c1be1add59ce
BLAKE2b-256 dda097c4698f08c056652707a4ed50eb1ed7d9013bf329d2dbbb5acbefdb3671

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec19c13871fec497d28f88bb580f7cbbb84742518bfdd26a1802e9b2b54b3e22
MD5 9c3f5f6381a34419fd663f84a9bad91f
BLAKE2b-256 908a5a2ead593b760526de44d1e094667ee568e2efebd0213e78d06599e14a4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ba20f8ec02c04953a1ccd17fb8e051613b237de35a37f6788d8615a0dc87826
MD5 c4b0aab56cc662ef407b7a13d11819d7
BLAKE2b-256 c99d6210750076d308725448beb691c243cf65a2624a28577ffad9ea4420e4e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a70e35ac0bc3ca0a00da16ae5060bc93b287291f895a650bbe471cde33c0675b
MD5 96556e363bbf4ada98005bc9b4ae3d7e
BLAKE2b-256 c92510852b1503b0b1db225aa2fc62a5ce1753811db31ce571b2335ad3479a21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f49e1d2e9511408a01af55dc57c5973829db06f44704d17d66fc964031306c20
MD5 edda3d014c3c4ce2a6bf9509e9b2249e
BLAKE2b-256 82b65e476eea7172e89eb34f46fcad0f63a3b5347ffa77c83a48bc0ca0f38b2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9579ec51aae800217fb32b758b55c3fe1995d8748b50037acb0c1cfed9e982c1
MD5 e04db9ec07731c4e86541bf9d6de9259
BLAKE2b-256 4ca9a743ed948eed8104ef97441074c6bcee63633d538e479caacda9d1c5b198

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0a31c608b5d3d41730db4e227b95656320729777b324969c3cd83ad85cf98add
MD5 9bd7fa94d870d2283c3967c3b2d15313
BLAKE2b-256 e5673fdfa7ab9112ec4223e3d0696b7dbf4d7a128d81ed820af91bc3bf27aa5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8db6fac00c7c47e1baedba0d5555a776f8b3a2cdc5d772742aa333f628949467
MD5 a334c6347627a0c65172a6866a938046
BLAKE2b-256 d8ee28e32b8730b246b86d4ffb93201ce547b6883b862e9a6c586d62b64c5391

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 993728fa16d03f4ba40ec654ab6317470749c05f85b7fa16434528ac1a3d19a3
MD5 4675236be82bdbda70112a08b5fc3e66
BLAKE2b-256 f26e4bd550f8209bcf9146873aa8be617cb72606d6c8a17e4e6bb1db504ebfcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 101763265767a64f735d2a0df0f2d3d021bef2d828c2d5936c5954385023b59b
MD5 549f9d49dce18219ae1ed826690b3eea
BLAKE2b-256 86c20af92f661d2ec1ae64c1ae52b728de10215542126a3f647199e5e3ac23c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 61a761478dffbd8ef6a6164bc5b1ab409645ebede2dfebd3c34d903d4827d8ab
MD5 4ef0b512baaa9b20dc2f0575c5274fc7
BLAKE2b-256 70db9dc9eb7e32f94ad54341cc56da4da14fb783bbda394662988d09b1bca276

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8a474ceb18897155f36f18131cab3e65a9e337a7ac695be3cf40817dec513adc
MD5 02d567238d5078efef1a24658b92ad6a
BLAKE2b-256 3788462807efcc18e02a2e68bd05906b17770d20f78ffde8d6e929e3417a3d1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 58ac93adc05592be8aecdda93d6f8db90391e509c6c39a756cc17b5e755823d4
MD5 2ee50911e5d7692b484886822e3ad2b3
BLAKE2b-256 3d99ea2b1ad24ab4fb897cdf03338a4d587e7b47504445927c5f50ef9c00f136

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 99ea9afecc1b99993b8adb9fc1fc0319eec9f7e450de8ad871456a44d2d24bd2
MD5 522f6bd751d2177bf8e03a8b7d7ab5c1
BLAKE2b-256 14f492f9bccf2a622080f49f712a6e77d762d36919efefc8cd250d73a00d62f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 139817c777085188562ccc0e478f5fa7e547b444d321f62761d3a4e7c28fb7be
MD5 50b7af7db443aa714d8219ca2e3ad91c
BLAKE2b-256 9010c2be4afd9f9f2318faab805492b56291591ea7ee2bd17dacd6ab9c713332

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 128541af9d4bd9b3e954f1e17cff56a57d1ea23fcfb72bd4b28caa787231da63
MD5 e449313c735168fea85a044caa35ce77
BLAKE2b-256 9f137f7104991fa38d4b8e4fa70d3dd32cf0ee2b3647778d47b0041e37b0bd8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 15da0320798d484978b7945f333eba84ac349a0222024f2160e0efb8f90345a3
MD5 3079a7f74d1519afdbdad8329b41a111
BLAKE2b-256 f6278a8f6cd6eb7a4788471aff83dbca9901f16c0343c2cdca3a254830e4a862

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 08940b0179b85033e3915cc468162eb7b8e6465cddf7f171d4659decb1f418dd
MD5 8e4cea40d43a60886bb149092297ec07
BLAKE2b-256 6270e32ffa99062679c4f942b3293317b17d784a8bb7a3ae40ada8d443cb7793

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8db483158c33ce1697484b1091f0ca97e9dcfa8bbacc98b41aded4737ec52b02
MD5 cb52fa32a9f82a22ac23584427d8e99e
BLAKE2b-256 ee7b71eadd8297ab5ece0fb4c3b23c19c98123b5d4910ce3b28f182f9fe02c2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 138911ae4b6571cbbd04cd2556d3045f39c91409f98694722eec9f4fcdc264f6
MD5 9084c22cda7c8e4ef70011cca2566e7a
BLAKE2b-256 96922d9753055c1aedde66bbbf52dff254cc93155c945ff0b98bacd8e6a14045

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b87a8675a3226c2b4e7b0da76a6496d4fde8f7f16e526ba535de712242a27588
MD5 4dbfaa0ccd92a30304a0718f145d55a5
BLAKE2b-256 df719a3a0bc823bb5195d4422fa3ad46013f8b88eeaf17575b6c2ec6d68b200e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e0a159339cb60af96aed8842f578c31700178999a267077b13baef740c3666c8
MD5 36897225bede7798b49942646e16630e
BLAKE2b-256 a7ce8974c1e64f5ea7e33f5c53c1079275e46e9932df8831a0a13195a0ac541d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ab0790bbc9e1580681b16d2ac16fed161a0690a5f9cd2736b638d920ff2d68a
MD5 1a50c5a8f66e38e4375bf8c217de909f
BLAKE2b-256 45d8d928e166894088511914060218efb15c79cd30892ca5ffd5f82617f593f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bd0413af5b05611f627f74652c132df37850de602f8451398ad33ed16f04e51d
MD5 649680d21843960b2d1f4bf938b04560
BLAKE2b-256 74ab9f292e8b16a35dadedcd89a1595677bb00d393c7db9cba362e3739341c06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0436c186747996e2ad4d52f781e3ea6f07905d08a368ce1fc0888b87faf7ca26
MD5 d7aae425625620a720a623476f4b1975
BLAKE2b-256 6cea22bcccba05977b984547deebe2a3c9a9872896a08a622e9f6eb29e74a03f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5f498b8dd373965d0556e31a74b2ca2e6ddb950d0892a34d04034abcf83c8a2f
MD5 68a05ecbf4f9d5f75c773ed0a629c1a9
BLAKE2b-256 0e92f0d5fa9d138b5e4d996dcc4566e34c6311583342d0854b2be8021e39152f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 117ce632e85259014b14a26009100be35b258fd31cec2701e4d11ae9e726db73
MD5 2a5a9eb22784f844838ee3afda70b46a
BLAKE2b-256 1fb355b5cb86d2ceec0d1fcd3f546492700f5a4baf0ffe10fa98a2cbc2295744

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2f311ee52436b5c8e58fe2f35219ee9f6a13833e2ac3ae16f35715c6e226df05
MD5 7f889ef7be8125bf1a7fc7faa76df4da
BLAKE2b-256 731783bd1e2e1837890b32e9edd76f3fde7b4c448f052c267aeedd8b6c871079

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21fb60ed55738cb61b529c9512b5673174abf6eb630ae3ca357c6891badbb3b1
MD5 5bb21516695cad5356624b23e0be6367
BLAKE2b-256 1f2fe7480d651c215b4a25954a9114be17e78d2835e8d4a7eae43166675e73bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 919567c2c2047b44f9769afc20c027703e70764d91600034c009257a130dda71
MD5 6125ad810a68748df80d11d103bf9963
BLAKE2b-256 3b8a9b3a31536d0cb4f01e3c823b5d66c91d8a12536a1d6d4af55dc88d07e8d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 96308c0fef870090d528b3da9b36a96f94e0593a523f3313bc3f63cb2b7c9890
MD5 6e94cf6a08fec8cf287737b406ba9529
BLAKE2b-256 1a5ad7d69f695a1b8d89c427838ad5ace265160ff1ee5718e62fcc8754c9533b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 16c8fc55ade5d583706bf5c4353d7b4426ea05142ba8d1913c0171daad06e151
MD5 91aa497e76495248f9cf71d3e6edcf93
BLAKE2b-256 b1106c854d461b7c131d9510e015e242fc983c4914db8b228857f55938244a7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 970d4ee235583e6c54c9ca7c5b65f7745019b5511d8ff11133f95699abdbde0e
MD5 2b5cb0887bc414c2b746e42a9a780b1a
BLAKE2b-256 16968352eebe4d4993f87014846ae213e1eafa94c3552315334b99a19aeba304

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6f4a335da064d804df7647b4d75d8ac23929a705687bd7ecb64e7fd5709253e5
MD5 bb85b7335f8a46c98aeb190ef2a0293c
BLAKE2b-256 5fee48148ac2bd76358add77162bf2f22694c4a58b3bc26237a6d030943ad742

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ce3a8360f980f1564676ee49b7100e62c593714ec566f7df8e1b003cb4bc46f1
MD5 eb42ceb100a5a3473672fbcdb230382a
BLAKE2b-256 e6d64c9c9d4f6d24ac5317a9cc6369a8b57b3fccc3748fdd1645b43c88650457

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e477376d5575f6fe5965cdd1f5098785bca828e06365395ec0a10c669f67ff29
MD5 a4334be6fa84400fcbf715c8705e6607
BLAKE2b-256 84d99894b241193ad3b8a1017e0b59fb804562e9364413d3ec1981b8690d56e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f4b14fdfc8c02b39dc728c26c53cdc67a032ea968e15bf467df91af7095385c4
MD5 63a6e7d883901c553b0a9e36955443b9
BLAKE2b-256 458a5c742e38fa2ff3cff69ff99d9672069aae43a4afef7d1ed73e1513917292

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eee08b4e828e8d5f548cd750def8e19d544f62c0f550f8cfd099c4c3f3abb773
MD5 27df6322b17bedf2b0f9d36b7c0e9256
BLAKE2b-256 cd6f4c34652f60c0032967940618a1fad037bf747b2138ad0d49b260b8c2ce00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 09c231298f73091fab6026c2ccc888caafb8e7679a827b3c970e4e9da5c857ab
MD5 5b017f627b7a9ae8042cdddc5f76ffe3
BLAKE2b-256 676d07f9f8566580e5ca1e4c0d4b60caf09fcb5ebb1590290871c7aca3b9a17f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 11eb9de677edefa20c9e43484ecde99dad37f249551aaaebedcda76632989ee8
MD5 0b9b042c6866722b2202ce5206c99275
BLAKE2b-256 56bdff731da5731f5ee3be4ddf7e32e52e08dd76942288a365f7a5a5237bcf21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 524829db0a3608f8683c7b978af198c05b3d4142e757a563d24e03f084b3af5a
MD5 bf182a9cec17e2ccd65740a66e24b5cb
BLAKE2b-256 f3926eadceca08e941b0a5d43ff98571c1f89efe05afab942d6b89bf461be11e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c2f373049deaa651bb06e9590df108bd1f991a13a3700cb53a43c0b4d6f9ccba
MD5 143120e3357c59f538d5e30621fbfea5
BLAKE2b-256 2ba31fb2e4aae217db8c5b8e6bf208bdd5abf26ae0456da3a3b08002c8506d7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8a33c7b808803ae42159aeffc051b66040a24591fc84b10555dcf0c26f75f00c
MD5 3ed81f597c56578ee26ea59d79f6d7db
BLAKE2b-256 c852652da3427f5c34d0d88668d9e92952dcbd5f4fdde51ae23f1e607d93e7f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 79d250aea339c853de0fe430b91ee49e73d1a504645e0429b051bfcdb34e3e7d
MD5 0eee999dcf9e24ca4d748cdbe083c700
BLAKE2b-256 8854c66e68d99dff003daeaf47b20ee66a7d5dd4d78bc5f3f106bd1a889fddec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e71086c319acacdc2900c80d7285150812cfa59b55002160e7b5c637fcacd66e
MD5 8ffca5561392260e59f5052368f798fd
BLAKE2b-256 41e731fc3353daff8bce852b958685e6cc55cd1bd7d7fc4ff4b104d3ce6f664f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86f382e5ce884c30ce49a44f4bd8cb11287bd9e1f6ef8f56a3febf47a8b83302
MD5 ce3524c3f9a2f1f9a6f220c48ce28a4c
BLAKE2b-256 0a1b16e5488eae1f47de45143e6bfd0b251c6e3492bae217dbbc6d81ee21e838

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