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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

attoworld-2026.1.8-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.8-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.8-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.8-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.8.tar.gz.

File metadata

  • Download URL: attoworld-2026.1.8.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.8.tar.gz
Algorithm Hash digest
SHA256 59dba317569ff82fd0df79343bf600f3de7aeb3dcfcf0f8e38a7538b1ce4d3f2
MD5 8478c4414b81ada8c345507acf9a713b
BLAKE2b-256 f935efc738ad83ef7fc13904f717ad38d917a1c410d5a15151726d21983fae46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 09007b2a31a46edb32746833703114fcea59fcf82bc04dabac6a49f26cb369ea
MD5 b4e6c4f289af6781582d02d1cc1440ff
BLAKE2b-256 94b2c198f9ca6f7215847d28d7be39a0024a0f624cff6d717cc4e826a37490ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 068906df5d5eb032f41e910ed9c0fa0b61c55903c18a79ae18b5d7d5967b3f23
MD5 569a45dd124b30f38d10e592a7af38be
BLAKE2b-256 1b92480961268ab1becea3675a02ea1ce9db538b44aa77f049fe67c1d3905572

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4a96d411d84f1c6b1577139021c6a6e878e80464dcc93d5f6b37c712ed94a47f
MD5 c0a3ee1a0e0eb8807b19430fc79976f2
BLAKE2b-256 aaa161928397302624decc74f6471c1d334731f7033d230c569a0f2297374ea7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5208ec4db8d28a3dde15d04f1d4c7492f868803fa9b5896191f855699cdab421
MD5 677e696482f3c442735812cbcd112216
BLAKE2b-256 ee26ff82bcbf09ccf415413baafbaefbe1131a5adddcafe5f54d11e6b83d1aea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 afce3bb62713bf590480cb41a4a30805cd017f36965073e54b8fbac507745007
MD5 6ca98dc77a96032cfaaf52cef5e6d32a
BLAKE2b-256 ad843454d738731cdef45eef34c377a4ef817538fd51847e5010798e9cfd7975

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2a09fca14d245a7b26ce530ee2695f5da79f90f573531e5e06414bfac1eab6ac
MD5 dbaa2af5296005586023fd573cf5d4e0
BLAKE2b-256 caa355911556da2af847f44a1bb15ab36439d4b3e28c912557a6ae2d87a039f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dba2387c7b755f4c9de8dccbde8bd749408fa0fcb3ba885177df86507c028054
MD5 790b11a239fdc3ebdccfec242dbe8395
BLAKE2b-256 07de75fc8b5e59acfb4e453a4ed60aa5b07d9ad8a2361b4a7e337648eee4a76b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8b619f070d33a723b991dd74d504aa0fefb934fd129941e3b23deeb6b6ffe35e
MD5 aa0fbbbbbbdaa65287b91c383423fb87
BLAKE2b-256 eb51f8137d055d15cb6322715f16a096622efe1d4283ca7c507b6e74184f75dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cc995b8812c0ccccc1056d0efa0235e9f1b7e1ce5fa91b40088da2aec1b6b548
MD5 70017c69f9538abcbe6767abe18e5af0
BLAKE2b-256 c05ca6b90a3b617d16aa0c4565514ecf69ef44ec79d5e353128c3a49b83f91a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8232b97cfc791ca425bc31a0ce8aa528ee5060fc45aeb2dc2026d9407db4b39b
MD5 1b26320d7499a5075a7a745ca2817be5
BLAKE2b-256 87582bb014dfd2ba1bd5d4c45c195e817b0bddba94c3c78c8d8b6860f72625d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 86d5bdb059edbc3494f16d18f247d5b24a37322298876a3abb4b8b1deebe73de
MD5 03741aa9c844a253f62bc01c39c80644
BLAKE2b-256 02e3b158645f6d7796f7ba1a2655ea1950ebcabff4f1ed02fabe1eaa57fb1f5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 54f6eb44d0e24e20f20d6a2f8a13f8514a25ece4b5162c1361e155a402a5c0d0
MD5 ec2f96784b99456fc9790382458fc168
BLAKE2b-256 9442dc473068ef076ed0ba0be3abb58b628518c797040cb78c86ee8be15873be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9682681c57c8398f65ba4dafcb34cdf1d0e970f319c22c2d80e3314c49515758
MD5 0269a18483771a177d37a93ce7c080a1
BLAKE2b-256 88bbc51216eab04bd5f6495fe8831df5f310da41fa7e9b5fb9ba3665b5f7b87b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7d80c69f96fcb33d9b942c2b7e70229345214f54d4bd4b11add94c588d959318
MD5 32679cdc4c50b997255674a4dab29527
BLAKE2b-256 2d08053c1bb5c35871c7e952d22cbddc2033614f0d51dc0a86bfc5ec4e1872b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 09935b23c0e37d90894320af7171a97afdb932f1ac66403b7b186132f6b386ee
MD5 3eb1313185dc1f0debb84486c4661c81
BLAKE2b-256 ad2303eeedb0720ca6f9f0954e7345155c88d8ffe63c493adc6723fd5834d551

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 05958b372b9ec6ea47982f6acf973ebe97437cfdfd5816a01e6a10f7ff8c1ea6
MD5 7e229c45fc1f10cf56a8fa34e72425cd
BLAKE2b-256 84744281eb5337a99295f6bea1b0db6c96bc4bfc91c337a7e94ab0f9ac4cd70a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2ec5fb381de2226b3f90add96742d3cb4bb8595c47bc008b417ba547d7398a19
MD5 9ed88b7504404b72640b9c940e66e85e
BLAKE2b-256 a118df5762835138cd6f56061a0e78ac5d4f1529170614c2808ef0d3d69414be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8d74b4e7d51f12d1df17edc8180dfb17f23412fc77df0ed706e2366cb7c9249
MD5 f3c9ed2d1a0eb52c38f9b76146bba7cf
BLAKE2b-256 7d68189212446d94da9ccbbc46e614794f5587914d62fe8044c98679c5f214bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 105eebf9725c77b221442105c210cb053af7eac81b2702712ea09c7be6343f13
MD5 40c3b3f62941207bbebcb904b637e389
BLAKE2b-256 690f8e8ea7e1dfb0d6f393a35611b93c6eea261a5da8d7860ebe904f17ec6f8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a708528f5d16524ae1b0b4783c0cf533ed44806c80acfd606a846761d45381ec
MD5 81c9efe00d3ce1bc54594a944311a1c1
BLAKE2b-256 d5f84f236f845eabb401b0c421e2cfa3e112ca05672898be397ab73351421980

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 10d6f992ef7c93b706e91c560c88ea5915ff7542ddedda125c6e6a6a8f269192
MD5 6a3aff746ff4bfabd004657b77b3313a
BLAKE2b-256 f49beaa9dde0440e8fdd4028e9599d4cade7a90305840f4dc8b4422ac03ed181

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 10144a74eb7c816c8862db17a24026d995524f453190146120bf23ad66356d4e
MD5 8c8548436998b3c69cf376ed8ea33a32
BLAKE2b-256 966e01ecb92fb83144b96f78987533a27efb49bf452fa57ed0a905e5031d0847

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a0ecab0b2f3a7c69c1c18f41c3372e2771f5610856c215d15c9231ec6ba180fb
MD5 23d3dd107481d366857ca07bd788809f
BLAKE2b-256 68ceb3318e948c340efa793b5e36c4b293c134c58ebfde66082c1e04403901a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dae1247f82dc1bd48f6ab1488bf62755de0ea3bacb29983f18999269a489f912
MD5 7ebe35a63d828c9bfc0d7aadabc9f85b
BLAKE2b-256 e436e53c135a771749634bb1a23bc66c6d136d765bcde648421b4a56de7888fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 965e898ce838c0332f2b0d561238c983b6ad26c0303038b6d3c2dd5dbff508fe
MD5 f1b039ec232127eac478d189ca60a53c
BLAKE2b-256 38bba3b8b366652257acda103c95bac8d46377adb89a22fe5a77535e92e82ee7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bb17ed0b9d12e7d1b4e0206d8bc4330b4d1383f6cfa3eab029da88d2f2a821e3
MD5 a0869f7acff65c50c6b6079b4753e8c4
BLAKE2b-256 b1dc6f68d9754fa45248cedd57e4847a9ea9090aabfb8b890ac9d613e824a4c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 093c984d91b021eb068fc33bd848037888e1b3a866860d61557082c66d3bdde5
MD5 6b5d2a540562f4ac44aa233ec49be942
BLAKE2b-256 8a37fed30fb2cdc8eebcb9adb4d075841471be0efc9abbcab22cae29e51fa609

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6da02a62adf5498384c64230c393e59e40f78d5b66859d1484710bd469baa038
MD5 743922811f8911dad6eb6bb84dd19643
BLAKE2b-256 5c010ee144c5b4220f217a244622cfd2e1d393014268333c08ed8ace59c757f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8ebecd4e625d12da1881dd32cb333d7a84e245058aae1c4075f0a062e62e1515
MD5 5486e27a202619792d47d4a379d87c02
BLAKE2b-256 6f2b9afd5b611468def1f3aceb2cedd63f7ecaad9f62454ff8b0e6d1cd38b226

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e541976ba28dd777932f66df15af640187decd675b2cf5d3238ef0770b0000b7
MD5 b0d1c21b37dd9f202f2b90a2d0ea4ee7
BLAKE2b-256 08cfeff9ad6602d7b11eff4ec216fa9c6584f403a467db8d51ad2aee3d285b83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a70f9c977b1eedad95d6335541e565ff17012963dd14e19841f79960d2d51935
MD5 b734054ffdbdbd9f84d5fb7dbfb719c6
BLAKE2b-256 3a7812743b7e576328565ad5cce68d5bb6a885ed2d9b3f3d8a1fd3b3b5afd8c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7ca81229c91150bb958554c9de6201f80d155b31f1d604006e993da7399b2547
MD5 e35a00464de13cc7aec82c7452bde93d
BLAKE2b-256 b4ea874fbbe80cd4c0caddaccb990fc61d73e1b686a6385484fb752c1a58b102

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 235d72ed7d48afa50d2c0f5306298501d28739966993d5cf87cad3d568997189
MD5 abc685d26ae218995b67d4b172054732
BLAKE2b-256 d76a925d798d0ce0c6532ea89446ea4c99773b1eeccc5313b4bc0031b69596e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 92e37099d176adddb055a6449d02f4833a87a05c0f8b1a4b1d41791cc56bbe23
MD5 e477344d3f5e9322fae4556082c43391
BLAKE2b-256 eab0f8fc3da8a4036e50616ce1a6fac3a146b2d3f0cb80431aa2e60d4f804ab3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 aaae9d1a20ed3f8d62c1809cb8fc01a15767a706ad7f45b519c8051277dc25ec
MD5 05f34c2aee22c113bab8ff2385ece9d8
BLAKE2b-256 f4ca4b1ba34ea1d757298958e5571b43c17204bc3a42421cecac06887c6cc96e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 ec79daf53a25f3dc36c9ce022fbba03d7a50aef78ff3cf3e9e558e446fa8c74d
MD5 1d7b05695cf84d545f62960ec02b1d0c
BLAKE2b-256 f8feb4e3c8333255d321e15329f13068482d273ff7489f6f4e104c23a0ccd88e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aec552180ad69926edb42c9fecb8e8a2d99ed036944dfe6a85993fa4eb900a77
MD5 a00b4b36fc0e873c505cc77eefc12f61
BLAKE2b-256 b106c1fbc212a7a1ca6f5575a87627a4cdd27dd170da61a2d4c1f04ab4636cb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 152a36790a95c9ca0d646a3a88ede6785c29efeef5b5fb8306bb6eac65622114
MD5 43bed2c3f21b459656904a954c4bd163
BLAKE2b-256 e9ac12866552ac03042ea3f5aaf5b356230e325e0d2458af53409aff503b7c9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eadb12cda62151414d9ed8886f95870acd5249ef6aa9b84fb3a3a01762a61eee
MD5 94b4e930aeb8e1d6db97cde5858b595e
BLAKE2b-256 108203e874b4624d13b61cb9ef69256f671f74632484edbe8ac97158cbf58c54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8ebd5d806565898e6a3071a2500402699ddfdd7f8698c87a6be2a9ec0d885429
MD5 53f582fc3035f1928a79000ad2e653a0
BLAKE2b-256 a28c4021497bc340112d119c81868148c2ad92008d917da9ae0f895708fe09e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a12f832ec5f05ed1d1e36cd8418278196e5b415ed30a654e72fb753fdb88f73
MD5 82bc358a1667a5c504ec83e9207acae1
BLAKE2b-256 97d2e85a9112c1874db4a9e317466cd8b1ed507ba850800fcba5a347e297289d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3e30b4d20977488aab87146e73c01fed383e6a27947dfaa93574856824b8a1a1
MD5 2afdeb2a3479a1fb48e178cf223789ac
BLAKE2b-256 2e1e85351e36841a6c74f9265170d4be008bae778a2a1b1229c502926441e448

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4c84fa5c67f9193974e5558cbd4c49ab29b4f64b3b4de3e4f4e0428d11299e81
MD5 f076bcf4ae26310ebb0ca44d1984ab33
BLAKE2b-256 a09dc9b30b500fe49c9425779e31e0bfdd5ea14e6f2ecbc50937acc9e197d6db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 29ad617f1814867e3a5d53a52545f9b341e7004fa743d71fc9fead8c66a19e75
MD5 710dcf1acf1b41780773594ebda74df4
BLAKE2b-256 52a47485122c066a8f11cd33a40ade4f80826b025908d6f022fddc2e75779bae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0441b992b27b516e20e969841c040cb5085f7a1b4b2ab1e6f74459606e1edbe6
MD5 8fdcd66b763854932a388beae65c94e3
BLAKE2b-256 f563970423ff8bd512f8ad95f1e8f988596335b725aff9b3f93e98615203b996

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f232930e2458d6ca3bfb4862a9b6f688a943c7de7b8c47821a5c57bac3a5ba5
MD5 2e504efb507e5adc4a96f72c33e51772
BLAKE2b-256 755253021e8993facbbcef61d7de36ef6e3ea82c9c27552c0d59d40fef57b9a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f1b0f0008f848ae656ec2fb76332202ca8fccf37b8547c049f09aef7fe65840
MD5 a09ff3dbd16f681344d8f849dadfc3bb
BLAKE2b-256 1ab2fef6df584fb38f079ce024740f60024350a49b28461c321bd0d4f4bce3a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 30d9da110b3d1243a64da6aff1dc9058eecb093923833a7e6e7c1c8ba17c7271
MD5 d23b06325f292df99d7001c57e26122b
BLAKE2b-256 810deb1719c3e07a667559254dae135a0ed60c5d18fb92a2b84200765b0b8591

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6574a2e1993d6f727560c4905436e8c85ad5543b36276130f6e26ddbf4c24879
MD5 6cf7e8e7f533663e857b38f6885f44b1
BLAKE2b-256 992112c4c860ec3e0128503df9de77bbe7bd906990c478290584c97c3b340a27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f5b28f7f0ad7ecc21759dfea39c1e89a7cfe884fae42022c82432ce10fa2069d
MD5 65a6d863fb35adafc5acacd8f57ef6e9
BLAKE2b-256 f8d212d53e852f25ff125603a02d79a3857f485a3c4a9892e139fa214f1616c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ac95ba274dec6b3ebf8e24b427828076882fcf61f8b7a2814632e086ce0cd3af
MD5 eefc1357d46d35667a1a09bd72a1e499
BLAKE2b-256 59f21f69e184ccc658197a1bf8f8875765a139d2b68692635dedfac126b09a73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 746b2eff5966a8b8d148d5d0d94c144e73b4c78f2630d899f09a411cdf45b890
MD5 0b1830a3437ecec18d712b89abd70aad
BLAKE2b-256 bbd15efdb38c14816ac1b4e21e4614953b8379f46bfe9031ae329d44b6a628f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8d7e13e06f7f3545bfa63142b5816a2732a6c54da34aec7cd26fbe08f01e7b6f
MD5 b41eab6d207a670cbe3c36a7edd184db
BLAKE2b-256 940c3495675b098e76d1b665dcec35bdec46bbda833548d9a9e8a317fc939e03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 021f4514995b3d358fbd3b02a707796e6132e67c041625d4758f1f55273d1136
MD5 6188d0e1ecdd2a0e19101e0856deadd4
BLAKE2b-256 75d7c053e76ea957b4d713029e9c1b657a15daf03505a8f834fd11a10f04706d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7c2176e0b94012f0a92d8e5e8454ecf89006b0e3deba22b3e64448d90bc10c65
MD5 159e81ecb9c67a92a042f1db21c33b41
BLAKE2b-256 68e53ff9592ff81a7a960cde13e0926a26879ffbcd7033cc503164f305b03a1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4006c13374862004f14d5f58acb7f85fd7b9a7ccf623dd82a1ec32082f2bca34
MD5 92e02873637a0697cf4c7a37bad50302
BLAKE2b-256 2198cb5523aecd07fa77a8794e33bf8b24c7ecce56add2d835a833ec830d6544

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 76ac28112c677fde2f168057550128d6d41abd3286b7f70cbd0a1a85bc3137be
MD5 6eedaccf0d9b6dd2f6495aa9673134f9
BLAKE2b-256 12c43743c246d242f8225eac1a3b8f57f0fad89f6bc23a8bd10e37631beb240d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 90b69a7b17298d5403e58091fea1594aadc37ebee1ad80bd74b7d331719ed62d
MD5 00d6edf5b33eb0b20bb3a4b0515acb1e
BLAKE2b-256 a037182aa60088d27966985ad4d120dd48b99daf58530445b532dceea0759e91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c93dc6843a60d86ed3c76b95f404633439e0d2435c571176048f29113c947db1
MD5 5cd6fe59cf1fa19162a49c710584d1da
BLAKE2b-256 ffa9f29e1dad225e4b174d000b4f8e98da757b7ed21143d5e8d0d780af479f2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ddf1e2d654835b1889a336f9c91fab95e3cb86b733142293dee53fc120549cfd
MD5 f7c2706a9fb7bdf972662efdf320c747
BLAKE2b-256 e79c5722c4182adfedd67a566a19e291630ab49b347fb7d26097f3f366d75954

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5ccd834fd33c23cab1754cd1b6fff0e892e494dbc339b3f6f8df21f22dbe42bb
MD5 4c23d61ad2a2596f377a48aa157d2ea4
BLAKE2b-256 8a11b3f090c2aca3cb30e05553c349793df8a3ada3967d96ca74f9b296bbb3e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b2ecbd5d0d20b947c0d519292426768afc8fd867aae54c0d31b2ab567759ab0d
MD5 da27e025cdf7634c8824f0c7725a8af0
BLAKE2b-256 43012073f67eba72dd068366d92622944ec831b143fa8c2905e01885c12b2fd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7446eb63c48b6ce81ee9eab214137dc37a4c603f961e362713db13f9bf84a079
MD5 dec20ac0293c817934b976e6169acd52
BLAKE2b-256 0f99f3502a19ca871bb56bf7f5a1f47e512f723bc7ccb04183de289cccaf1647

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 360507f3e774aa9b080cee0b60eebaac47c554f6a90d88e9d8b11cd1b9e7a8ef
MD5 8183dd0b3b33723dd8557f59d2a0218b
BLAKE2b-256 9c3a002976475b8e5c5b776a85fafee91d1a735b49d263f58ceacb1dea60b3b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 68e6460ba80fc79f945284f57fde6bd8a337b085b01bb90bca1450fc05d77e8b
MD5 a7c5d5c4eff038b8b9552df84cbe96ef
BLAKE2b-256 3c81d332ce4540117af487c9b76f3d9f2d87d08bb700e7fddb3f9851930848df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4ac84b0b9ac383a23fddef18598c1d90cd68934747365c0fb57ee66a3397609c
MD5 b79d9eef0f263cf59388aad6d019ff2c
BLAKE2b-256 e5acb368043d33979ca075e90e1896bcdee2d2bbc86e2f117b8399612f881179

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f6a2a8f23d21f451964cb1de60cae08350ffc72c965eb8aed046eac99093eea1
MD5 1eb919acf2ff5f15b337410174f0d98c
BLAKE2b-256 dfba77fbf3ec66a8be6b71a4eb4186d14368012156c36568d67dc482cf272dc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d8dbf031fcf58fcd968dc02cadece3614a44d1c4446a9338029807a70248f8d
MD5 6cea2c11f4ab116409418b7170fdbecd
BLAKE2b-256 c07cfc3b11c83c547d2e272aecd300d6b5dcf0abea70ead607d75ea2466d365f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d32b72060d9f37f4994769965aa4532d0d6a01419a369c93133ba818fb2867f7
MD5 d46e954e9b8d90efcd83e0f95124a35b
BLAKE2b-256 a7792323d9bf9ca7ebc0548890d96865b68e2adadb115355a3af4b6a15cb321b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2d83105e8127e8e50e8c49c455f7ca8428410d3bdb364fa5bec1adba13e3b9a0
MD5 156472fe9f82c96f1af93f7de07dff73
BLAKE2b-256 471769f8291a1f4dcd97ad99b6874db3dca805a28e62645ab611bc4c9e57ec17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 88b5b52cb45f29b0faba421b0ca36d08ec43ef53232d1e8456a99f81195db1a6
MD5 6a15dbe531e033e0e1701583bc07c405
BLAKE2b-256 3d51122cac623721d784b0888d7349b851674692f527d11a6877f73df9d1d054

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bb13dfff48b4d5f27e426be2433cf81010cf8761527b299b2086a021fc3d719b
MD5 72ad5c7b7e93a8b7cc894f5132d6d16e
BLAKE2b-256 d4ffdb4d78849d5b2cf91221650931d073381778ab0c734bc203fdede2386e96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 10ccf5ff4ea2a9730d1bda2cbac9d1c1000641fe0e602cec65e9e8db81611cd3
MD5 c4b4e15dcbff00604cbe2271fd894339
BLAKE2b-256 6e3cc0985242254099386fbd2db38942fee98bff67bdc71ae57f37ed8d619bc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 02bf616599c575c249bcafb19b503dea016aed2e268d12c1a300dfc4d40195e3
MD5 b71417cf2c7765f7aa90adf505694437
BLAKE2b-256 8dbebd9487dfcf9d740445718b09424dc42461fb215683e49cd8daa0b3821124

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f59caee74671b661ea9e5973d98609779522165b1b11fee47c68ee7ae0af9ccf
MD5 beb985d8ce6423ec7c4819ba45dbcf0b
BLAKE2b-256 8278dfb66753df574823380c3c978e4e6213d602f3c58c20abe4d2b434f77bb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1c0dcff3869e079153afce354f014aad81c90fccb42e963bca0dbd799f8f8cf4
MD5 6811db8dd45e08a77ca47e4875eb457f
BLAKE2b-256 97bbe61a6d4aff0be9333543f462e7ee63490477ae59b46cf5a9eb7dfc8b221c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1e3f96a1c13fbeab31fc3d9c8407dbb05356f90e225851dfe0ec1ff7b9c19c23
MD5 96daa15eb79652e1592b40e99e2110de
BLAKE2b-256 113fe6b3a4b17f6d243bcfbfb441a4ad32a4e1cf8ebb832ffbc7ac7789eadb1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 76fe05e0bc65e4aa34033d825551d3252cfd01488e0c5e417d5797eedf33e777
MD5 d58ce5338eef308b79951de4dede4e1f
BLAKE2b-256 710b2ee80222a3d20f98ecb04ec4f55078906b86367f174779696ab5f28eb3bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b7c59d15ee124b2a3b106ddddf1f425291b2648952586b3bb9e4e705c2caa775
MD5 4bebdcb23b8ed006ad994fa57dbd292f
BLAKE2b-256 f35610f41659acd5f0d1cde9c95437e75d3bec41d8c65d3cded6e6c8d619abea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec06ce33def4203f5aa36ca0f02b804312b682dce92bf8b8a931e1c2efe31e4c
MD5 442bf168522be01ef9e3b3f287d56514
BLAKE2b-256 64e97ef7a0717cc4528494dc4d53a20d371a6d9e50dfd81642a9663beb00d468

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6112372ad12460ef30a054881b468bf1d7f6deb1e407ed715e32f0d9ea0d321f
MD5 0772ead4b969bb746f1c74213e82d477
BLAKE2b-256 d8e027483fcaca2f22d940c5d0f191387c160112018c36cbadb9971d656071a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6616a80375fc5dfe9abb9ea476aef8ecde97ddb4397a4cf497fc1ac213513ea4
MD5 ce4e86a5cb7b7c037b9712dee2face62
BLAKE2b-256 64b27340aa702b9526efb079ec18d184e173e8dfaf8c5be223d95a3cf62d340e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 463529c7426ec4bcf6496c5d663a66feb9e186f9eeab033608df3fe7a8da101f
MD5 65d371977c81a5073d7ad57024df0632
BLAKE2b-256 a7fae62c44af3f99f0e1bcfe7de09d727d21a5a0b374ff9dc4241acf6b7390c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 72a5b5675289169c15f2e37716926065c8d1676772c54697335877cd9553dc12
MD5 ae76a52e9da969859c9c129b671cedcc
BLAKE2b-256 ba4f48fb7e8e8e9759e81cae5d1b8988dff2edb281a412975fb0442af2b1b1d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ede8656e0b5ea4f87eb03caa141882c9ec36e83bfb3c5a6414387346692b3ec9
MD5 14ab02879121b30deb1bb83901ebbb8d
BLAKE2b-256 8e7a62e26c5420b177f7241345ce5e5012d80f5626435ebdcff4d7e73ab2b7b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 360949548421413d87f3d118ff848c67cbca3a71f10a8bde943e396e32a8b0d5
MD5 d7b5f11c638a9696caba154cc81fb962
BLAKE2b-256 3c8e944f6f412345815759ef79187e1b45e8fa1d23e10184fc8b2e04f760cf81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a975066c7769ce4b0671b3c3e2294a7431db19d88ff7b9b5c53010e6da7582d0
MD5 eb716c8af4de0a5286fea0bd7d7743b2
BLAKE2b-256 60ce99d9021bd13f03a741f2d2eeb7e1257cc8a80a1d57797d193c50b147c341

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b595b9a9c6713f46e547b7c3eca97b2347a97795b3dc98d0b67f8ed382c5875a
MD5 53da152a34562754c616c8be324ce170
BLAKE2b-256 343dfd58f981ad1c24edc1b4b692ca5078572517be6c6d55c41c5d7d72eec844

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9d4bbdba7e3678e94181fcd8351123424e4a22216ad2c381faf9107e6f1b7c82
MD5 c61bc2733a13665bf6e169856b4f15ed
BLAKE2b-256 c20ce522101cbbd66c11206c78985f8b87f7f2809f207692d7f8858e0fcd66d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 babe8e08e253b05e4eb0a3a67cf929e31472dd1cb8eded3724a7bb767f1efe41
MD5 d8a9e372017be5a70b8e02749cdf706f
BLAKE2b-256 8eaac3f97ad0f80667fc7b7d268335001f41844868fee52039b15fbf58aa1d84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ddf88384a9ffae9e69511e30ea09180eaa83b5e873ffb08ee193fe85ea901d46
MD5 98c6e537d784261aeaf0008713a23a7a
BLAKE2b-256 2ae425a11a7166fff073b7d3eda0534ab61543f69ff9db196aa580b3183ca913

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e27d9f88689ac0be7be68f8d7561b2a072626e6da9b15bab0dec1c906935e3ef
MD5 85bf508a275f80206e09805443280447
BLAKE2b-256 dfabc41ab1bc9213403943319d94770b4f5bba01b8446450a56f24a43caa6635

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9970339c5420d4e4acf44076372d152b020a7b4e8b5f5d6a772d3aa949d242de
MD5 779c579d35249dcabcb09e15d8731dc8
BLAKE2b-256 d8ac4efe92a130f03cef56f4db9083a21b78db1de1208e9f8f4c86cecefe99e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 170d32499202c98a43c927cf0539958a819db0c4fc492c7608387102df032b41
MD5 bac0e14d3cce44eea98919d937465a4a
BLAKE2b-256 5ec403c3d3cb6a02865805871e26df4ec2dd3cda609b80e6880aee13a2fbd14c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3734bfd6b07a190fbbea75178e0208712be86b604fec459b5f6122d3c135724c
MD5 0dd497d0069cd50a2ad17de3f78abcaf
BLAKE2b-256 42bbdad5bc5621c27c5b6231dad6f434778d6f5595dd3866ad57cbe1489d3757

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 aeeb2832dd9921f263934257b5e67fc770b69e39a8981d61f14b6ba659c0dd5c
MD5 7cd651df9abc713068b397917a578ac7
BLAKE2b-256 73f9c8de3821988507167c3112fd2d8dbf9e7daf977423953f2e7103f14b71ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b280b5e73a8fcce00e273a223006258d8f5631d7eb50a8c172d3a3a88a62722c
MD5 c715511c6adfe2246dc17754cce25732
BLAKE2b-256 ac80e24ab4c0d2a5ed26267256684f8b45a6e888d74344eb483d35b1c5f069ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b0283938b264e8c152c0ec3447e3e51115884248928bb17ba662a5deda3cf91c
MD5 cf63cfed5ee7f5224690efe89faf98d1
BLAKE2b-256 7eada581f383d23faabab0ca559efdd16d31df35e1814f71593002ba984357a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5d444894217dca41f0cce06200accdb2f6f1ced8e9c57f380738a798242d5290
MD5 426480e5ed359eb34c5e79222b51a4ca
BLAKE2b-256 e195833cf2f65b80c1535021f5d8f1fa2ad26cf1956840778eced23ec6d5d3a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e9a0fb62bc35548d292987558efd8c67293465ddce76f034cb556ffdf653ce16
MD5 d0f3b2aef3f29165d50afcbee724377c
BLAKE2b-256 2e63378b616c3c53b8f1e78214768d5bbec15258b28f57ad9fc46bc3d6ea3d8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd475d95918749554ef221f19b280901b23504b907a3c39b8a3e3c26478f095a
MD5 80e0308526760c7b33056fc5f2ceb9b9
BLAKE2b-256 36de0d87b31ffd5712c0a099cfa2927facccf65b852f37ec788fb4771365cc0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 630c0ce47a059377283e4b25a709e892cf0859907a03b633bfbc2524ebdf3add
MD5 115981c6b189457d7f5f555f1d740e46
BLAKE2b-256 7170452eb7ea6ced490fb0f8bebfcdf3dbfb0a4d3137a69fbf8bfd9e037938b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5edf03ca6619b26240ec444134c4c17c559bfc41208bc4d8da105a9296601f07
MD5 1bd8eb900f2fb8a93f39b1096de4dceb
BLAKE2b-256 52510a66a830cc21a82dd7e24fa3b92b48b16c683b2ba8a4a1309b3fc0e262a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0cca5bbf004ce1e97324c16dc5c9c8755e650a40dd933e68240f65175686ec11
MD5 8fc1816466124664e7a74e3dba1099d1
BLAKE2b-256 2662c94038fa5db231166493da5b83b0e827280bf902e865a107cd44022bac41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6c32fe68ff14dcf71a0c7c9475ec95b0821c7ac05acb8b87fe14fab41273a629
MD5 413629c0794866ab2edafaf8e66b5e90
BLAKE2b-256 dde496595990e1e9981555e2cb4181b4849e5ea2e24d7ef1e340169b3eb140b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 05a4f63361b945efdeea3286fa13845226067981463071f2a6e0a7049c99f41d
MD5 c5e1482c13761d87cf3b96f8bf44fe77
BLAKE2b-256 26cf21cb9a6481c104842acb531df564102f648fab8ba022f90676692305ed53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 982cb147ed98ee3ba2748da5cacafdfe942c8c54e207bcf93442d1791bca328b
MD5 149dc5e2705183ea6fe77add22cba0a0
BLAKE2b-256 a3d264248940bc7a5b7738f849d5993a2940d32d7f3f6594a4d2fe8a2628222e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f1eabd0584baf1003384c6be85e6b8b7aec2da68649c583d980d905724a2c5a7
MD5 c42534ee4c626a3ca2acb8da6b1a3d68
BLAKE2b-256 fdcde0f3d9be0197a0058e173dc4c5be6fd1891bcb993c3968cd6de1a1c630c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ea69496c1da3027bf5c79cfc5a7df8c0651005ee3b5ef3764394a1481593321d
MD5 6b708a371f1ecd2af2b834dd13a3bf9f
BLAKE2b-256 a625a140050e7ef43fb95be6121bccfc4a11746f3ab8c43e5c4391e68d31923a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1aea73273d5420ec49414f38f9c1242024a2c9f66cecc2b40e82587254419b0d
MD5 c16de52042cc20ac4849a9c8c9709783
BLAKE2b-256 ec079ab41e2285e46890e76826bb80ee604fe23d7f770bb556563945eed722e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6173a0be97bae7a75adc621f2b6ed99c008c91870f56d6f1b9ce9f3a54b1c50
MD5 6e39a3f0bf4cef42f7ad749721de8d43
BLAKE2b-256 1fd01299eb557112a61ac85e1a312bfed5facc7a9dace446bc383428b6a4cb35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e146fe7bc6a512e6df5b3b10b984f5995f1f8a4fc65565e57dd0206a2df6c175
MD5 2b954e34be38d3405921f687911b7383
BLAKE2b-256 05eab678cc136fa7492933aad676f36c587cee08296a4088ef9ce6912902fb43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5f603bd6690cbdf5f203d8f7eda205ae5f99bda2dec3e9b21f5f2fa1373b3ac3
MD5 2a933faacbff057a800e2681552c4a98
BLAKE2b-256 8d406068eecb694bf33aee14bc6eccfc13986deeeac10802c5998d48f746f93c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c5bd5dd5b9ee91c40ca7218dcf33806c1153a3f68dcbae687b780ae2a4f74e91
MD5 78d8debc7d22fc3b6632eed94810b6e3
BLAKE2b-256 c16b23c3d800f6c9f7ac5e50aa103566773c7fe813a372044575fcdec1cf0bc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 877b0860f73774df8456b4f0fa505dc65f2f6d3a2e7e0b63ca00999f11eaeb43
MD5 400b962b9093f106109e024cd71c2eb5
BLAKE2b-256 90ebacaf7a094b847cb53a00da081b5da5a680d4051763eacc7b1b87321985a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2910d8ac9f783919b382829d077faabd024ebc9bd8031b95ce77ff5b22510f5b
MD5 ddf346c1b495bd5b7fa795e27f7cea6c
BLAKE2b-256 eeda0f0322b884f6ab16d4f662a0024e5d6e32fc59f8ce438e873a4770462e6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9ca45b78cdaccf5c25c48b9a5ea5eeb4437061f613b832c6a5a10a8fe943e7e4
MD5 4a11ac2ba696ab3db8d61ff482c248a0
BLAKE2b-256 ef6b4364887bb44630e2f2c622b468154f2312ca898b5de0bf203ff52f8584c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 673abe8db18744268ea64b544c480dfff121f7c4f5d81312ec133e0afc044435
MD5 d44147195f5b9c7f61459250aea35c84
BLAKE2b-256 beb2823228d210fcf327d7320fcdea558ae9d074a759bd7482ecb0caba23511e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8366065ad49a3a65b34c78ae4727179130c761304b5a2c16b0971d1a8b4261d6
MD5 35c4b28844cd1a9c749047c09b8ccfeb
BLAKE2b-256 2db27d94512e5a74a9da99c0371e08fb681fbe9fa3ba21fe695681a01e88908e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bc2171b1a2a4b7e9b742032e518b975e9562e86550b75828975f4821180a5187
MD5 74c8cd8982049bf0f9739dfc26c9f114
BLAKE2b-256 7604d23c5708b64b7dd6b6e214a23449622b39a5ae1d83043cfa71cd5c45ec29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 928f0fc05d22878e7fd75ef3d018f8d15dd0d0f8d617ea482fc18813c3f5ef0d
MD5 33939980c970d2b3ef4c5562b5c94900
BLAKE2b-256 b297ea2232267752d208bfa9a124c317f5f318e1efb229d00186b91a98c1b3f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f473da7bd4d1a25e3216ce53718fbe85e16eca1faa450c141456d9a15fa20eaf
MD5 b4a829790255afffaacedaf4b2d200c7
BLAKE2b-256 351848dd1e53424cbe9a16ebe52e1504d2b328c1b6b0836adee5fe291821ead8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 708cdaee7171429fc0a63eaae1b10e5a46c285c7e2997fa52d3b93132f92dfc6
MD5 5165879b6ee55edf05a7a7e78e22a615
BLAKE2b-256 7df1f36d3ef45f84398472f455f0f1e55e5bd294868f14c958905abecfaee7d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 846dd186df969d82a5c5d49a072a32a06b2d4155fdf958ebfb64aad14fb1afb0
MD5 183ca8d28d3e28531f396584e8e01f0b
BLAKE2b-256 6d25b193baf1e3cc31a56887b242b398ae8dff8319dca1f1bcd71a42c2711fd0

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