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.5.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.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows x86-64

attoworld-2026.1.5-cp314-cp314-win32.whl (822.4 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: attoworld-2026.1.5.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.5.tar.gz
Algorithm Hash digest
SHA256 a38b2eec471d7bab40826b10e31f856996b1450979fa67dc3c91951a2f84c9c6
MD5 489699eee8cf982e508e62ff35589b07
BLAKE2b-256 7859dbb52ecb6ddf47e3b25e758d3c0242d1c266f4293115a17d014519ada83e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b577d7cd15524f169c15dce1a3dab56c1e59e74144545ffe2695cf02743c3539
MD5 e086842d17f614288f6dd0e9dba57813
BLAKE2b-256 6bf9ddbf4c79bb50b2e8535f1cf2626694aded6f084808608032616f828df4ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 96d2e1e6bdf0d8e7e5e60b12c957f20f065ad9bac03c1990db70d71344a77f82
MD5 6d3a8db372dcbde7a8aa6e5a80e27890
BLAKE2b-256 a287880024702feacfa27c46d8d4352e6ab5f4ebb544660c07f05e84a23aed8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5e8a8dc2f9d095b29dfac3248dc2df5b37523ff3e1aa8160241e5ef9172b33aa
MD5 1412a7adfc39f3d3111020849823c199
BLAKE2b-256 5a8a1dd1274e799cec11d6e83cbb0b03cb81b6e5a11c9679c91693fd315a3319

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 940f154e9520cd73c3155e5f8aacf326b5f8d09cc36f1c10b2a22d3ddbd4fb9d
MD5 1c864ffc8ec38c4a02ca704cb63e8db5
BLAKE2b-256 d9af8e3c90be3b7c4516168d70ec6f69aea0cb08340e6359209517aa3f554580

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 436de4ad5010326600519e31baadc31769d55dafd4d41830160e2269cc8e348e
MD5 32152c36c94b11aca4b34638d67c2d28
BLAKE2b-256 e036b3a117f85bb14208e1fde9b91dc221a1a9cb19cf39874aa72d7a5a160288

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 92a47e22da16a25edceed98fb0d58fb1818519c70c005dab8ac01b404e082b91
MD5 14cf7b45b6a66f740523c5e7009b371b
BLAKE2b-256 ee8d990e9d4ddfd4f9744e4d90ac9bdaa1ca884c59601a4b303458df028bebc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7492cd0d7e6533b805a97dec1fe2386d995a96ad25d6bc9dd5506899ac661795
MD5 36f6e6c8c936a0a441277a3881307412
BLAKE2b-256 e8c4ed52958f03a80c8e770fe3eb9745b9c7f621f5f779f1e2191d7c7f5a22cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3804386fc79fde79d1acc5fa7195bcf459420b13229406a3ca42b5b6c4d12b65
MD5 269da824f5b4c17a1d5f0826ef15548a
BLAKE2b-256 613be20ea78467c228c96468ce85951d6b3f0b4d4a423e7c3efea68fab00ca19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5d84414b215513e0ff8727101bffcf37a128e83297a8ca05173578bf50b542ee
MD5 65b7a9ab7ccf3cb89ebc5f42dcba900b
BLAKE2b-256 cfab6a30a295db9b4e84748419cb6521ae2c42921f7397152ffa645a350b4085

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e880d51c4bd83d0b17ed43c0f5e95257d48dd15d48628538ee6b3cd6a07b0de3
MD5 1e3b908ded02161da6ed187a00af06da
BLAKE2b-256 171a903c45c0ca98bf5b5b4fbf27c0c782faed7e18425408e281dbc400ab2ee9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0dedc4ad17bff810ef3a50830a575b70b939cc92ed41cae04749704b0964201d
MD5 78854d326b0e7626a6457c7db56d762c
BLAKE2b-256 5408a4e1862d0aa75bd702e3ddecf8cdeb7022bfe9f6de1e62f9ce838649475d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aede6fc1ef2d134190c563c53ea3b8fc632e1da068c5885083bb11fd8190be80
MD5 474ac25d98c50e54ce6286d39d540ca4
BLAKE2b-256 3a78744d1c81b3ccffb5fbaae9ad5cffaff2b4d8acf547b4cffd3086ab64df71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ab1ad9e7bd831f6bbc58f65969c8430c076c14ab98fcc79186faf6cd21b31059
MD5 7f2d0d3281d3af0d33de7ad4dce0b0d0
BLAKE2b-256 5ce0fea521edbd8e401cbaf4fee89621ed1262aca8095425905e1e0a8ba5cfda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c677c90fb0bfba642857952868ec58bc015040478fd13cbfee0974d1dcbc221
MD5 0b99ce1c433447c56c702331a73e5546
BLAKE2b-256 4e0a5d0096ffe16d3d5997037eaea3462cd3dcd6605cd8730b46b9a02ad5881f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2948bdb22f08ed16103b2faf34658c1311e041631449e763d6b7f25978e6472c
MD5 6f14add43a5886206095eb2534a2f49f
BLAKE2b-256 cdaf77a7fc751ec830d2ff44c928ef480ca24c79c3ae7581ebb8a6e52263de4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f6dce795432e767b6f504e7af735427dde873f58b60a807324606f511e514ac5
MD5 ffc2b561717620b1ef2c27080947684d
BLAKE2b-256 9b4d654d582358b35ac8510296fa7844c80a28dee5ba34421a3dacc6d5e65a7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 30acdd580bb9c7a7c677b5fe80c9ee5930f37c8b16ca4363ffe9bdf2da96458f
MD5 85686a08bd4feae421d6bd98d8e91f7f
BLAKE2b-256 1d35a7dd243505b86af73269410491abd587d1b415ba1a55290128e54f40850b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d5cd0d08086e164091d379e9686ad00353d7cd59618116367bcfcad00eb7a03d
MD5 b588ecd2429e7ed5ad22c23dda2015f4
BLAKE2b-256 96accb6b4471fe005413cf17a4fea6749634b3cc4a03c85296b571ced116c2b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d07b841989a448f44214fda727c88ee44acd4c7d38d25dcc9c823cc13638374
MD5 22b3c00af1b693575658310b60a2c403
BLAKE2b-256 a1a283cef49095bba429c417eda257222dbe098aea380b01599d0220e446c7e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d517a31c231ef9711130612ddfa9792a65689722dcd9265307ce67b2e0609b22
MD5 35f0bfdc9eff9122a060bef0fc7b725d
BLAKE2b-256 85d46bd19181f081b183379b4806960d057b26afe564becc5c46bfb5e8d9cfcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c1c2e01684353c703e39ff1482df35b507283ed3fdd8cc7be40c712c432b288b
MD5 f842fce25ffffc2e42cc0dfbd5750463
BLAKE2b-256 eef9eafcc066990f54937c6aaff2f3f9a83ef2ca7f4f558dff9e931a0e6bf855

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 89f0c0cbc0b75f77e474ab7c39576f62d0ef0e61ec726eca62f1f27f4b266d9d
MD5 fd890be330907e04612d5f80facaf9a8
BLAKE2b-256 a737d26ed356d847a83eefa2d0aac6d3b17760c383b8944c090160f26f93f1c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9028c73a1cf5845970e40cba09c3a91215a9928e93ebcc99e8911c9c361d047d
MD5 393748be11304a351a311e19f20dcfaa
BLAKE2b-256 65f81b4b476dbae91190cb043b02dc20907ae8a98d023c5cb099d86993422cf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 da75772019508b0c514b8575b385367ef7dd5dce0323087e1fa6cb6a18e0993f
MD5 3faaeb457bfc710dd273769e94e1a01d
BLAKE2b-256 43c843ec79854f3734231011a5fc4116fe115714d6058083a3a10440049da82a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fa0c59b05edfa45c2072fa73c13fd3fdf4b2a65b102fd0770803e3d4b3ba0adb
MD5 397baf9737a0cc563eedfe13d022baec
BLAKE2b-256 fa7f4b4ff3b7fa147eb330276d360a060fd59cf0d5ea491770ca35fe87772f4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 57450e5eaa6cd959bc8162f6b646680e12a34134a4af71297af39d5b12011c12
MD5 2f88eadc3163023032df42ecf559eb27
BLAKE2b-256 8fc6ede3b0f4852dead2decae46b41504b24f00b0d27350361bd9d31f13b7b0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 83211019e9d463f846270cea92931a8f9424a641d95116b7f4679fbcfa65052b
MD5 78bc8ff7fa3e6318b65305f6961902de
BLAKE2b-256 48f438f0649503db7c6fb477ca7a7117b2dbd4288bb9e49f31e4215e748d79c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 53accd8f4c48b6058a632f40c4cb649afa1112e54e1f84a415c61a8199be13e3
MD5 06f5657c347a7e73e3075a17cbf657ff
BLAKE2b-256 24de1a01d8f326e9ed8256bab0a14730107593b4a09bbf1f796150ff530de85c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4571a0162f972eb5f2feac1af8ea331bd3a790a52214a0ca038d1b5f351251cc
MD5 55c84dddb73bada1968a971c34ebdc60
BLAKE2b-256 e41a8148cbd5459fa1d21850dd5f6c1e15449618eec1a012b43a4ad793438c97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4bf9d63cc1656d4e6ad6851fc38b2a642d1b183ea396d3aa874a603fdbe9f424
MD5 bac74cace6e19a060cf7f118728eb88b
BLAKE2b-256 ec78c9997e7d2e9a696319935e834c5dd0bb55e1c94adbb0e8ae3ed3fe549487

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 225e5d41d3ea55675244f7cf0b50b780e223cfd030a3c68558ba280aab2b36c7
MD5 b66f2762933629181c24274e9753531b
BLAKE2b-256 87891f38bbf46b7afe1fc270dd9e8be585391934aa4943a57787e72b1f1d512a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3497bec08e796b8a2d111cbbec37e34a4f0f16bd8738d16bec5ef08d2a71d065
MD5 f8a3849182d78c2fd36fbc29fc960363
BLAKE2b-256 2a4e206665028377c47c784cb6e945af18596308abe263b6c8ffc4f3ebad9e84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 16c5a01e2825f58353fd7d572d8ee64504c38cbe861813c8bdb6f769282ecb53
MD5 3fb0f4ab3b49eefa1ed20cd11bc6bf32
BLAKE2b-256 1b8d51272f6a72d332107fa3ec7873bb9b04942a91984803efc903d502419dae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e19265bdb64aa445a5257966504aa1b5233cd8242ab8c0e199d573c69ecbcbe
MD5 4ad28b82afcbd00eca7478708cd851b6
BLAKE2b-256 ac616cf13900b7144b856a00b599af9864caf8ecd0d2b59ed350420731048aee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4ee3aea6974182c2ce1157148915c9b70ba5ff03c655939d41094e133ac7cc63
MD5 9a4d4e92b5699deae550eaa974f016ff
BLAKE2b-256 6fcb164a6d9794cba59d608784010c274e6c58268efdc6a74d8247ae75d2550c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f3179b9445ab9f8bccc3f6a8668426e77bd7644f215e5a9a85bf9f5970bb29c3
MD5 f511c50dd7be0f2e9104815a986aee4a
BLAKE2b-256 91e7c8c1db5980402e49725af59eb2fd6ca5f9572a7e53546224eaafb8dd567c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3b765f50894dc3a99cb673f745785f16220dcd3dc55e100fd034f844b09e64ab
MD5 4403757d648eb00041fc2908c4c7627c
BLAKE2b-256 f1dbabfbd3c70eebaa643b36c789bbb6c31f231d74f6f6ab138cf1079bba70e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5f535d2b1039f9d72cc7847efcba0c893472119c77ae728a05b896abecb4954b
MD5 de782a20fcc3d3bc955928203a792051
BLAKE2b-256 e0659c8ba7a7ece807c667ce4ee93fb98a486cec9cd69569cb0685ab0a59927f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ffc5a70d941dbd8e566db600adba5900899f521b0bc7cc3f3e5b09e90c375d2f
MD5 27cb8c8ed927ceed7cf7522ea3b2a532
BLAKE2b-256 26fffb0d75e86e55deba18837c98baad355cd9dc4c0fa0dcd0b22c25a98cda6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa7e7f27bed9fdcdbb08040bb62293488c949ad0a133652ce9368c5892d33946
MD5 67f7c2a6a35623d9a0eefe2e495091c0
BLAKE2b-256 10c1b927a45ba0601f78d72c24379e36446e4fe86324a6f891e81791e6a1aea7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 25c844efd9e38b533723f8d44e39ac9b455abe56e86ec9ef7aa8b8bd20a7d2dc
MD5 aa338a0e8081309eebdb7e50c9a46dc9
BLAKE2b-256 40261bbaec0a9eff9150ff58b0e6847288d9a8e4021433e9c6c916e099604eec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5538f61c997324252732b333cbc95890569fd75f313d44532faf1f8280e11e6b
MD5 bcd3ed2335e7d35c4e69b0e8a53c3224
BLAKE2b-256 a5373199a88444c53ad606b36b0c72b82c94634503124a7cefc54ea32eb4338e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f1384f83f24e47672ec0b6be57e9d831db02230e2d4331e891ca1b9877cab2d6
MD5 8fcde016e95c3f6d694f98a1617debf9
BLAKE2b-256 4cc12572dd9ce6d29b4c1c58078db8df75e5854b283289f64065ffc96aa18d1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 77a0b85841cbd77af85b411ab588fc6dd90031fde629b73ca8deca27caa6075a
MD5 5a752e1671d03db5417fcfa83e683b0a
BLAKE2b-256 9814e0993bbd2ff08812a296e9ce8f10aa2e91e353adde5ad76c16edcd96d154

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 57351b0e12c9c53e642c94e925142c6c309c320411c77c45fda3de76d59f4a49
MD5 0a1090598c42cd95795468afa4746a96
BLAKE2b-256 e3c438457dbbdf0dc1eced75cdca3a185e7d2ca6165b29d504a726610e397533

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c20f362c6632894150f3bfb0ccfd2f3ec722e42dafdb077f9e90ff871fbb426
MD5 0fd19094fdffed2f1659c1c530f2d1ca
BLAKE2b-256 1c1d8dd21ddc1c8379931a4402e9f73676aaaf5907e8ae6b703c766bec8b9f2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8bf8ab2520f3976511b8492dd5b799c02e70f9467fde1892ca9cabdc84362a17
MD5 6006a5e01d4bbfb644bc4f5c8f345718
BLAKE2b-256 29467aeecc1a6bf2b59dfaa1a98171d021cefaaeb020c7e588a2c74d6164bff7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0871ca1589f6df60ddc14d183f6cd347ec78eb2491a85c01d69d35828190451f
MD5 7dd88da73d485ab7d076b26b4fe2e475
BLAKE2b-256 2ad604d17727af53c0816aa9f062bd6544a90a896f44f6c8aa50f70b1f00c089

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a0c3ccaae0e669129eafe4677e58db2519ef8dc51f956583660ed97553c3f278
MD5 22a60e1d1afee7602d6738c4755d858c
BLAKE2b-256 b4936d026dd238ff44f2c983386584d53319a099ec4b712b5d320a6becd01aaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9147a72d2a114096de4fe74035764f4c1ac56bbe8a7474102e38687f58e9013d
MD5 0074685e53e506093725784c4bb96dde
BLAKE2b-256 0a9729327636b9141f55e611097268ef792edcc0e54bf894bdb9633bd28e3f23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 98fa8f2904e7531c938fe83092abea9d1aba79299d596f57e1b4fbbd93bb0623
MD5 f1014fa57269675ee9c28eb693b466d7
BLAKE2b-256 a4bd185a231d1e06fb8d918933784ec0ed11675ca738771485ec82b8db4514ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e747eec288840c8bdae8edd3653ddfd5cb57b5407fafdf57d2617c94c0ee61ad
MD5 ecb9a4f6d50a7105f3f5d9dcb7ad5958
BLAKE2b-256 7db1f53175b462447bd0e36bd7022b03a8b86daffd8dac54e76d64a4df691b89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4772a04c2171fe4b7d24746badec6b09a6ad0835bac2f76b770a0c4533ee28d3
MD5 81dd279728e8aafd29e530087878d80f
BLAKE2b-256 28e88139e6ce26f131b8defb5d7f2c273cc16414fafdf2a7deb77f54021a9e34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bc664cbe83e85c14b6b53e103d40bcb4d009addef24bae3edcd1e3b584fbf45b
MD5 062777b95a174d8e005a3f05d1f69b4e
BLAKE2b-256 adc4e27cb4cb94318aff7489521ea9eb604a9b5993c7ac27ca36ac9f9e3accfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 76e088ee511b8d535980947e525e9aabec1afc684a9ba59f9b05bea93b25db07
MD5 e7e79a27afa390915e7487cf468be843
BLAKE2b-256 192b01a837619102c2b9134a3333349c85a987b4f5b0537f4a0b11751b884bc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 66ad7948eba237b501d75150900f51de14b8b65ecaaeac80214c1a7374abe4de
MD5 db260234c0b0522a3293709e67d1167e
BLAKE2b-256 70942c282ba7317d0fe1618249a2a7a200e9f1cc22cb9d1dfd9cae1254a8f266

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8d7e6bfe262eec7a7c1490722df6025344d9e75c060d4eb00926872b4dd45e4a
MD5 3d75889eaf16b2b6326600f06d38c58d
BLAKE2b-256 1bc0bcd71276df28f92444816db991c2cf16fd2e165a40c7df76d06de556feb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0205c5142896f2446cfca0b76af9140fd96ecdef66ddeac2e6f3f8465fd860a
MD5 0251401489e917cbdf39e0cabe845dcd
BLAKE2b-256 2597881a8e0d5ca285554719a2ca540f790e1969f72b4ec394d386e639305e80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 17be4a1a16a2bf78a917135c773b159a368ac61f196555c9d7d5a80cfa31f56b
MD5 435f4c441ec8d086a073e5a20fc1071d
BLAKE2b-256 1434ca4d90658b6c5183b60f80d27d4b0d0bc7cf03e51272c33d6e2654c04734

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6832cfaaca5a7f19abbf4e51a0995e503b5119a99001e5094b73933583633f72
MD5 1dd996917b8b5d6280e9f291017156ab
BLAKE2b-256 fe62277fc34c28ec0dd3b9fbfa4735c80cf442d67015c2179b027099abe91522

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 58d688aa1346c26f14dde09a9b5f73f209610ea40b9926f384644b14734cc997
MD5 4c51b6bbab91576bf6bfd22a80afeb8a
BLAKE2b-256 90e54ea6c83ebab8b0c859e787e14287a3fd90ad31a745377d44f81338adc582

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f9955972b8797fe724644dee0382c1cc2379e409be5410952606f56560e0572
MD5 013790e6c71b638ac92e25b7a287417a
BLAKE2b-256 ce456c7372adfc4fda7f058c47935bbe8c01ca53fef85edfb609fa73efcca08b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 426ca156487c8c24ebd679b7df18fd1a88d486549fa817638c6d86e4a48b76b5
MD5 5319b58f678beb3d07a7c82b1754587f
BLAKE2b-256 705509a65f54e7b9c610ec5ed9adf6b6d58edd3632fe79cfad369d94208a1f1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 81807782b19c512fb42e40a5da30ed92a4311425e4d5915ae23df1888d18c612
MD5 9aa1b4cc45cb298fcc481d5744bce8a5
BLAKE2b-256 5f41dfa9ed82e9adcd1668ac60693fd06d652aa9db65e7f14697bcda493f28b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e7273c715d2b5cfd1b96e0963d9bf730cea09d8e69f3b953b974f7f2f15d7362
MD5 03410face07e110f973bd4f5c8a15464
BLAKE2b-256 345110d50d5bbb8d30af7ac86f1af727b8d369acb958aa40a1e63806b5aeaa61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5b0b45ffa4558d540ad8d1c157bef09b46158520558349ed781703c6bc30e793
MD5 dc480b42ad6c2212bc04c2af1f6fd535
BLAKE2b-256 8474a8845ebe2d31fffe2745addbb5a376087fc9ff174efee87ccf95c7dfe71e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff4d7b37646e98a68ae745d8948d9e73d29a2d31e140f92a3351285572c04276
MD5 ddfe7f5c0914f321b3a8af9c40922574
BLAKE2b-256 2e70fab0c47d534145e3114131363dfbf71e9447337c9d46a450256d7bc8ded5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f73546b4995ab820688e25f73324e7698939bc74c01207ab1805d66b6871e905
MD5 3d24f9c4752c27abfaab4631eaafb0c7
BLAKE2b-256 7b1c69af4012bf68a069afaa5d16019f19000fc8df9e15106d4c9b3e8b84c446

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 96e90fc772d6b0d97d8715569e5c6d300afaf0f98896c99aa12a10efe77c0f26
MD5 3c59eb641893925752490bae7a0a17d0
BLAKE2b-256 602de6f15fcbbe41f1ba09a85bb5ca0f570edcad4e101dd22573dc33a52b8432

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 688f38736edf93f0df02782cb9a054101118e0b7f0b093f2a68b32294bc63c64
MD5 afd9c7c71207c49fd20ee338c4a0f1ff
BLAKE2b-256 b7acfdc6a92d17da43492d58bae9e6d95f1c10b8e69a1700960435402faf34df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a55559e8e3ef9c51768aecb23499816cdc650bffa6a296f3a3cbd2e7bf0d6ce6
MD5 bfa8c6279fd0c9df8ade7d6b6fd9d1cc
BLAKE2b-256 90d7033b8e9d3c713ce4f80f4fb94d85673ccb33797b032795f02e4e5b6b9ce7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d965ed60b3a2f948ca7054e4da5e287ada082e26da4ffa24ff93b82cb8bd84ac
MD5 b828c364fba365b5fda699efe2235302
BLAKE2b-256 ab1fa4a2bc85fca9cc9071ecbb677d346a31034cea6367e3e7467e76a87bbeb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d14c11b4c910b9281d28a8325936cf802f75e6bf038e96de4620d7b09c7c9535
MD5 32c36515d6be1cecd21f5c81441b8afb
BLAKE2b-256 f51c95ac8e12a4c6911193a93a3c675057afdceef9bb1844c41f84a6a8da0df1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 10f41342a265fe49d30385ec32e14d1a7a57434b06d0b14fc9b08b31d05ef87f
MD5 c6ed08426db8fb2b05ebe386c8b5aa95
BLAKE2b-256 bb3a20c0336488f9f0e49c7ce5d6e88a207e2109dd5acc8516668bd1db8c634a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 650369f81bc8fd8150bc6bf8c08b8c93941c008f958dd16d368e65411981fb24
MD5 6f5ad7ef1b2bfa6ff4f180ab59a181f5
BLAKE2b-256 73a5931ad3b3b557be21347b50e32f669cb6d9ff6e1611e7c22841e90ba50cf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5ca3e8aca1cc4e34eaa5b416d3609b171602525cc219f7d957cf324ad9611421
MD5 4e6bf3d719513098015f077e1ad6026f
BLAKE2b-256 01892fe2a245104f6ba393354991b0014ab1f2bd6138e8fb4f986c75c236b12a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cf7c897babcc601c97929e8e263a5d6c44483dc15fd3cff5a3b142b7f3539775
MD5 13243883a01bc1e862cc51996c0b867c
BLAKE2b-256 3fc4046a437821c1cf3e33282b68f69c9aab31f6697a77f9100d142038e5be00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 db51559c70aed2759099a9275265646080f049813567ed1f5151f8cc357f58af
MD5 724fffe5e64b5b826717ea5e2ba9808d
BLAKE2b-256 3b3b3e5c4c004f4446b304f64dab98468b167c561a96026d041f5da36ea28467

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 acd0e9568b4e6704000772b125bcacb2b8d5a40746026405e7f531889c5542c2
MD5 fe266db3b2e4c489dec5518075c1058e
BLAKE2b-256 84e8580398ef683ff9d2ccc4810ceac474432f90645199ff51ff31c9c19d5ad4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d4443b26b78c072ec33d842e1bae6b348be3e52b889b09897de8e49f508f0dbe
MD5 b114b53332e02b316200f8b5b2cd4691
BLAKE2b-256 372f9b1f99fe6389096616293e26578318d4318e0dc4cdfa3255e7808f32aa9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b94ae0c2573c62248f8e04370b8c21748c7b58d6999a971c5a3ed8b4101b118
MD5 1f8a6f68a5e8a00bef62de1f72248be9
BLAKE2b-256 3e99caba8598644712a981eb8d6b85b5f5c20aaf131068a146444d2d09cffc80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0b22500fce351fe2ee547e1e7d1bc5d12567625036c5dbc2f5f3ed2590294606
MD5 147fdf2392d4fe6257c35d62b0da87ef
BLAKE2b-256 f5fe371da93a8d4780a7f86fadc5de57c6b2ffc338ee1d3ba3cd4b3a68a07360

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3f685452d8f8064ba248934f7a290640fff0e6993bc7a02bb99d67d49ce0226c
MD5 fb025897c30316e430ab25d42f0aada2
BLAKE2b-256 65df991dd8a5c650f66c2723c450ce305ee0f2174fc23a27f8663f2dc499c7e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 53f483b18a2c2236fbd6ec23482a0cab885d00724b7d412b68be3e5ad8644b4e
MD5 fed2987a30d64e6fb7323ba66b0575bb
BLAKE2b-256 3deab6145eb6eb45b78e78d0bf961708dcddb3c92a2291b026cddb75872fe082

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1e92a322ebefcc8f1d5a2ca72b84642de5987d2644b3f66523f6247e545c5d84
MD5 464cc009ea1fa337be18e58f70c8ecb8
BLAKE2b-256 9fdc228a57046635b2307bbe31729bc3b1c8d96a9e589cf7d3e7fa9667358a39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cc21424a4045f13d7742625a810017f7cb72c2be6af28b73cfe8257f30f64274
MD5 cef9875b51cb3da5f8db9c88a5e566bd
BLAKE2b-256 0fe631b8436e778db7ac47d7557228a07434a25f154a3f32b0a732b03468a4ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 70aa6929753b0f88ef712d381cfd96199a7cc239887aa245d78e5d739e4239b3
MD5 10d5622c9f85a1b85ba122d86f7f1da1
BLAKE2b-256 24ce551bc76be74360a1fbc6bc4d2658bcc51a11169726fbdc81f70f6aaf0377

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6df3a2b101b81a8c4434f43c88437cab682655dc52b5c1ea31de617d4aac6126
MD5 d0395c43b7ea02d29df767fd120aa0fa
BLAKE2b-256 351f65e1a4d37e8c37fa23e5c7a01c75efb36f2fd52b97ed6e5439c5183a54d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 668da23b2bb9657cf883b7a1d445fe3d3363a39081fdad3c78b8c6ecef6cc7dc
MD5 b9f346535aca290aede1486c3f6fbea0
BLAKE2b-256 5dab11a4c723b2c3df5b1c448407a8e82382d205ce7fe4b293ec5e751ff66128

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 84011b84fc763f99141b36f67aeb61d2fa86fa626d2074e729149d473f21e456
MD5 5e5285d1195ce1f3a2a00c3114705041
BLAKE2b-256 e2e4c59215899dfdf643022474994657ffbb47a35533142876cd371ee5ea0139

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d0c2676c59c73152d8244a3143e61d727df16c3e25122b6f8c33c44d4a234ae7
MD5 8936cb68295ebb5f96e94d447f5dee8a
BLAKE2b-256 b1626280360c26db50de495df999197ef3fda3577353e39f1df0cb02a1eaf5af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6557e1b76168b5e3d1c4ad41b31676d2c0a338de8ce80263f915b15e115004aa
MD5 e212641b272590d0860d44a785f6992d
BLAKE2b-256 c36f54ec3462f67ce79b610a11c157e4a323ef21b0aea360d55398d5e024792c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e1eaa3ce9dc93bb24cecd188d42766ea7f1cea56ddf1f2dcf2b9bdd349be9c91
MD5 5d8f79849a446a0024a6157550132629
BLAKE2b-256 22194dff1b9c3738f383453cee76105fa628f7a9a4f433b37e638446542de57f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c2c97de19a891bf62191b7286abb29f0aae9afcbdc106c14e683ef59f713de8
MD5 8416131268fbc4762dcd5432ef1e8efd
BLAKE2b-256 8d973824a3635b8be88c5fd85834e8f35f95de7191d23f095ab755ae69f8d2c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 181fcc9e904f089954f798d432d1e880e493856f8122f6229588462a915537e1
MD5 771ad8d49b98eeb3a0d5735a1d14638b
BLAKE2b-256 4657628dcc449d76bf4b599feff8d9879881b12e59ddcfffbb1f17e33744e317

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2e82ae467e56b7fb90b4c17725c70dd839c44d56cb5127cf5dcddd20f5bdc766
MD5 c2a4c4dbad97e6678dff2b8b48de62d4
BLAKE2b-256 509bf4e1af86140928ef22d9c46fcdf5cfb772c82af7b895c30fa9d8155f7ccf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4113f682151820a590f4d1ddf5a6007f5128ab4ad256585033f0f65d08899ad4
MD5 b1301eb907c226aa44e2b45f4ad9dc8d
BLAKE2b-256 3f99c215968b95b677f685a506f97e60563ef7418ec711bd0028b9347e7c598b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 966910cd657e27d00c930ee26b8d1f8cc547a0766f6156c6c5adacda1591e737
MD5 49940bc3a388ac2cbbf64b634c2a8a7f
BLAKE2b-256 419868ad7d1d1884d0775a95eb608dc3c29590b40a656f50a5943a1149eb1029

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 146d32fe190df4fb76e8b6974f1647ae1a6b5dfa7f54f3e543077672f3b94817
MD5 f01cfbc1454713f3c1870b4eeb081c0e
BLAKE2b-256 50970268b9aa109142879dba21cfd146edbea236ed5d7745dd889dc3d79519e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4bbddf38fbfc703578edabd93b301af75f5ffcc3f962718993d842179660d8c3
MD5 6fd26cf486fa8da50c626be4bbb2e614
BLAKE2b-256 b0ed3ae2eaf1c29a433879ca1e5e6cbcfae6b3ba6d2d9d8c6ddd40fcce51c125

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a4af51f71aaba8338f1e07607ff5f0f11cfe43da9dea9bb7f926b2fde0a140e5
MD5 6653ab1282b593d8ff5f9552c5135787
BLAKE2b-256 f6cbe505d3c052b95d6b1a3dd7c32546ae2c64a704d2297ad8fe765fbbbeb632

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 457d30e1c98fc7136595ae490a9cd9bddef0f10afd7ed76f57eda591d571040e
MD5 cc355fec5cfafad83ce44fa405b519e3
BLAKE2b-256 42bb9b473afd03b54678c17126f88b5784404913b8e77f5a94e5062c6560aceb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 78395ed1eb7d3874ef4168bb2f8ecd10129267525f26d584565f390015a5a238
MD5 28730dfbd7e577ec0567f51c2af75eff
BLAKE2b-256 d9e0789619b70624d5152cae01aa169de4b4c4ae91b46952c74d5f03f68430a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 75a43f6654315a9d209f52e898354bcff3a0f5eed46647dde7cd76e714f299c3
MD5 8fc439eba3d400498f45404af2b5ce68
BLAKE2b-256 f1b1b2fe101f657410ff53dcc6f097b09a5241688b4851028ef8eb46c9d05ab7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d694810c57279e4a94cc8124804e63e631e3c1e18784247fc2f850c22941996f
MD5 c258d30d2a82980d7aac75a0450d66d1
BLAKE2b-256 12d97a3d3c226dcf11f3920a6e3728f605003e33b11de79050bd404c80f3de1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ccb47aa4d4e0ff2ad89198b30880fb545579661729ccc035ed3a231f3044de81
MD5 279b7a8e9b3ecbf1be1d80450b591403
BLAKE2b-256 dbf95f9d12d1c271db93adffb3aabb7c88a41a0b12a0a33c81d10e2da5033422

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ae6f3e62a2cb566da936400bb16733524f378d711cbf50fc6491521769209de3
MD5 09a3cdce98638fedda6abb3e2ea3b89f
BLAKE2b-256 d486658b9d9a205507081301c43dfcfbd090d2b907617816174e3c8176317826

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b034ef46d5090ab48d7c74256cff084c1e022979a3ba96a7d4230de9aab80dd3
MD5 80387a14ee70d95ebfa050bcd6ade0d2
BLAKE2b-256 3417915f258c0f3da1c0c9d7e2155d048051cc306d62ee2b1d382bea0e40c426

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5c144a52d996ffd2db53535bdfae12f3d0531218fbb153835c195142e5cd7262
MD5 5523fc0af0556eb82cd0e75d5e93c52b
BLAKE2b-256 8ddac7bc7ce6f03d30a3ac8d16467773ce15903927f67ec5e7e4ef67623b1786

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4929abf075ba0f9576e39b968a4139b7e9eddceed950de11807a81cf8e19d00b
MD5 19ce4598a5057db1b5db68cb4e780ea6
BLAKE2b-256 3a4193d073c19b96419fdc8e5245c83ae71598cebc2b607de8dc6c927620f901

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 45f784b7cf6af1cc29521fff9d53ac0ab43a127a8e4fc44399c640253cb4d83a
MD5 4b05063c128bd072be67c8fafa41956e
BLAKE2b-256 087869090c76b9e704559fe1135b36b0f18f2ad45ce56b9ea5f0274e670061dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ddb44a1fa4faca51e973a7a43aae31ebf89ecfe5f74990f29aa44536536832f6
MD5 d1e44278e8fac90f5de7ffc7decf0877
BLAKE2b-256 2ce78a570b7341152189b5f959f964627f58449a60681b61eb4e56c12bc2c64c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b28ec58190c035f9678dcc675e0be3303bfc1fe1d96c9e56d0bc34a90dea3554
MD5 252cac7a717d053e7e099f1e1a96f608
BLAKE2b-256 4e3d8e578ff5ab083e2eabbfc9e69262e201e80852ed15c336c69b6f01663a05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 95f05138894a38ada42918483f71644e9c7017ec5f2ffb26399b8fb0f1987992
MD5 e229b6ca10ee386bd037d9d4c02c0516
BLAKE2b-256 11df99cbc96585dc15541eb1d7ea9ee1a7942b8c9421539aa555679d50ea1ac8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 73500dbbad122aa7210a9ceac50570b02f531e7c8a5e424a325f35471bd5b1ce
MD5 e47a9abc230132b986a736a174d3651f
BLAKE2b-256 705e39597764dea08016ca8c81b40299f1a449d7b7de744646de4e762a04411f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e531591d4c3c712269d4a54505d03800b0db53cb205f8cd79e65192dd37623f5
MD5 b137e386ce24fe4f9d10084bafe083b4
BLAKE2b-256 936e7d25d3a8691cc3344365f2cbf2169b51663d929b145e539e52364c3b59c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a3781fa8442276349d0779ef021710ae38fd4836af898426ef7b1cc5315ef39c
MD5 24135205d820c26a133bbb918e13d1ad
BLAKE2b-256 306300902cae9797f993a9fc4e006d95aa18ce249b5424e5688ee94f052da21e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c3d9506ccb7fa1b014390324e6f12118d287ecbed823122914ee8cd1aa860a31
MD5 2c385bee94e398d0fdc290fedd66d02b
BLAKE2b-256 1447801d72cb9cf79f517974aa1ca3064f6badb05c6147ba772042b4d31d04b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3875861573e1f542d59c63acbae02a026297ec9bdcd7b7d1da9812699aab7db8
MD5 dfc688c93776ecf12a8f129b1476e05b
BLAKE2b-256 16dfc1a2be1f9948a73c649fe03e0b827b2dc80551ea22555136abc30a6d40ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0251d9f2ce69527dc7d0157e46440000456e82d3b8d7f634e5b44d411a868061
MD5 874d48933474cd0c33c868e1e4507805
BLAKE2b-256 cd95b694b32a20c3eb28c4cafc3f29950f5ae1e13f9c60ef0bf2e09a0fd5838f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 619420e2c018dfff3d564be649ff16b17ddfdd00f521fb42a7a0f6ecf74f0797
MD5 872d36e373d6d64829a39e680bd56e43
BLAKE2b-256 8c6e47e0b9134718aa762503dd29039a5deabc51657c2ef8721074cc6151bf1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ed0c719da7bad6f98a7f4adb222f585801ab3f90aaf4c817a1f63c4ae6392562
MD5 386e9df296fab7187654c0ff9af54f37
BLAKE2b-256 0a5c4c67b8b7967a74f90c1c6c88e4ac2e0761b1eeaa2f8596fb548fea8444f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 019d2f06cd64befeb35513f564f7eb35b1dce3389e2bd697f22f2eef9deec09e
MD5 2ad10a8db6da9c9bb53d1a2ea7d7e5ac
BLAKE2b-256 e3167203ec9cd0961dcbd8c19bc1140e91861cc51ffdd649a251b31d2c667c94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4e61f772cc89e7cb471d0bce5dfba3865f4ab534d8409b7bb12f65230c470f15
MD5 656143abd90fc4086ce5194db8101ef5
BLAKE2b-256 02506082b8750c6fd6fd807d6aab9f36ec57a61a3c33491c8fb93a93dd6841f0

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