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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

attoworld-2026.1.10-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.10-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.10-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.10-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.10.tar.gz.

File metadata

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

File hashes

Hashes for attoworld-2026.1.10.tar.gz
Algorithm Hash digest
SHA256 db64da8ac50f69f8c192ea5f3fcc721767562db4dc28f0a215f2e8b42bda06b0
MD5 c4e868f09fbb4b5c11003e04500adca6
BLAKE2b-256 154631ecaf59b2da91e279c11961ae0cf8eee03401e2c1268422b4cc197bd619

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a7d03e4e5aaa1c3b7067b2da393bc60399f50aa540693bcbb2b4f6d96dd5e51
MD5 da721f81b1a1f5ed9fd9d71e7f48bbe6
BLAKE2b-256 90ddae7f3a828feaf58a2dc673c99b9397744b556145cbd80c320983c5193008

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6f86583e045d718cbd4df4fabfeae8130b285091df450a0659c1dc0ba1abeaf5
MD5 d28e5c32b492fee9ffb03422876737ac
BLAKE2b-256 18c5cc58ef624d98e959c775a3ed33b33ed4b5a097e0e2aaefd830fbc5304929

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5b20e2d081f84b82e9c29f751ef141c3799d86c0f438d075f6ffb8a46c6c1ddd
MD5 b53613a310d2bd7628413545c0ef1407
BLAKE2b-256 9f9fe6301f643d46b0dde901821c62a70506d53918cedaa0b16e7b8995b6eb8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8389024cdc1597dbbda792732871bed42f3888237e759c3b671b009c83a9a412
MD5 1b01b5d7cde79cb7abedce612abef24c
BLAKE2b-256 5fab95f0f99905ba035d679665f82f284bef8ef89221dbc7b8a5c9d5d1555980

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de2545798f533b6cc4f6d80c53f71d4615bdb616d7dca731acda2763cec15d74
MD5 37bf6923f4e3dba2c93634332371c3a6
BLAKE2b-256 b64a638834642c4247a33f826377e08e37cbaf03c11a88e6dcc5d89923f67fdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b069fac04df8bdc3fbbaa067781c160bc585cc649dc294eee3a82fa5f17e328e
MD5 e86a202c6eeb02e91b2a1cf0f5f29e4d
BLAKE2b-256 6bf4fbb22357fdc47940a2b88f194cc02520739f34c66d2079ad04f771d00a01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 db0c393ad7a16460144c9707f4bc7405b093052011ec3f23a8340584425e7885
MD5 3a11d0f889c852ab7a986e2ae8ce9722
BLAKE2b-256 7150bf861200c8edcd19c70fd833a14210f8c1aadeb73844cd906a9ffa512f4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 206e5e6fae7057756e006269d2d7108b0b670da0ff3efe23bf8bcd158658f982
MD5 822cd1cd27df696ffba8175c234847bb
BLAKE2b-256 8f6a55dc66869b5be3896d90864e2450b0f11ebdd817ad76bfe3255573c6d0cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c199e84ce5300abc00960446f255712bab9b7bf491d4093c584ca3ffb703fcf8
MD5 b75c245d9f793a021ab64778746e0881
BLAKE2b-256 467720f45f4bc104fe0e4e960ed6b28d72a4fdd836c593d692b7cbde5714904f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c3f14d8d3d3dd0c5c73d2cb8b8620179ba8cd894c64d588ce7197dc60707cb77
MD5 e199bc93729e66be03976e6ce66e2255
BLAKE2b-256 b7668c59e4d1b880b3b8b84591d15cb1355db4c1f554fdad26677ab4525f01ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6821e146ae54605bd9985e3894bfcd01473c104bd14a9fef139b017e35249b44
MD5 b063d149ddb358572976d4e5dbbe76ab
BLAKE2b-256 03917a71a310d9d4fd2986d530b90496ef6884fb83d7747f620ffa34408524f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4e67c2a8f9feed5886aeecc0befe55bc1451bb0ac9c488b685a857cd4ea0d533
MD5 7dc195078eada8d8424d4d6486b08f85
BLAKE2b-256 e3d85f90627113459883741049e20d49839587278e2477c9ec19d600eb61f246

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ab42b5fb0808aa5676e3849f7900b4a7437637578886c29eb315faf3f901739f
MD5 2726f4f8d0bd0f619d77601701d9f880
BLAKE2b-256 d8ea5995c3e2497895c41a10abf425abc2a3e4103a91aefd5614c4840071d3e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 de290485835b770532bbafab164e766c151193505f9f5642c317d448168b44f9
MD5 31c5dc5c0a10a1fe12d27d26b406b0c2
BLAKE2b-256 dc1a8a3c10ef7c55e06de205d8a8c8e170715931b695743dec4763ca203771b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 75eb208b74e586aaa3b2a92057d56cfb9909a18807a259490cac3b91fcea70be
MD5 9b7e60a57e41d008b940c736fadf9983
BLAKE2b-256 6b283a885fb12b0f42b570f0a843dfbc9e8b8421aa711dc5948f910771f02968

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f77946ef3e2cf76dcb814bfcd260bcd30612d6d5df27a767c7bb65db8cd9713c
MD5 377c9e39533f1c135e9165c85b85798a
BLAKE2b-256 cf4ac75d15193ab1bb24ba58dc8e74a27b9296aba33642760d22a6434f213072

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2b513b1bd1bb6b6d8248de97c175e9ca863a44fd1f74c6dfb63c37226f06171d
MD5 9ef6799c945feb707df064f8e42e9e32
BLAKE2b-256 e18e5216a3702246ba03534e330c7952a459befb2a1305418266d2f339c1c733

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7b882cde7f4880070437ffc83c1295ed2c8294a76edd34d8f8a8b81371dfcc6f
MD5 f53f3e221dd4f156778958b448f5f2cd
BLAKE2b-256 fb7d8b8c6726c836dc9db09f7a5ee067ca3045fe91c801c7887c75890bf5054f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e125ee23dab7b5d33318416406e6d2c3d7dfc0a7e16f3464e5f36173d3d4451
MD5 a547b69efeb78ef91a6ae7d5290864ac
BLAKE2b-256 db968523902ed4529251336d0fad00c6ebc7ac2a500fab9008a33203c3093965

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0b677ab74e33cba1ec49458a936e2681b5736c0da07c52b3ae9d9f9f58d5e25f
MD5 a37d013cca0a6e2a5f568fece2955f10
BLAKE2b-256 9d921196f1325f2f74e04831f2556936744ae461a0d2acabfdcd4f03ef312128

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6077ec89da6b83feda9d9a078757e7b963941bc4348fa6ebb77eb18e74b252fc
MD5 5e95f19d0a9bcaf8ec1db10991a2e12a
BLAKE2b-256 cb365f5c17e64c42af6ecab3293727dcc58fc0cfb7f3554cd922e88cfdf17685

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c1fb8877a085db3157f059383866e796fb4d66104f697cb6729a2a684c9c86a0
MD5 521c07199f5276dbc981995c2e752886
BLAKE2b-256 50c8241a1bc2802e1aedc29f5c756614905a7cf1854067830b77e804e8740f69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7d94905628fed38e3386c5356fdd550ae95ba8fbeafb55c25d9ed5ec1b96503d
MD5 1aefed428eac753f348b3bdbcac00d7b
BLAKE2b-256 4db5cbf7e0cd40b8ee8e111fa3a40dc02db83d8f9539e88f60b6fb035d95b123

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3c9ebe44207c7acc03cefeacd645058b530ddf280a4572c7f55cc5c67ff014dc
MD5 362c8c9890cf580ef007c5e861745017
BLAKE2b-256 10074d6815ff9c3f777b48b5c216fba53a06ff73f35c27597a2942c27614062e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 121a34df6ccd4208462ee637309e975809c24b2058da03128a13f5fb965681ab
MD5 eda8e1da4d091defe03d4b57b01a0b65
BLAKE2b-256 be58fc3c27deba9bab523f7954f5e53f0f2bafcfc201b0195932e9ac5cec4807

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e809d79e7a770cc783627ea6011705339729e13b9e2d48d9ff269830c1ae6338
MD5 375c64a5322fa10356c13671edca7ff3
BLAKE2b-256 89dea824dd88809e07fe90338fd8b4f31543615309a9fa0e5a2ef681c8c9b363

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9558e0665cf1d89f74b5fe543891df6ace694542bfee7684e82f543aa01b0777
MD5 9c92d65027af6d3509b29267e890836b
BLAKE2b-256 cbd76f78ffadb9ece7206faccaa769422234ba4cac54427ba5db74f6ac0d66f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7cebb0236804c4ea960ae60c3f5b05a22c36978b0216362c55cf45a60c8b440b
MD5 8282762fe4c44717a413eff19cca4ae2
BLAKE2b-256 0231a8baea915faffd748d0eeadd887036c4e36c0c8bd8757d3f388d754b0dc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c167c9dee2fae79b191952faa24e42687d583e30cbf37b077fe573ceb83adaac
MD5 444fff8bc4d66988563eb4edd61c91bd
BLAKE2b-256 c3b07c19bc48dc44e49befe7d7b26cd7e029218fc3e58ce5d633ea1361f8ae13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 76bfb55f535a80391939f96802a1e5c15736f3e6f55caf316357e6e179b556e9
MD5 2b9c850d4aabce6d68f4cd39a25b228f
BLAKE2b-256 5d91438c581a5d6d1afab1bf62ba9509e9a2946228e0aa155239a7df9d45b15f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4e6965880a40ce9b74de8cb77c58b7f8d397b1eb51c9cf7410b8791d2b7c0b99
MD5 d22aff0a83738a55fb43924b10860bcf
BLAKE2b-256 5fbceb6dd947cf1c0b78060eb7f947b6afecec2249d079c57a261b0b42a5eb27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e777ee66f6fe716843b18d69aec96d538cfde58750049c3b456499185d6fa98a
MD5 5f74efdfc2504265a07f4285e6295308
BLAKE2b-256 567f6c1b0cca1dc711633700c296323f4b685850c8d58109a34903e213db57e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 58a5289401cd7ddc143a4955dafb0314efac86212739dcb1a8afa9ba780054ae
MD5 a78477d547ad98eaf15a28ef8818c5a1
BLAKE2b-256 00ab5af00dc11e855fb5093cd217e0fc6bce023ea5cb1244fc292eb0ee49e501

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f51de909b1980336e5675503c36f8ffd6bc5d8729d625622c2774c80a564f776
MD5 5f803f2dc0e525cd75cd6802a0014ca1
BLAKE2b-256 36dfcd9f0a2b35175ee687221d963368a9bde7489557e75030a8cc58c7283384

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 98d303ec89dcd474188332cfd0dbd0cbe502c539257febee9f15fb53651a1c62
MD5 55f789ce8773cd04876c04ef21883405
BLAKE2b-256 3b1124a051a5f3bf5df9bf4d9241a8382c897cdb740bfd79d42bcfb30118cbdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 2bdea0eb1b1c06df8dc2a93ea6187137acdbb05ccf8576ffe36966ef3f77af93
MD5 ee4631bf5096e95bfe38bf5eb0068fa0
BLAKE2b-256 5d10bd62710a1e06a07d8efd1c224a1d23ddb0fdeffb971016b84cf3bb930280

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 028d2359626eac17bfae6887c66559f0d7b702f5278f6c3980480b7f923c9c75
MD5 7daf335541558798416f02a516d25195
BLAKE2b-256 19e413604bb926a9070319bc6063a41bfea97d57f794fd0f6b398b68b86b8189

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e4ea2ebc12dd5f874530dd49268c54be09efec610c723068d572396d97f48724
MD5 a277795f58ced5d2657313d1148f136d
BLAKE2b-256 3da470004c8d022faf83817932bf1340bf9df4bd7e450bb0ada25bd6331de0d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a3f77ea5af13c0d8053f609f7ad07fdee1424b8c85c669de6fe0e3b6e6f0fb1d
MD5 1ca393e0daaeecde2916618093a0b10e
BLAKE2b-256 ea35da630a3daf2a3d5d764c120569a65d1209cc8005c9437648063e5237228f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 89a5243d169cfa4401beefe122862584d6eb0fc8cc0ca7462500ff29f7b19869
MD5 4b8a06c41605ea88f95485602ffc5f1b
BLAKE2b-256 5dc3025ac2ab3cd9d820e08bfc5cc62eea9659ba001588e510e910659b4c6f8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca97331b3ce6ebaf3e3a7d59672fc2445b2a318ce3982ed9819c642c92c73af9
MD5 8c5d5b91415a316f466e6f200482950f
BLAKE2b-256 94df158c40a77bc560da1d7b1d9a65facc287185fdacc4e6a3921d940823b72c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 93e42c1708cce4f8f983c854d08a6f599e510a27ef6a64592d77308aa956f321
MD5 7e727f5b63e7b907740a2176617c022f
BLAKE2b-256 6c3525c6e6c1359f36f90a6ea8d9513615f280cb938e5bd26ee5e2995ab512d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c500e68a0bffc55ea4e0d93dd4b2812aca2a0365ea3842c55069be781847a914
MD5 21abff62a740aaf6aed50b064c6a4105
BLAKE2b-256 94f5f477441cc00df30c5be1c43727861254e00d9aca0c506fe01d93ec6cb7c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 19a2bb6dda7ac19922aa04cd74a37675089fa464ecf1e4e922d9670e9ceb0c78
MD5 614f518067e2ad7f675d569e2a2d8f65
BLAKE2b-256 90dcd9d29d4a97a1bdcd3e8509d618a20e76742bf6e10517ef675d30061a2652

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e9a2a21e229b112b28ae351ff9077a464359bf7df843dd4c99fce9739cb3ab80
MD5 5824a01025acc8ff314d563e08b3dcd8
BLAKE2b-256 3f4a2639e0fb8927d0e1479b550e11c5d1e83d154a29bd24d4b2ea031b4f3265

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a64acd35835821f6848e3ce7b69d92a3ae965d552cf2d929fd91a03d07b2a8c
MD5 40530ff9a27bc78019a94cab326b68fa
BLAKE2b-256 076fb0f51d42d4c45f271c9c802f0a8aa0138b55e910c499b1c320c579fb00bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd92003886e8a39acc02d7cbba3daafbe7da9e313de50819a8176ac7f08fed6b
MD5 9a50d7c6a2e118597d016361f214b80b
BLAKE2b-256 c66b7083327e34507e585bb98f0d5b9a4b40b22bc5ad108a9102695530371939

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ba0711f159f958fe301da42c96be2ac69050ad62f72cb58cd7881a7c4f0d90e4
MD5 1a425b4ad08d15ac282a4063096cd968
BLAKE2b-256 1831e19634ac7f9a2831b429745e9b2db7c5fe7fb78cb88523a0d29d8cb209b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 416f734f21d66d3e2c946d923da869b61081eece58abcf73935bc681d319dc4d
MD5 7c7ea15bb4f51b4122acfc7372197c2b
BLAKE2b-256 93e3295aa41de771a11d4df736911bf9945158d1f372bdc9244c0456fda5589c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a983d846cc1d621c22c0f6018221e03774f396a02dc2965b928c5d1f9d63ed3c
MD5 704e373be1e75776057aa5db9620fa7b
BLAKE2b-256 fd544fd06ceeb80b2686b0ee9e07e38c888643ba96dc81612f82d0b0712e36d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6e250cd0848835af461d461e9ff0eea52d62ef1d970ffbd8d88381ebb4f8b42e
MD5 02c7f31555bd6934865d01c7225727a7
BLAKE2b-256 95dc895900024833d3970e582ae4761a02af190dfac3cadc57a8f1acac7bb424

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e1dd6db43d44447778eea78eb57765d71c1b6673141a1a529063924a3538716b
MD5 e951e79647cebaf90f3b38c52b79ff7b
BLAKE2b-256 00df25ecbdb2e8cf0f15397a85b21a0a47f5a4c346722e98ebccb359c805d4f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1ba8b0fa7400edce2d7a0a47fc805e7060954ddaa5456e2b59402bb5a5004bc9
MD5 535d9e30940484abb6910efea4a6a721
BLAKE2b-256 414446e43c2e669b229091c6fdfda463e1cfc1de0d64a27cd3713ff1cc13b476

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2591e3614f479cbc845c999c0139701b51763be35a56129a4a3d0ed6d2fd1997
MD5 a41dc0c2d9d81ee45c059cdea6335801
BLAKE2b-256 090391b5737f2388454061b0ac94218710eb6ed52428756b77a22643ece5bf0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a36085f497b7562d554eff053a8a61f3ea0a1c0253c522eba47a6eae4c8528f4
MD5 3928712ba5f085db7e45197472ad6fc8
BLAKE2b-256 2eb5aab59fd496de983bdcd58481448f14d18813d5174e9c95fa810c899d8ca4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 372c5711d9e335a28f1e1ab55aebf2eed8d91bc7bb159ff8904e9ffb8327b90f
MD5 c03699172e036d7248e82a3124eb9539
BLAKE2b-256 11304ef73796548d98fc59062d32820450b3cd6287126475ed08ceac4610381d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 38b95df61025a7c218aafcf4809d141e1f0cdd4b9aa7dfdc8c5712e85a380e33
MD5 b8b2c1470adaeae82ecd338c8aa07bf9
BLAKE2b-256 a596011003ca9693a4a616e0f7a23b564caf88d2a202ff4ed66338c8c1daa91d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb7fecfbdad173d029064d3a506c8e3ecafb623261ddd8154274879ef7c33c8c
MD5 b853eb8fbaa1c1316c67c94b40391c9a
BLAKE2b-256 ded4c08b2974899244a32870e836e5255ddf56f03c84117cab2e9e47a8368df3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 86acc8404b8e16b03cd826649822da70d344345b5024d1416599661e1c5c26e7
MD5 a9118f5255e70e72904e1d8c0cfa2cf8
BLAKE2b-256 2aefe07105f47ff2495680f2a7d5d12813a4f94083a0a6cfcb5e32e2af2650a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bf4a770be114fa6e8f163c951d4ff8ffdaad806e33c40e9f89a12a6948853257
MD5 eeaf7834c8823f8551fb2c3522f43e66
BLAKE2b-256 09be1f28aa5b9fe8cdc572dcf7b1bd4f75e03d5bf14fb5f4a9aaf0ecc63751eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aefedbc5c0265ea03869c2b5e6b71fa14b3e10596e3ab1a1fbef91f71eea0d97
MD5 b896d6e347b09e1389f670d5a1b2b1be
BLAKE2b-256 315a63a4b8b092b666ed77bf4a05152252ef23cf4e14a4d339ca58d870fd11cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 02edf7c54066254908a66566632d05cc24383d176bd7710c8e90799236ae278c
MD5 9712e9b93f7dc2f183e0a6d069c1d9eb
BLAKE2b-256 00bdf859ecbd3e4b009513d4ef7a7652c0f0f039a6f3608840a22f828ae943a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 676c0d040a5e0b4ef6eaa9a82a61da6f46492f499433e6b978a577e4fa3e622e
MD5 c4466fcb2fc79c0148851af20d0a29f7
BLAKE2b-256 f9824f1f9023d6bc3701054ae1684fa48c2f275379ec5f5c43a8eb929a6deca5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 18a0eb58c7e0c79bae56d097b0cace4766b28a18b9e4c82306734f40b4858c36
MD5 b7cdd8333d39857be08fc8a38d7feb13
BLAKE2b-256 34be52793ac0e32ae500e281b24f76a3010274b1fda0ef15ded805d4515e15bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c0a350f074d0cd4a085d076fcde2ff3709df9f413bd5f49a2bc4f37cac2b69d0
MD5 dadac6017263bbb515554cf083c6e751
BLAKE2b-256 911ad3458bda33a951bf28e1d65839b370de981ce5628ba7dca0beccddeb1d37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f72402c2ffb2a28c8f9f2152e60071fcb2ad74c05500d148fa7d4f827e7f3b47
MD5 dbd6e08fe546c60ea9708b9ea0fca996
BLAKE2b-256 5bceb5db758595dd0bdfd2dd0604dbf4799bf2ab2dd7cbce5cbbbe3b15db62d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8dd079f6964587ffb47a019f94d53a90d454f73d4454acae1f6c6ea434acc19f
MD5 480173a21b821e5194beff03cddb9771
BLAKE2b-256 d96b2f40f308c8dfec8497c902dd2c0ff944d05d7ce3f6947a2ad01696686fce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df094700b4880d4d2e679c4192e2cb4bfc142dbb08bf17a83b9ca727a21c2911
MD5 3c7e1949ee17d677f49b84fb8dabeae4
BLAKE2b-256 4cb1beca4876db83ad1d11c3de0f85c2523b725ba756e3c5999389cc9973f243

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c6dd8b7173a580e5c8f327c9f37b4d36491aa9e83db03f0cf668dc7593a98739
MD5 f34ab1b945f0e83783453bcda4d6a8ae
BLAKE2b-256 6df24e0464c88339fe848a2a3465a4883b722ebada87eb5c4de971c66edb9763

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e9e3143732708d19cb196d1409e1888a873d2de53d38c58a786fa47b47fdcd96
MD5 36e3144bb1f3d833d3bd2ec5dcc8e562
BLAKE2b-256 b603e3f3de2790c83074b4a9244a2dd076bbaf1e64540a5bd52d7a3a987f788f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aff92e19c534354ffd4a5bb585e86894c609c4309150ae60f5c136cd3a6ede50
MD5 a6dbad4d89a815702bb7195c66a9b12a
BLAKE2b-256 3f409f0d6f8d47a88f80d3fae131f338ca859139c46ac8a2a1540c5366540e77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 85f1ea07d7e7230cce8a34c2131330189d16fb9d779f0b320ce0684baf40d119
MD5 17e989a2a405c02964ef96348fa4841f
BLAKE2b-256 4e44a45894afae7af41f39d550f46119db62ce08c21900a9b187cb8632c272b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 14b0f6e582daefb685537a23fcdd9565893b1c84962fceda1a3f5612077d64dc
MD5 e495e4e638c8afca5636bd5450af464b
BLAKE2b-256 b6052aa73ce0aa4b6cbf828661c4ab11b00c1ae82ea253109b61e61b6e050f4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e77e423b0abbfe5d99f462046fa3cf8e303c3085b90e6e6319b4c7b25322c848
MD5 57bbbb6338cf2cc5db90808caa27da8d
BLAKE2b-256 28386a95a1827bd5915cca63d0da2fea064428b0f3f388cc1d9afe1249349720

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 971320ae2062eda5a6bf2ce4dbc4ea904d5da3f2da19ff92d7efb33c9324b1f3
MD5 ef468f4ad044f1f01bd5c5222f3e64e0
BLAKE2b-256 04e24b0c61fdf239fdad1754fbebb04a1d11ba12b1836f9937aad7b6a47bd642

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 982c18938d85c2bada28111eaed8899f56fcb6183569dbfeba77ffdf06afc28b
MD5 2a267af9fa5d410e79d99cc4c50a269a
BLAKE2b-256 e84e1bb5f699f55423df5fd52d21edaecfb72968d021de33eb9e0d25016165fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 15f9b05fbf8a907babcbb6fcdd0a5f31c305a6b82709c0fc3973b60f68cff0f0
MD5 d45a7df363cc23820159745b75da985b
BLAKE2b-256 edbd849a18ce360f5f60b2c65103e3592e61da8cf8db75979a7d73c27c0762d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 31c9a2a8f17fc1fade3371dbc24c5c014863fc4d85367e1e3782f0bc303f0f0f
MD5 862ad58d80a4115a8c65fb78b4c6fe28
BLAKE2b-256 3925f503a9e759ff0605e4d913cf5058cf57db1d35c3f2253b8f9d830904c0cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e99165084ec12ee2c8905446c78e6ac200fa9f258cf562f866524700b16d0b20
MD5 5f2273ef90d600eaacbefe522987d0cf
BLAKE2b-256 86596b64852debfab5ccfe94ced6b16216ca9276730abf7d86de5ab7620805d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d3bf1aaf43e9b1b79e076c2122c6cbfb5990b8805f6b80d38f49cb6bd3151ee9
MD5 2676c715a2c26426d59388a6578f0348
BLAKE2b-256 cb13cebca43f8fcc17724359a88eb236f01225b097d74408d303418a2fc61413

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 887b0a1ec77a7ac1779419af40486b63be0bdd037b22527408615493435f92d1
MD5 90021c05435bae5c6e01f2af2052dcc6
BLAKE2b-256 7ed2da51f9bb2b084b5b12b2d450fb12fd1338b4872ab0f1359062fd707aea21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 89d681cf48400a3632ce6434659719c3278fb87be2b53bffd9c39f2d950d2bb5
MD5 0ff95d1fcd2a9c9089ce9f31338997fb
BLAKE2b-256 311f375ed4f4c288c90c7063042ef955ca91b3852192c33cc4beb14868f2dc88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6fed29a3933020364aeefdad4e37ae8cf115714d71f5bbd0840d0ed73375897c
MD5 d5dc5734ff7bc000af1eedacd942ca75
BLAKE2b-256 0c27baca889a5b09633cb22083bfa9bff38bb5e32daa66378451eb470f00982d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b1239c6e8374ed16808c337cc676225e0dbb891a31beabfa0290f887530dc4f7
MD5 1abd5e1c3af668d9c0a5428cb998c4f7
BLAKE2b-256 9769c8465b3041ed92072269ac768bd20ce7d18209e39a819ff48555eb01a65b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 42428518d1c736395a75215d07f22451cb1c91812de543c954b1eaf41a2c721b
MD5 089c318013290d563c188442ed482cba
BLAKE2b-256 1d06d9c6e0b542293d0dc68da3ce42690e3559b471c9478749eb20472c9f3efc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1253299451c6c4548ee820d1babac4475fa473981b0fe7c2dfae7ec89c75d3e0
MD5 a43dd50ad1f5ff45cb61a5b3047b80e2
BLAKE2b-256 ef19f4adf8f04391eea7ab680459c77ccbe9407414360d0712d4f75151da7d17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7b17b2a2c697722ee7a5853a5bedc7ee0f2162b24ff555abf3cd60109729c158
MD5 e308ea110df9370d87b85af68f24e616
BLAKE2b-256 48bed5aaed2aa2e53c2fdf603a95c8cc222ab54751de2080b3e2641e184e0be0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f27e86c48c844f68620ac4e419b97aee85c4567f645c2e8f066ed92eb041489
MD5 9dcc30b415ce98682584b6200e006272
BLAKE2b-256 562882392ed2e7368d6f5cac43518261f219a5db33f5aca7d6de5a70007e138a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ed3b25fa356c3f7e32c73f672b1facb6b9e1b6e603655ed704b07d14c37a3e16
MD5 107de3c5cb3c8902bd0d6e6f71fb45f9
BLAKE2b-256 4003491472b18aacf07c1ddd4720e9daefde243cb5d235c6b42361570093933f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2da0c90258410f2f95d78283bc4577b61fcbc838a3575b3cc1864c393a2074b9
MD5 3b57f0cc742b4883b3f5841c7a1a2dbb
BLAKE2b-256 11098096e47c788f56dda74e6a4cb92fda15b2e154d832eab014128f7e38254c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 808f98e0637c98bd5157b306e14fab149ec8e4608953c4874fda111c40eea330
MD5 e593ac5e804d26718f3aee12fc4b4200
BLAKE2b-256 a211c4d9d62e024d6c416ef0ba4b34006b780b9c9b1c2ec7abc808607822a73d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9e8dacc07d726941fd8082627389101b01b504920d0bbf2625db764fc5b28708
MD5 71ea863b1ab4170751e3613236f1f225
BLAKE2b-256 33b96d9744284d3cebb8a29609a0d95c70c2eafee36ad506282f08e7e326d4a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 092d064a9b53de7716bf29af1fabafe528391714e1c59e60c2bacf23a54295d5
MD5 9bd98e15f8146b723a1dff0898c1de5a
BLAKE2b-256 c579b7f261399bc8dcb6c9f31b0c880b50a882c3b408462b75160710b0c7e506

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8eab83a301c22cff192eea94969d52cf667ef1f6651936c8cf88cec049ad8aa5
MD5 6a74214fe1592baefec47eabc722013c
BLAKE2b-256 1ee2a39b1ad69d197df431ec45014534d0029dfd1f51b5edd4d1e56f3d8795d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7525d05aa9a570a24c80610479367cee08d6886d1803838e53a2fe16ec11a225
MD5 3df8efedac7e54daf9186c4cec0000b3
BLAKE2b-256 f71037d0e4dae9df78ecc66fd1f70570df1a052e690197e441feba16f2d87f42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e87b38d8f5d697eadc9611db897807dd37951c060c1a8a98f5067973517598ba
MD5 2c5b8d2fe3cb94a724f00205c75d5cf3
BLAKE2b-256 19db02c847dcc3d90ceac8dd641dd6ba9c0a1143ee9ed267defee7260a945a88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c723da14456f94c4ac309607f7a77788743e80ea8924dcf9213b5901b1026ce6
MD5 210acafac693523030fb4fa3cab40db0
BLAKE2b-256 10838df681e40190453eb2577274f4b86f125c0c4ebc013db4c3e1177bc57899

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d713a2f8c0001e53b53d617f69c3bb41271d925ba1bc31a982e802cdb00fc9ab
MD5 f86568edebc1816162edf7a3d1da397b
BLAKE2b-256 cf0ac6002a1fc20cba18c52b27f3abcf4442efc028cb633b1690011554bf89da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 68434b0a38cff7f369bd19d76730bca9886f01516a560d8b83549ec1a28ea9ed
MD5 352a18b70b96ce5214d46ae6136edc58
BLAKE2b-256 4987c8b7eabcb4609fc3bd265d4b1a8266d2649f8f02ca6aaf2e9b739a821ab6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b7b494bf3b5d32be631553fd53dad8d9a21f7a63f10d52fc7073d17911a03c3e
MD5 37047ae5728166e70426fdbe5010baac
BLAKE2b-256 cb26ac9fc3314ff0a7b285f6244660f25f9cfb30661985ed2aa929e154452cef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 add1c18a88971ba723214ceee257f25c0e3791a13c11e060ea2495b3389c94d3
MD5 9d5a6d5c5d47c1be5750e06c5f147c78
BLAKE2b-256 5911128b3a0972c2a91eaaf0d2b4894c412cd769463859c9e0a8f00484e30210

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f914ce80c475a3712c0ef4f68819354149ceef011315f5401908ba3d7c7da59c
MD5 9aa6bbda306eae7490bce78c9ffdea91
BLAKE2b-256 1dd948ef37d042862bb556ab26b2bea97ab0099b578276158c691eb6abc05514

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d80c85f92e12156e3d7727054131cdf43524692841d77c67cadcbfa3a9a5a8c2
MD5 167ddf77546aa3c7b479c2f495dd078c
BLAKE2b-256 3e00eabee5ee21f8b9da4d5f1ae4a48426898824acd68c0c998f7e1aa39c989d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5dd331c7ed8aadc6d02533d37c453a4cd5298a3bc8ac80ac50fd88181002899d
MD5 4893cec017f03abcbc30d9a4321733d5
BLAKE2b-256 d37486d0933ebd77b32c33113a4fa22a9035680ef48a7068cf7e3d0d0dabb79d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f4e11afc76ccc9450271bf42177ee71399cc9ccdc6b5a76972415c42a42de8a6
MD5 2759642b3176a3870f308cfc58fc6033
BLAKE2b-256 2ca5845fb869e9b9c136c65579c9996cd287e138d3544c312c26541a2280dcf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d003153920c87da94ca962075f77555c036f4e99ced3c4428ee12469c10ef67
MD5 e63e43580cf29b1d672394414db4b8f7
BLAKE2b-256 dd85b3cc2e084a371d46930251311749f86ec89e69dff2c1a81f501a7de8fc15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d32f9e471d7c6daeb467619c2054ba91d6934c9f6165ab09065118d0174b27a3
MD5 19b09a08ea56046237dab47fbc3d87c6
BLAKE2b-256 b93a108c3b6eab54d774af85a1f04d0e20ddb91545ca1dd33cba5f82f26bbc6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 89a8c1e129b374cfb9ec52f3b389dfda0a4f72a819eb4d7f5ef32d55817e17ed
MD5 2f5999cf56eb25c7b734c4fa0b4bc803
BLAKE2b-256 bae7401fce54a1a63664549f708074e8ace183b926ee64e3152ab86edafabf7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2d12f4ee00e7137a19d6b447e0d633251e6f7f3b49557965ff566755aeadff7f
MD5 fd3cabb0f39f8fa9878451c5830574ee
BLAKE2b-256 f611c7296b88a591a222667887627ab1ad086791048c0a4ba9a9c67d3675775d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ad1112b2f1c73d07d78ee640328a300c3726188ed735ae89292c1c96b7896058
MD5 a4bf50652587a69940e5fcec76075fce
BLAKE2b-256 7bb808c778e850209845a2ff975abf9eb1daa8a483df182b33ace534dd5d6b36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 589f634cc07db08b558bce3f56c07318693128f0c7f04186f956ec2397a21fcc
MD5 92e1c0bea18cd40e03dd74fb9a566f5a
BLAKE2b-256 af2675cf8c447324ef614142c7964afb2700df93e813dc6de2aa4bf6a37270a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 386516e34ecf9d426714ac1cecccda925ed5dee812054a6e1f9a5fe31ac06d60
MD5 e63dd7dedc1b79fe42b45ad97dfd41c1
BLAKE2b-256 920e68d82a49cd0dcb51fb644de2a86e1b5a72f3b86cffd4f49d6059d2f1612a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5f4e83ba33ac99bb13499da5052f340f1ad0c2fa3ca89bcad318cbd084b4b529
MD5 84c9afa17c76fcb93d9b7529f0a1af7f
BLAKE2b-256 9c7ea2845ea5c2b984b665391e8bdc9e283bc94d8024da7f7655ee80555ef0aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 991fca2dc31e5655e0c343314adf517db1fbc52e0d919337b9a19af5c62281a2
MD5 544cef3fa656714c2e9156edd5a02972
BLAKE2b-256 9f7b0ca4e91904c544dc6efa2cd1a2c5159645f72c9abba1795bde4d5e04edec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 12c1832ba723b5fc70cc16ca42ec403d1dfc37b376dde5d4d1e5290d3afc7427
MD5 483d26153bdfe7d23396aa1105c32c95
BLAKE2b-256 e43e0332bfc07f676efca61766edfa1b447377ccfc6a32e2000933360d3d434d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 52e369a8cbdc3e573d9dabb69294b13d83ed593793fec35490fd08d1e1cb0b20
MD5 ba45143a254f8c196466ede2a648f051
BLAKE2b-256 0f5c6531776e89f36bd38843e92ac659c190b91376c53361ca63677d9cbb59d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 735f605e63f0ca94fe1eaab344708044f2679a70f3ad02a7939db4fb7afccf51
MD5 e07f2e83407a7c0419aad667a604388e
BLAKE2b-256 6149141ddc1e6db28113e8cca9acd4ddc1cc8eb499994af3a4ef113a7f33d0b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 99dd0745912aa8a492ddb62e4de5fda6c5c98888532aef9d9d3432d01ea56f39
MD5 736c8bd2c4477600a3a28eb1397ff7cb
BLAKE2b-256 34cf86aafeb470751f55de13ce4139a1b7216e261fef6c704dce57b875712de0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 791d2e237c95bd4f9037b34f4eedcc2117acace3a769f4dad69ce5a85e5fae00
MD5 161dbd951013602b318799cc877e2286
BLAKE2b-256 db9a30e24ab242ac9def670fd4d91089326e0314a279f4b0236318bb88bc9274

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ef014b2a94a8f215f306934e0cf597ae6934b4de6a33cd8bd5f6f9a52ceb16a7
MD5 90793ab68d6658f48464501f6b731978
BLAKE2b-256 1e4e71e940464c183b7e72a902104c1289dbc032ac36870b2cf26caa9101edc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 87c5a71bdc749074320619616845a43d08038b6b9ba059e1398aa02ec9f98a9e
MD5 6c1370563e03def6db76f9a110eece3a
BLAKE2b-256 aea7d632a2a6984ab60ba2af93be336f5aa204c53a2c5c89d36f92e6fdfb4993

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f293cf1969a628028a422a64c609d2287c7a2ee784601783a72f26a98b23e574
MD5 ff5455edf101579a91336e7b8eaa4738
BLAKE2b-256 7d652f2b39dade3b5d66abb6ee3ea1c4551f29d969235e557e1328051b6b1dfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c797354433ae6a168bcc4f669ec6672e18cc2afb5aa45f1d07b4690339bfb23e
MD5 c2cf361c6e21c41e1b7da03781b50ec8
BLAKE2b-256 6b9ca9de03176312afe91385e32ecc98a7a9e47fb7804e1e88bd3b4fb79dfcb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b87a63472c9f22cdecda8d209fc3c0fca58548f0c85a52f5bf39ab19adfa763b
MD5 e005081711b0fc53b239ee63532aa093
BLAKE2b-256 fef5e404db3622f6995f0670be8e43222b647bbddb8ed8e3c4cc078c1769d914

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