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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

File metadata

  • Download URL: attoworld-2026.1.7.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.7.tar.gz
Algorithm Hash digest
SHA256 d6ba5a0b08e52fc25f099fd96a7952ec908424ac59fac9651a1442136f5d8d03
MD5 037da9905bb7319e9b604fdb65d69dec
BLAKE2b-256 aa251ba2bffc5bb70279269a76e0c7b4de9bcce65d2e62b36e6330d5fc179aa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 26f32ba69a9f82b5e8e776643caae96f44e1ec4c8a55ad33ab886a758384c30f
MD5 7874821c34e036a1db8d840ac0e2b025
BLAKE2b-256 beb381846dffd424ba796605177ddbacee18ad29f3c28a0dcb652ad31f8263e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1102da36514032715d9469c53241b37de349350e223b0b640f292a55c260c80c
MD5 95068958cf2427eb3b03405c2da81d9e
BLAKE2b-256 26950c97a7576eff5baaaa216f31153936a8ef5c12842a95dd39aba856c4806c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e5e228053033e40358bcf7b01d956bdafcd7d6590980871ec51e80f5478ebcaf
MD5 e9acec30cca0150e1e1ad24dbfe97983
BLAKE2b-256 c5268df4507f2d89607331a0eee71d3d6f9e9d4e8a8afc8ba8f9cbe276562f86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dfaa90a8137fe8f3e0be0b7605c1970baa4a12b803b4a5554e38f6cf019d2945
MD5 868269d1e5110ba118393254778cb89b
BLAKE2b-256 e4f5abb8fe5b9d62071c56b6ffa51bb7d737d3462eb4c509d023bde1877a215a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bcfc1174e494ae36273be92289b972706875db7e21f20904cacf6796a5e8ecc6
MD5 18ece3231278e8c64186c36276e8ac6e
BLAKE2b-256 4f86e29ba3354276082041e8ecdca5559006c64ff77d2d2a71091861c44ee62e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 913f9e39972e711e0b0200e05c79cddc411d11aa7723c4139e8395d0c7b48753
MD5 5b8513d5fe41c09c41b2a4e20db650a2
BLAKE2b-256 e3760c87172428eba20c4f789a4b5c70cb6ae7bdff10646e865ecd1257f22ec2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0d3110817bffb2cf545711a903234a20b5110febf9964d399b6458db5274417f
MD5 06a27148de48dd6a22cd0edc4e4f2616
BLAKE2b-256 6b63e25398202e9e756e93e2fe2fead4cebf3971a866255098079a6bc3b77de8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 92eb40989cbcf0e38c4bc2a48466e37306636fea81e854547fb8f50fed55a796
MD5 139a9337e2e79fd1c64eacf7889b7a36
BLAKE2b-256 b8ccb901876004a306b03947b8010c43a62977b6441b42ff2d18e8dcceb4f588

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0ad19bae0a5daf0e76eebad71aee6536f4c218cfcd1c3074e8c1fdd050534c86
MD5 d3d63fe3f20adcd847ecc43956364306
BLAKE2b-256 4f80e63e10816f395e5de896e033acb7690b4223e2e4897fe544c8324a6c2505

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c92bf6f5ca85952831697b19e1225b27a35f21c7b0781740759f9ba6834cdd9f
MD5 fbc942e39ce3e8ef4af0795b71deb373
BLAKE2b-256 b2c51633ac6dd735e10d6dc91590af9c91d144d919fcb70e89efab3837b93f95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f9f786e7c0003dfa9b9b6254c5aa0f5af6e5a1b819be6bca09b256290a3bd618
MD5 5702ed5b785c4aedfac94352a317dda2
BLAKE2b-256 f80ed384f18f0b1f3ca4ac05c9057d14f9c1495b58ac9a421e133b70fbd60f79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 58d3de03270b70849893ec1487ff1ecd28459074f170a573980af55bfd4be1dd
MD5 a27eea26e1456de4525bb06e56cea52f
BLAKE2b-256 68a980de41703d19d88752704f881d677ca4cf337f2aa461c7104f9910563316

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 173f485e33478131b048e7b0c36e0204f7e4f6701e31173dc95130453a7260b1
MD5 36f9328b55b0a9e29489935521ada9c8
BLAKE2b-256 c79476f04f1700aa42ba9829f81213b5f52c106acef7bcb90e28648e1ccc9b44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e1b851eb63001972bd79eadad2ec3582d5796c6341d674030e5ae34bcdf33f2a
MD5 1288d7ffdeba5695158858e96bbac612
BLAKE2b-256 df86a3ffcc12a1386dff07b0c5b3c392902e26d28584015a9c7a488b2d49db19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6cb1d96c41cf6df79da8395d00460aa9dc3baa10f0e80414052b356821ebee04
MD5 9c0a3c488f95ef628f3d318b0dfdeec5
BLAKE2b-256 b2435b5c0ce050fa8c842b75259020099c3443de74e74dddf169102064841c67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a2f5e924a8bd7cf07b82bb94f07bcc0be463c19f2e2d0f7d30e2b868078a0e7c
MD5 dbc0d572fdac5052f4651a68077abf0f
BLAKE2b-256 0fa34e205a0ec9f402a5a2466d4e309ece2db2b0a990e293fd27ac0ba4f9ed46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 47cb90e7aaf251f0d76cb612d57081626d85d72618b0f77c407ad20b8defb0a9
MD5 e2deba8ab4f0d0357c60eaa1fc3f2091
BLAKE2b-256 712992f100b6a9b514e9ac1b32e1bc60c8584c0326e8ab66e7e5fa466cff90e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a30143deac09c928616716417259662e235b5bba43857c65049e0ff8fc44c9f6
MD5 bd40a12650f5fd6ac1e5d1535f306e3c
BLAKE2b-256 6ffda39c0f69462a4b9cffd731377d3b6b889f17e5679c3e0e167a3ad7347aff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1f247c339ea2f3e78af5345a22559c3cd605b65f241d6b3bf79cf162744b1051
MD5 e8be45644dc9d356993a5427dcec7181
BLAKE2b-256 1d11e3d4584502050c43329d61b7c844c110c0f20f413303760f6c18e5205d97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5afeb7c15dea0f12b91251c948aacfab65349ef5cecf99030119cc061ad70a3c
MD5 8e815e0a7927e14d259453423781e7f5
BLAKE2b-256 0626c86e034f6fb1f667263e410425681efeff350f12cbb5f79e421827728d47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a48e074fd55f1fb4425628646a871a3ee7ec2f0939288a2788f7ddad527e2239
MD5 7fad06e88efefab1b6cae03c7cfba4e0
BLAKE2b-256 194d9e0217ab2bd51919a30442ce3c6cb64ebb09608aa8b0b1ce18f747ac9e68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0b38b47e53932ad4dcc08db4714b7a402dd097ba63516f0364a3f39f40f23754
MD5 949c7f5c7f3037a50688dca4550f253c
BLAKE2b-256 62eb07fa643847ca782da07ece0addbeb464ba2b5fb76e55dfc0f6f726b4f650

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b611f202cd068ad1dd234c8b75407b598336bcdd4e3afa29345b699cc68e7708
MD5 89b290a67ff6d22c09714810138696c3
BLAKE2b-256 6ff39ee321f9fd4f562e50285d6972ddf6b6700a5050e29587cc3f0c132f6abb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b8a800d4904dac9ac1f336dda2d39254857c4252b8c9b68451cd508ca6fb8dff
MD5 0a4a6adf5e4cc9239f9c32496cfe3f63
BLAKE2b-256 696ae27aa3beb68e8e0afe87b8a7317420941aa1841c0b717a3da8478074e1d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bf934b94d6ee575324d50b7f9bad81d01be7ee8f6ea5d239959e0580fb08e93e
MD5 5d3abc0e3e8ce578fd7982509b2bcbfd
BLAKE2b-256 c6dc656e58bd2f0c018be3442636e8c2ca0bcb3c5ced7f79051cfcccb0604e8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 efef5f200bc8c85e0a00915c5de19286ef96523bf890c2b92d5392a20cd7b553
MD5 74d87ea135add88463a305a068361d24
BLAKE2b-256 c11075341b7888363b87311656295643b24a626a2b864c57b5f9e3ee5a1739de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d96011719e45046c280e3b996bdab9841d9d50e9dbcd5f067c0ea8e8dcb3ccf0
MD5 15599d56162924ef49b3bc1f74f6b635
BLAKE2b-256 5784d6b1778a2c9691ce1299f42e72b684e61f9cca3669827dbacb9929dc6f38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e97206f8d544b8ae28698f788346d37c151628f6b6b658bae2bbfa558b07916e
MD5 cc4ba40e5921d42671648f0d6363d3d2
BLAKE2b-256 b3c82a90be716b82384dc210512cf1b2950860fb62d25e347d2f58949beed717

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dea7f38d46f5fe9555cd7bb7fccfe0a5eba7893bfe8a9d62a4adc918ff9e8738
MD5 73786b7c1992cadea265a98a8247d411
BLAKE2b-256 fdf01a7bb6df7e24630f9ab68fc6f57ec86c407284ca46997c1aec649add976f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ad93fbedee3a32a724c8e44ed9a64505cff20c788f74eee6f283b52e97977602
MD5 bec54447b795630dbeb4150a639a001d
BLAKE2b-256 9a543dbf587332937755573b78db5c02ddfb7e85e0c294dfdeb43966e81fba51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3f3af4c5b811db0b88bedb3bc415efff36d0e318f86741d0463c822b869e7397
MD5 ba6662f7922047fe73b84be51c4316b5
BLAKE2b-256 89ce6f9c81d59a9b74d9785fc9f6ba21c59332e0f4b4f55a1d39307dbbf7ffed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 16472911e9335e4cc42abaa21cbe5722dff842be584d3a31dc7eab5a6766a223
MD5 e0125e52979a2a171e56057740a1896c
BLAKE2b-256 f0b62e2d53ae43471e29b9cc58c3210df4138cb17396a9a816978b6f0b1d491d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 70b3db9058c432523311df75a0ae7a6098141e132fc5381fdbc042ab4509303e
MD5 8ab91c425f293750334881fef1817c67
BLAKE2b-256 7fb35c3558253eae59cfb6ad34531b0e3c25ab3e04c8fa1207003bff8958bab4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d49faf9d65ffbc3a6fe19f4948363bc0bbdf84ea9f68497ebc737e7b9cce3f1
MD5 4abe1189378d0bceb13ad4d240288e4a
BLAKE2b-256 18e8bff78752603ac5bd46e0320dfb82ca157145012cc69062a691f4b161b006

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cdc711333c3ef1f3ddf682df02f1b65e226995f8837310f3c60b35af7d1e06f8
MD5 dfa714529bbaffb9d7f1cb23271807f1
BLAKE2b-256 65519668a6bc69881eaf09f70685c36049b1107577c4c071c1ff2e5195789da4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d2bde26039f5ae3fc0b7aacb156b73f7c28b179306503b966f17b77e9cc61cda
MD5 8fbdfa828ddbf8b6b923701b2d010790
BLAKE2b-256 eb447376890a5b9a367d10108e292d871620a7315d7a3d84774e57aa5b5fc89f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 937eea14358ba2cd3de0f85f946c072b43a452228488971d62e4e6942f4ce0d2
MD5 f62579345108ae5d98877c32facf575a
BLAKE2b-256 72f6bcb60bd90aaef84f82014d41283b5abc3fe6427641b401f81a8dd089ca11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c037a75d290a5e3d4c647ffaa1dd99e8500ea327e67e01ad2791a761a6169b1e
MD5 ab6b6a204861a953b57e440afcdd01a9
BLAKE2b-256 a10bdda9cec059d0ea15d15ba9fee9fa76e1568fa5140e9b8e750ca3a9a32da2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e3beabcff4f6d27eab739803633ccf7251f1b49f1d0cefe8e7c1be96a3d0a072
MD5 8ce6c877dcd038fa05039de55772748d
BLAKE2b-256 a1b744aa0a9de556f5c68b594343d4216fdf660cc412684987a8c04d3fe2c5fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c5dd40818f9f9b56bfac58763ff1d9d3731aa3cf1d9aa01cc8bec2e53a88bc67
MD5 1c46a2010e0d3487d3c885fda12d403d
BLAKE2b-256 cef743216c575b5b2a9d9c3efec422827f9cf1ab4e2fa59eb7696d81d17125f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9426ad724029c205654a2c51323d75b4484295d03ed8319233f9aa866f89089c
MD5 43954987610f315def1d63abfb6b2f54
BLAKE2b-256 52909e7af60163682b70e43ddf68e4a0b4eb8f9d4dc589a6d02cdcf29f6bfacd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c6da996b32678e4376ee900420c03c8745c86e9574cf938f287902f503f34901
MD5 ee5f16b4f33b730507f6a09b35bb1ba8
BLAKE2b-256 19e535dfa36dee0381598fae75e01a4119b27228ef7297e6554daf352eee896a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bf37220127b86c5fca2f397c8a15382c3ad0ada9f93b533523ee3e081aed17ea
MD5 ed77f4c714b5854eb6f46ba966e7284b
BLAKE2b-256 722cc8ce73e07426ac90820d1dd26ab3ebcf5f1bcaf008fae8ab8fd1b90e1952

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6066c8eb8a08f798fcc56b8bd53a30e40e2da8df8b159a0bfc4f8771cd5d626a
MD5 ac70d7c70b7bc43c3ca964c8b7482a1f
BLAKE2b-256 22f1cdecc648fbac4c9226d6402c5a4a57afb92c8c89ab886cca8325300caec7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aa4724d2e70d82731b4fd65d00d4be9a37b333b3f02d249ad3860dfa46cb0183
MD5 d950391e823a25295b234b1b3f9e859c
BLAKE2b-256 0b1bc916015f9d9f9f9896e91ca2819d8857cb882ed25731551a37cc0d2aee7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94415a23b7d429f5a33c87aac4ac2fff1b66bc10d9b556c06f1c25b9f44fd947
MD5 711a760fadf65eb274f80354ce73f525
BLAKE2b-256 c265cd597f957ac3cf41b2115a321779618cecd863f5d8a641c6a65f1da16755

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 748da5ebdc88d62612843b111d3294ce9f4cd0ca2991deccef3b48d280d8e409
MD5 ab00701a5d8e7f5a0a2c027871cc9740
BLAKE2b-256 fa0efa5a62096686743e455852e79393958afb00d615e38ff8a114d87786571f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aea8971d30fb88124ff367dd902ed72972c68356670515b50843b52b430a07d5
MD5 cfd415ce6084145e2dbb057338d7113d
BLAKE2b-256 cc76d12c9537c4eeed035f70cb2e4c308d7d71a5fc493422a6fd4710bfa7bd4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 539b5b8d4711f40059585c4d8fe47132fcd33ca3a46d2e82da0c0a5d5cf35455
MD5 ab781a6cd22fd4312f1528a80a9edf03
BLAKE2b-256 b6417ba0b5eb191f17eb076e7caeb66802c0fc267f344099174a933fa9526a4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b100b828175350f17471b239488606d274dd13a3ca4b0a1f9209863f4ff0bbb0
MD5 04aadc9834f1b04657856f38a4a294f9
BLAKE2b-256 e9d053441c7113165ca1cb4852da730bf8e6095a2c2366bbf8ca38b31fe03fda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d76e14de0999dce1540f749fa8058f92aeaaf51e08995266006f7117202cbd1a
MD5 417edb9d6771e38ff8b9b0c5c1f81378
BLAKE2b-256 1ec2d7b64242cd9a66319c2ef618ba11cc78386cf163c3942c70f57248842a2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e881ad0b158fd600db9a849d1cabc23e5789059021b37ad8b31b69810a6b9c28
MD5 bf5d723814d10b545d118653928509d6
BLAKE2b-256 f71e66727088a9be87aee5895c8b17d23a26452c94ebd452d65d0245956493aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6d543fe7703631791b242ae42a1e2a578261907dc86b72e3550a9521a4cffe6c
MD5 d8cc7b5e7939adf41c62276c45a90d29
BLAKE2b-256 aa8fef2bdb95878d2c8a17816120f6accca7219b173d6821d31ad5f40ae79f5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7028a898f071ff110cb63bad9bbe98b9564e2b0a835e18e2806af1a200513386
MD5 e4e6bcc58bde0ef1c8cd4beed7e84fc0
BLAKE2b-256 6590d546c7d9bf77163d04c40c2f3d6791557d6df81f3aa32da77efcb91930ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f2d70c3cac5bb0fed0768cb6e387bf74a345f727e510b2b75a884c0967cdfeed
MD5 ed2b8bac2889b3e03a20ea6b8d7ab58e
BLAKE2b-256 29cf9d50199088571c083013a2b0c8ee08f083f9ae2d39376c0dff4c9ea09164

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 03bc4be0bce97345381dc699d2c7cf85af204b86c252da577a03ed2290d5f2aa
MD5 4b0384339242498b29b95fbabdbdef25
BLAKE2b-256 0f6680e82e8ab137daf2a392386d34dcdd2ab2a7f3532f21a2b883e3521a8e32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 45bcad14478b60cafa3965f11d27d8db0ee2d0e25e6b45cc6f413667ce6e82d1
MD5 319178ef66d39f9dc9a10c891238ed7b
BLAKE2b-256 be888d03e8bd33cdc186351861e77ec15adeb990d1d4f27bd9380a1d4faa2de9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef08c776b405639ea1428e00010affb1f912a84f106612d933781fe2519e4785
MD5 b1980c521f296427872cabd3130bacb8
BLAKE2b-256 1e72d3e0c8de9ce85c7ff998696e5ba8d482be8398a5126594875542d3b3a749

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3ad1b198956362602cfe3e527f17b4d918bd744e4f2f983895788a1d556f8d89
MD5 b72965cb18178906ab1925fc96cf6677
BLAKE2b-256 c4f156c55d3fa114542ba612b4ffc8f1c424d6b830e6f75ca21e3d80f1f12b0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d3be8cd09bafd5784bccc8664d9b0be75e2b2a71bd3d80d56f211c809cb84308
MD5 656e68a640ef4c98295cc36431399039
BLAKE2b-256 6eb6c994c35d1cebf7612de1a12004fa4c8e94d91b7cab9f7c904bde39e5905d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 59dc879289ac738be98c5cac3af81b243967e0ea30a1767c7eaccda98ef6acae
MD5 052b89f2ec55b7e5b95579489e7e99b9
BLAKE2b-256 bc25fb634cc07063852e5c930c587933243ab621a0748b51801ef912c9fd0802

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 786e3fd89db88b1db1c84363b6e60d76dfff91713f8a4c74de01a8db9787d3f1
MD5 0476171f67d9f8c56caa1b5c07262459
BLAKE2b-256 c1cc57f736d443b9abb67c860cfecf39bddd7a14b894e76715adbfbd16fe2acf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 26604c9920cbfff359732b6bacd9d054a0d7808c44ec1ec37e47ae42a5d21994
MD5 0b6d3fd635d4dc5dff8a2e39fedf4708
BLAKE2b-256 ab9c9c80d695b43e442994838a2a5215d7df269f1a6054e620c7cc0c191d2d69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f9b7b165d571b18ae019aef29c9982b38c1cafc893834db904dd1dfb42e7e4fc
MD5 e725288f40000685c24c2e11c3df660f
BLAKE2b-256 20a511e4c21d9a41db520970fa39e9c597c81fb5309fab5dcbc3faaff628cf28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b70d00aad89c5825c3c9a30f528c2f212ab00191b70f460c16dc066132983c60
MD5 bf1d48f4bc4adc8094929a9fe175dcbd
BLAKE2b-256 49a24c138d3e2e5fa20d243e9cc4d133e4cb2ea914f8e54a9c2c57cfb00bc6ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8221bb9f8ceb6401406af584fbf8a732560062adb6043c4b0d14e6f34a9a1123
MD5 11147d72a57c27288851a47886b7a904
BLAKE2b-256 3be9b37e7a7599cfad39b77d8aa5ffb72efc488cc4626786de847160d60c775e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3260db062f4cd510ae7b467418c0a9b4f01a23517a39562182dbbc2b74bd6d8d
MD5 2d38ae1d9c1b41202e69ad9c950a241c
BLAKE2b-256 2bfe4d71541847febcb316010ec582b4af19210c82381e4c71a9269453ef57ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 960ba81de5f586152afa1820f70fb8da0ce1921eb8dddcc7461a74b562d86f6a
MD5 3a06453209670968b8a1c4e0c451f22d
BLAKE2b-256 1b5e820284dc34e5d7fd921989324c86acb40f6610e7f31de5ba4d7ea5cdc7c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5db5896748754abcde635e74f1a680ab67615a03e2958cab02bd18dff63302f8
MD5 34b77f8d9f064c7188f383dbdf995db6
BLAKE2b-256 5fa5617ab05dda51a2dcba69f15542c1aa1b83b0fe3a0e74a7d1fa4ac6c5f89e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 18ec82c97d5c45c00b79b937d8119ce7165a34a9b515e7108a61a1a266804bc7
MD5 96eaeaf4dc2fe94440d400ea9856fe2f
BLAKE2b-256 0e2c008aaadf897332f51900632b8138f842f593655a360d453c478764fa95f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4ea43a4f5cbe3f23e0fdf1bd448e34b176fa03eb7c4435c176dd37cfa8ac14a3
MD5 99116d14790c1a3ca57bc00471a5b2cd
BLAKE2b-256 fdb3761e7217e35d83391e642697842e209a1ba9061345e7833ebf3495068ed8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 34318bca1e3cb7e60067dc593710aff75eb57dd3bb9bc3964727642835437f3a
MD5 7014c0c8c4badfe7966ee28cef1802f1
BLAKE2b-256 2dae6a6d44fbb461b6f6e052acf51a66fda2d22ef33810e0897e5baeef490155

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c685dcb64a7d689ec639cd9d8b53f4457a5875821d65692e2b76e49b13c232d5
MD5 e66d377252fa10727572d6a6c9bbd741
BLAKE2b-256 0eb5ef96a3df0005e98cc185353b17c42a7231923d36338663e2b5631e349f32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f36a417363f043d8273306dc7071b02c1b7fd65efe9fb634a64564fce2dfc4ab
MD5 adbdd7918b901ff04ef29e3bbf2c6a59
BLAKE2b-256 442ab9822c930ef16b26997a779fc38f08a850aca0bb195893b8b68c5145afb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 52498411fcde94f328c16afa50efcc6e838e734f2a5e76973b2246dc131d1518
MD5 8d5ca4f8d6e796c84ec02d81964244f3
BLAKE2b-256 089323076130e92b5f94df69987568638e5df23abc5f0ae2fb3510e37868a9b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 24071810845c0454c1fd565f8babdad5f45713ba07830bc8d2ca00727c9a39d6
MD5 76c243250238e41c4ed7779c7f0bdf4f
BLAKE2b-256 3f0e92e52571a0c8197f9f96fc6861cee14b0c5239418a89bcaf38ef6ef9f522

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ac509c74d76c809644e526f8d230a3a949af36650af16da939ef30568cf2b0f4
MD5 1ef05be4dc6fde26b92ca759dc4ad97c
BLAKE2b-256 573bb6fda914a7b6ce325a643e0816f02275b65fb1187e624896ba0d872287ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7c25541d13d825d242cbf8338d34bc3b1fa183c452673af0efeee1e5b8c8aafb
MD5 d18b580232de59e495e64d1553faece9
BLAKE2b-256 f4bc1b961ae91640261baa7917c7e8852432c3f111960b1d68d9fd888a4f3590

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8831ff3bd0ee7567dbd6d1853e4b1907634ad7beb900028d48a1b0144a5fed2e
MD5 5fd242866a70c71b3f10c9b267fe8797
BLAKE2b-256 b799b00e5bff3ab4534d4ee8b380ea1118be8339e70cb2bb3af8de0088795435

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a47dcea0b2bea4eb669a3d0872e4e0ff3da153c1352ac2a378adac3e311cb635
MD5 dcd99997977ac2bc29e3a7bd471dcd7f
BLAKE2b-256 cac7aab374eba4ab40689b42babc5613699160d2ec09d218a5690a88bf4ec691

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8844fd3d23ea2e2a2b8699ea7c367667fbbec11ca45b98439699921a86da710f
MD5 8dabdac69b761ed7af26c6e5ac4df9f8
BLAKE2b-256 693c809f858641e6e377f3e3e9646abe3f638cf41a1e12d970545220c66b25de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ce0e9d2c7cfd6fde1d61de6742cf131457f6be94799c531b229d8ddd57e7497f
MD5 42906f80014380ba8c4b52a4dc7cb0f0
BLAKE2b-256 b4fa6e92068bdca2b97ea38f25f08d6724152f2429cb82d3678f2e6eab0afc1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a11d647fd926fe8893782894c9bdfef9c8f593a2b7dbdd11dd5ece051f06025d
MD5 8d9ec4562829d7664ae327bfdbd341c9
BLAKE2b-256 8956e42f95b85095a34e3fc7cbc65c7d4a207af29342936ea965e53c16550c4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aa302b3f32b1e06e2e3e3e75bcdcc991cb65efe9d5017997a172e8c5c595b6c9
MD5 882891f83f795b3ba91009cd257f3df0
BLAKE2b-256 4fb335e8b37c14aa046e1a26e4fc97c4e808e17f77be2ae3947a61874a79c529

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 72fb168c5a753bc8710486b67ef9b8257b9cbf7da8ed9534758a1802fa15eda1
MD5 e4a7d849d3cca6ff514ff23220d3952b
BLAKE2b-256 fe1e0cb5b0404e50e64f4e80998bfab1f2449215f84670ee136f3108cf23161a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a40be2f0187c6c5410923da82301cd616907bfc2c7fe620c220b8e4d262d3ed0
MD5 0ef89ca6951dff7a4abedeee578ba22a
BLAKE2b-256 83f2e5d1014d7fd4e50693c09d3d790053b47679ce234537718358853301d3ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1bfae686b7649b5cf32381feefd1d047ea2fbba2909c3ef73bf0e7c318ee24db
MD5 4ad89e3c91cbaaec0fba2bd13dd2f5f1
BLAKE2b-256 8a483225ff0a33f712eea6c14efe74a5fba9c6f492f9c910cdb547e7fc3ce8fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e00fe349803c1e4a50a26d3996cdb9e10e018e84cdf784bb92c42b36dfc62ad
MD5 43fd091bb61434a06b2a3f7a3cdce574
BLAKE2b-256 193179971c2bedb167e810e6f53bf798e6ff4399e08c1b74f80bf078a1c3ca47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a6551f7f4045f49dba6bde5e5c4bb23ac8250134b3b0d4761f95c701b9d3d3b6
MD5 0290f7b23264d2f5a9fef6db32b1b992
BLAKE2b-256 0637eef9e8a9dd1ba260863f5884b34a4828756bc36cb8c344d158ceec610bbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d60ef6c998b6568195d81295f610eea542afc5bcbae8fb4ea39ec68be342a31b
MD5 50b9e39f281f1d764de2f7b8f51c49ef
BLAKE2b-256 6ef93c5099499c01fcbb431d66e28fd3958c94d6ee7b3096b46f89c132a7f9eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9acfe7aa38a6e41c204ec4f8c09c686fb689033504062e2f99fad9e1dcb91760
MD5 54cdac595aef6c458c9dc3c764ab8bf5
BLAKE2b-256 ca9ba7e4e809c9a014bcbf57624c939bbf27f8bea0b5f368a15dc3fb3ec1a1f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f5a1fd2703ca5ffd951c6155dfd6d02157e904b1633cea0debdf7987664ef3ef
MD5 69a6ab188b5f443f39534cc1d7000b52
BLAKE2b-256 6711da371d233114cdc7317cb95156d467695332c7f38851ed2ec829ccc95fed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 96677a80838042bfde24a877396bb4dc2b4892b8912c82dd74f63d9923d99297
MD5 d8be555160e6651d220465e2f22f74a6
BLAKE2b-256 5e93c1707fbd9abff4608bf79957eceaf5c18a393cdb3f0383be38da4791d72b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b251e53f1026d4de7f0514902617cb62634483de6ccf3564190ebb9d49305d1
MD5 dbc1b16c62b7427db5cc0c330d799867
BLAKE2b-256 0e4ce448762e0430d5d95381f06f06d9fe191b3d2df22cf83fc026a9e2af02b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 db25f367646bedd0da4d4281f6d396b998d6b3724c8714cb79cd56efc3877a9c
MD5 cb03e7be253ac4bb20bef9bdd49a06f6
BLAKE2b-256 807ac0859c949028ce6ef510f284d13a8ec3bcddc378050368303d9b80309452

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d4538570ca35b4c4078f98190f6e88cb1d4c19319c920429f59333b2ca41d28f
MD5 8da5cc24e768a598fe7b83f04ffc7be8
BLAKE2b-256 ea2197a68fd1ffa012f40c23b222bd14f345ae4b46efd3d5998ee256c8f2e030

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c643658cfce37bde66c8c4e55a09deb6ae3e9c209ec8214c7a2c732634ffed07
MD5 16ddef0ffbf67c453dd11dcb1e7fe93f
BLAKE2b-256 6357410a48a808e8d1d7b20daececdd7ee44d4894ba2f5af3fd35c0fd319af25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 24daa795154b6cc139b6d26ec66b262f986f7b55b6a2bd1a0f6e35f59b60176d
MD5 5f3bcc0f109058886f795325aa0341d2
BLAKE2b-256 039df84346032af3383f72155eb608e06ce35cbf96a0fd8d816942aae4db8885

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 00eba3a72808a0026a5ae0eabe99fe4187fd685b009b15d0b830da4bf91ec20f
MD5 ccd8952f3384b6ebec6fc71102f2bfdc
BLAKE2b-256 1270c3049767f104d68d15b92d8dc6901e938c06fe11b1e3a4437d50fad1edbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d247fe12fe1502b8ff24722418a3ad4a925177b703b21d0cbc282b479d9a9c10
MD5 ac8b1ff74aefac68f88818cc36e9e5d5
BLAKE2b-256 837b4636177e2b86e68512c2823ab72f9ce3e98c88c204b2214b767274dcb158

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94e3ec5cb174d94de8709423de874655c38e0777104738bd65d408957b680025
MD5 c0ad4ddfc6598a7e3537d450e99ba876
BLAKE2b-256 2ac61687c5219d435c73468bdc28debaee366eb0043918ed4875ce3ed5ba5fa3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 084dc04ea439d054b990104cabca165404812779c02995f3c4ad44e54bc207a4
MD5 c41572ef648d2051f9528be7af993dbb
BLAKE2b-256 7b757d88e7def2b25a22508d9214cd81aa64767c6d2bc802850ae9506440945a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5e0628b6f428a82499abfa2b58ef951646124e77131c07b636ed70b0daf6e0cd
MD5 e81c4ce08edb35537ed0dc18ef47d0d1
BLAKE2b-256 32e4c49c551ca18243650cf5d5b7512db833cf5b16b4e9f5d4a224b4c3d25dbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5417afcdf85f29ee7e42b1fa8d3d04dd2c09af86639c1e5be17a5a9e8074d550
MD5 a6a33b3cffe52501b655447d59ef22a8
BLAKE2b-256 4d02dec239077b5d501f2ad4339c4187f23673654bc476b2bad78468fe7e9fc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 92b3fb241ff3fac0d1856947281b833bc5e3abb1d2e5a534477994120b4dc13c
MD5 2a5d971a9eaa390e6fd51acf84503cfa
BLAKE2b-256 e1df73b123579198898f56d41841ef858baf5728a528b979073712587c3a92a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0432a551f8c9f47d239946dc3bceee6a5083cd12b13efc8218a3dba1cce27cdd
MD5 07146b0bdca3a090cc122cfc65e4c266
BLAKE2b-256 f5300f29eb3ea20423ae619e247e59399bce0ad816f946a2b4a3468b02054d1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 197a44610fd5849cc4b95169b5ee914017c925b349bebf17257034815f5bb04b
MD5 124ec9a642b9a329157832d695b3515a
BLAKE2b-256 b26fee29ab4a485ca61cc028ef979022e68a54313e3fbbb7d86674b78f0c884a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d326fc7709b8202b566625ee8a8112273d62287fd92e4bad3de38ead5b9aaf91
MD5 0398e0323ceb201419a0dace471852cb
BLAKE2b-256 562f12735b3fe5c31c46bf89e71d2bee9271b260fd1c1284c4dd39833ed6ad28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 97385ae3a9a43d78557e3ad5acbe560fa8158585bc6f57c03bb28fbe441dbe8a
MD5 a1d74b8dcff20ed00b5376d3088f470d
BLAKE2b-256 a441af5e1c2841d51ad83216a4a050597a1107286c2b70d029e43a0add4c0935

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e5c6c47bd00d32980af3a65b3c75787c71b2a13e35138d35d5bdcb529728b857
MD5 eb920b019583e1fda26e59f7b196d975
BLAKE2b-256 43b058eed6de3575e6daa4a6f823e39b4419a4f4ac8ccde4111f590a066bafd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc30fd9929f50f4da7b66d4afb9e9e603e931bae6164f284f24cb002fbd474aa
MD5 bd8b82cb93eb8f33c02285880ac5dbef
BLAKE2b-256 0d5f8048dca505cf69a0fe88ea794034cb50f79eaea145e2ab20a9026c7c2e1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f437f8cbef081ae426cd40a19dcb632e67702bf3bfb84eb93841321250a2f4d7
MD5 f82d3ca265e0d914263b128c50052f4d
BLAKE2b-256 a7feef57191ec98d8295fe14fb381c8bfc56fa0cf51b7b8e1b1346bc39cce654

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c2a9d4eeb0ecf493d0bfc2b52179a034d2f5feb907b4a8ae3998a859c9c0bc7c
MD5 08510a57f7220cf08e517ff7c4a64814
BLAKE2b-256 8c913164d1f73976ea223248cf60376825b858dad3cdd246cf0b05388042e7f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 871fbc2593cd413e31bb3b8f79894d4f3d35474bcd75561357e8fd01165d8664
MD5 c14b0997dd1fcecdfa23a64543c7d480
BLAKE2b-256 b852d54cc56c7306ff74106877b755d8397286dfd23e8b13f5c16fce4d99bf69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ec9f7110f189a384349f1c5dbe80632a7b5a4ceceb468f22968f6b78aa4f9eb9
MD5 fbae7018da409ab400a335984528892c
BLAKE2b-256 b0937cf478dce583e07fa6f4a9d0155bfd94250dc66c4dc5db7e66f9f528e15f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be352b58d0eeb05915fb75fafc717ac3b770e21a0540a9442daaf33ba47ccc9a
MD5 94c82dfb04dc0346d3f4bb67bc587959
BLAKE2b-256 5f5ac2bcc7dec94e6238cbefebca5b511a1c513cc38a95378db7bdb533316283

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 795eb424140be79e7d79aaef48133c849d29d99ab19ec34a00b0fa67b0620f5c
MD5 c65da8d6174cbe67175f1922d2da7282
BLAKE2b-256 38acfe221a11ab9090427ad322845525cf253fa39ae9179af1a579b4fa7efb57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 62a50ff80fd67c50c34e448a48bf27ab40e4131fe6b2559c09fa62758fb355e7
MD5 59795289e1a1320b38570f2b23104c7f
BLAKE2b-256 91b1c8814bd8666a8c4668faa35efb794ef844831ba8a9e86d32dc04a56cbbe3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 15356c054215c028762e55ec8f5e8084793ad2344f99da0c2d69acc6ddbacc4f
MD5 3b46b9bb770744585a20c03566ccae65
BLAKE2b-256 52ff2a4b64ec113f9f0df583a4afe1ae1f3311062836ebd63de2d6944042bef8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3a371575713675a93f37315e361544a740caa5c112e6a1dc9bdb2d681103a88b
MD5 723d09e85d0cf631dcace5e6d531a986
BLAKE2b-256 31dcce423be174b5fd7189dc4705b3dca51ebbfa789f8eca422d635b1394dc4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 91faa619e453c829578e83dc328973589bbce57407e2ef453ddb194391b1f027
MD5 cb0c67b839c580c23e7fa4c1aa6b7fa2
BLAKE2b-256 9365311a63183e64427210a37be33d004bdb6e171246977d90dd1d855e9df0ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d7f68d36c3fca8aecc3dfacc9fdaa98d1631e2af61d35e0709c27d71a49462c1
MD5 b00ca00e8eb835513c921a08308de6bc
BLAKE2b-256 9baaa941dee4740b9ac97b67229b1a67339ef3f8c0a9c6a89781176c27a815fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f3789b80727ea805ee28ff60516034b86a38c085975818f887dd30c0162f8915
MD5 f1d18496c9930ba05b13eb94c45fff19
BLAKE2b-256 8fa592567139146b62149ee6874f4e249b9870d5f4acb6ab68ff37588a896abe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 225afffadff175369424c67cf8f217e5b0f3af3691bdce9eb0977b7325abba3b
MD5 ff2430f170e949ae2c2abd3c92333253
BLAKE2b-256 f17620d6a4ae9b57a7c1340986cdecd182e94f216027100a3837291397b838a4

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