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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

File metadata

  • Download URL: attoworld-2026.1.6.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.6.tar.gz
Algorithm Hash digest
SHA256 e0508c820670b02138f64cd6be692d39ca97e198020421d3581a556e27215528
MD5 1fa69f0d24f427fed366ceb4a09bf6f6
BLAKE2b-256 2ddaa8796070712ad26311b90e4581c27be88b97b31a7343802e0ec713857257

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b185a02ccfb215713771492b5b7f60ce80a859ed26c9c8255cf6544ce62e8c63
MD5 dc9e3c6795746edfd6d89018dab2517a
BLAKE2b-256 71b970508769b114617b9fff32f59a030d426e5f04b3d71336f172a4f8d9cfa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4724f49f71fc23c08f2c7e25d91bc530ccff3cc9fdf777a21562ca4cc43bb1da
MD5 5862d41b51c5b629fd171f9b9aff8339
BLAKE2b-256 61cf64b0b74ee93285ccf0f8c3a97f03442857956981a7ad8fad1d3bdb30a407

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e35462797b8aafff1f0774baaa3ef3b08c6d830c04b6585d9a4503da057bc5ac
MD5 1bec18db9ecfaf40273d9d6f7bfe739a
BLAKE2b-256 b8d03fd6b7fd87450db7fbd91062071780e628b06995f94e64f40b269c232185

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c9c1e1700d3216c555ee0d39c1f515a8d9097b5a11826075470cb06acbdc78c9
MD5 d7e4fa1162e5ebe4bbb357c83f3af444
BLAKE2b-256 6140a808492970b23a346f5d9e67ea3278616d46b35b6bd688792fcb32dce42a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cbf4604787fb8cd1423316b1fe9625ff13535cacadd720f0ec7f76930a6e913f
MD5 0ddadb5ca394877e831ff298fe66c011
BLAKE2b-256 cf4b158ddf178c45e7118f09d736ec0dbc977e5544b6aca02670e78e205a1afb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f17acd2ba3fbb19f923c5a5c0bd8e102160dc8fc4c55778100c3c7aeb3f15996
MD5 75e6b9a62c3ec72493b902ef5692923e
BLAKE2b-256 bfc10ccc8500904c8bcd6bb4ff0c28ee4f3e52bbb62715c725528cb9662f82a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 08996f9d26772f2212cb215100b24293cdaaf11c920e7f78d10122215b0135cd
MD5 bfaad0b8c352ff067e812651a8d7245d
BLAKE2b-256 53b458633becb80f42497e2d2593575f96d1c14e3e11d2063be8d9685933bdd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3748c68b7225975467e14f3b25394b13fc6aefc76de80449c1850407750f14ef
MD5 a3ff1beafcd4ea2cae788ef37a833c6f
BLAKE2b-256 ec3abc8477166ddb6ac4648f2d2c76225f43fb2137ce50ba2232586f479ce79b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6eae81bb8d3c2f86f0fd0976519561f987f9c9626debdac580a1483e7a4c388a
MD5 7096981fb5ec39a259398648e5f447fb
BLAKE2b-256 4a6f585edb7940fc145028e85d90f71136631850aa34ec152fd4d9c857d98f6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f0bae3afa953648574cca9110f7a8573f729eb8ec815180b2e064089dd7219d
MD5 661c8383374db02ae88c4237221944ff
BLAKE2b-256 cad07f3821fe4a05f48be73b2690ec560a46f8a8ee65d68f029291c1c95db5e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 84c8a7f0b82523b77aebb5276d9719b7e9df8e7aea843ecaf7ca62c304ed668c
MD5 fa2dd2ad28d4ab599fc3ba44dc7b4827
BLAKE2b-256 f02a88cd809929a578a3443b1218652db3daa74c33c5826166a8cd01ea6fd92d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 992616a30e3c6984199df2a0766fad575974414da475a648659de81516566b46
MD5 38fd8b48c31c72f206eb3eba2a32a287
BLAKE2b-256 ace2ffbdbca6b4c365bd008368f5615f2b3434dcd426d375d524bad3c21bc76e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3b34ea41f2f9b2cc05a0d22a3a0b3c9ecb2d35c826a505e611b1fdfb89436384
MD5 5532a83ae9e522c6be1949142f06c430
BLAKE2b-256 e9b4a286a21f6e9c12919e9c61e22d2f2b3961ef309c8b0e96e8f5b2841dc156

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b9436576953d62b635eb0684788e002cf85ecc1ff8ef0f3d2c88cc8dc7f11685
MD5 eeeaa471a9c89c3098a7e46f339ca792
BLAKE2b-256 d087e5a7330386ac734396ad8e11ef6553c70a9deafaa1c508cd8a7f50f801d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 87991d40a3e2aaa860f2f20fa83e293601eb743aa5e49e34adae75f3d0490c5a
MD5 90769143da184469027c4820390be5fc
BLAKE2b-256 f45f6618d54cb9a5e20e0d6048ce24443ae8bb853d752a1586f57ff9566ce34e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bad2aed0c81756867ca621f6115623530c866a6e40a3b815edb2980b5912a97c
MD5 e3cff628eb58902c696e005a3f620d6b
BLAKE2b-256 7c9627c6f739770801bfbd64672fee98c8c1d573c3a282f74957441cb468e47d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 27a36b26bae178bd121a9a8c67c114724c63626ad51856c9db01b85fb370c370
MD5 43ba0adf18931c70e9252faf0e01324d
BLAKE2b-256 b009548ab1ce511d448150b4aa7797a784a402d2d39b9bb9632d144127e4a9db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b072f4c9feff0ee8ea175b5adc2989039f2f1e8627b6afbc7d241ac45cd95f9
MD5 6f75441627dd2dba2ee5e5556ec8012e
BLAKE2b-256 04041645a46162395443a15a16f03d64fa2d6ad7e14f15ecab52fcda3ea3f97b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0709c6c23908239aa4b7a987ae83e04d2746288a1b9738b89f8fb40f485b4ccd
MD5 870306c677d9a62d57e94e436a6a22d7
BLAKE2b-256 a3d7cd9e28f5f4fdf378b5094e9ec3095dc2580c42435a6bc8774bf9b4923cf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f2c8a79ba25d44dec7810eeafbe6c15fd5b803a837dc1980590d1a28da2f8236
MD5 364bf9007f85cc82c106e57c703bf1bc
BLAKE2b-256 bb8d5906c2a78f52b3772bd864d212b43c1d69d05e319c13f410fc8959d80f30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c5cbffa795b936a87aa2ec3ae06c9df4d43bd7ea1d3246260aa741d6343b2354
MD5 968fc927cbd6a6921ea79ccab6dad420
BLAKE2b-256 02c948b0cbcdc164ee9d19f76fc3d81c6060aade71ec5cf8f092f894649ad9c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 90b10740a5c223f26d04abb0e9f466c0e23bc36e180716928aa0c1f07331caae
MD5 2af7841f5faddf2ab42e58c02d749980
BLAKE2b-256 278e6d443735a63f0a5dee4e4fe9d6fbe4309243188af53eba92df5f605bac4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2dfde34420f535a9e20a739fc83de13d583e6c0c83365634ee7bc8460cf0dce7
MD5 dc989929e444287e40149740e870717e
BLAKE2b-256 a2942d8bb32d5adeb5a0f672871982f71dbae4c8357a150a23aa16c254d6a620

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 36ad9b13e596a8f4f14a101d5cd25c5b527a46ad3f831518cec2577583d4f283
MD5 ffa0436f2608b686504fc0acf5e8df24
BLAKE2b-256 d058587fda0a82d6dd385bfc5d0d46307074cd7c5ed3467c4f929d4c328e6575

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ef63c99f4c02f58f96cc439e03dca00692cfc529bb726778722a40f39c5b6d78
MD5 da92d79bc2b8945ee4704f3e59879553
BLAKE2b-256 8edf8a7a72a705494ba25d9577794afeb16516847a1df86a8de3eac79b1c4a6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 91a8a3948b542180ce0bfb6efa969202cec6625c44ab672f30376f9841ab72b0
MD5 30a110064707dbddda8d8a3f683a216e
BLAKE2b-256 af51fd0bbd584c34617291d3d8c3f945c66322fb748b88be8e31e133fc02bb09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0fe61b1c44e22ad1ec5b9b68865dc27d2f4ba21409a8b8e6d10a03a288ca8793
MD5 7aebe902486d9a62f0cf1602b62b5edb
BLAKE2b-256 8829f7e138420e63c73636faf33eb1381fce88279ef52bcd20a65dfc411c634c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dc2958121dc2eefe647b87aa99b17e3822f2e1e97dad4758bc99ae9e6daab637
MD5 13f67d4b5fd1f710abadacfbd60fdc06
BLAKE2b-256 0ca6f60bfdc3a6089131b685bdb39a341220d2d51323dc60e3a88a90cbec35a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 11dfcfebb6abeb78e5f37e0860bbc0b87e3020965624626adce1696f2235b5cd
MD5 2bb103cc9ef8bacd3eccb53550b2b8a4
BLAKE2b-256 eb64374821754b405ae69ef0791b8286a3f1a127992ca8227f6fd889687d9dfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7fd94e33327b658f197adb2a0d8707f4b2ed4385122379983eb884b5fce400df
MD5 7974f4cb049ef1df8749af6649b6d9a3
BLAKE2b-256 507346834c52f86ddc7982d403393ce1a18c6b14623386bcaae26a3dd57d85d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b9013d8462abe6009e714714a854b3d66297f4958336993b6b9ac0047c51dc69
MD5 a8b246f2273d95f58febe51e02e91250
BLAKE2b-256 c98384e033f0aea7f7bd756fe0bf622f31875f746dd400aa17b3f7cd9be7fe32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6bf7497d2f53cba53192e760d1890291af853e423cd6887d322fe4b739d97b74
MD5 2ef5859e1eae65f1ae75050c64fbe986
BLAKE2b-256 69b2b08b48f1fbfbac468822516c1a14e82cee283a22f5460617b22d8a2afc20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0314cb1ed4c312b388280bfc6c0c9dc7a4c0497b13a4847798c0035256f4fa2e
MD5 c834255e1194535e84e7e50e2beb6058
BLAKE2b-256 403cf5d53bb0d9a1072aa0d00e4647db534b0add2a6855e5a939d45befc57014

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ca69546b87c6002edc766d466da314681f1b6e7c7334745af11050e5e9362ed5
MD5 9fd2a9ea3337065af0795b974ee680a2
BLAKE2b-256 da87596113264ae33febddfa5138dc3ce996a9b4d5ed873da962e579676d71fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c57c218fdd5c472e7b61635bca996fbd98bad727856544ea46ecb42119ad4c07
MD5 b227b20ffd4a6802221d00516ee2ae91
BLAKE2b-256 b9630874a06dc75def1a868ccce47f08cd8bb6038e62d1ecf0457fbc0d38fe77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 60df43f10b177a0d8057eda8f9b50224104f01826d4110d9e024640dd1827d8c
MD5 8a002cccd719ab2fb55c4a7f97e91160
BLAKE2b-256 ccc83f0d5aedba90e5f213e7e3066cf760ade05a065d159370a3eaa61eb2c249

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 197badda0a0ec3a6be0ba9f62175d027b578bd4809c341485efc1eed6b0152d6
MD5 99550894e3a31d2a054773ddfd110d20
BLAKE2b-256 0bf9c266a779c795856989a27b2bd554b28dea8bca535e4f47cd2c622ccf6b24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7a0b17ceeb76f4fe10d74f11ca013fae3ba11f211ae9eec06664bdb5420d8902
MD5 6700074b6130354cc65ed1cd2018074e
BLAKE2b-256 fd2fa766328308c07ff91da2446a8b9c88de836f530c485461883c0087445335

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 98939d8b2f78be18626983cdbf9d98285f5321a00fa64d469904bc3d87c560f4
MD5 0e4f699d41d37e37681fa2b30e20431d
BLAKE2b-256 483f52d6d9ace95b6e0cf5adad614a5644ce67a27e461909fb10f27f6ee722b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 da094557236b82c39944110df4000bbbd45ac6e0eea662978b86c9b46da16ba7
MD5 d012db25b2848ddeb2559a5f9c90eb34
BLAKE2b-256 a96372b9ffab476c45a8a6132304c24f1b69b716daf8185254984604f01fbdd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 04add203a724582102206302ae06ba27ad307ca2bce202078610a64e544e8161
MD5 70c98ec99523b954c4ab27cb1bc0984f
BLAKE2b-256 28ac61bbe2935dd8aabbc8b9a747e28e998b0793705033ecaccba0641318d3e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0e8c58f2b475899a9efdc7c77a8e8b4b420406156dbc29880d3f147280603934
MD5 5eb393552f8dc1232932edf8412c47b2
BLAKE2b-256 3719c2dd02ac1dc446082e60b200fda11dd5c7801ffd9f7942f0ef90c9c9be5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e0cb7154b2658fa125c5911dc151e8cd4c1ee081daddad40ebda77c2257fa367
MD5 77be33d26eca53c8260b355930ae65f9
BLAKE2b-256 bca9f83bb38380582e3402131929cdd8277960064cdd1b4dbdc1d8389a17ee3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 650f114ce4e6a360cee1426d4490eeedbd6866c0e6de0ce363a3dfe4d1ea2c5f
MD5 0292411362d8131255a1b4a4a0a4b18a
BLAKE2b-256 ed2e5136571e4111a9565f5c845e72ef4cefa7c0e5c7a332c4bdceaf3e21ac52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9f52e809bfc9a38d093f100fff9c6daa8baf900c30ad6b515db54b4594b853b8
MD5 21525508764e0339d61930fc1f97f2cd
BLAKE2b-256 cd6fa41b26f73f3412cf9309b2064eae269f7b221af9524997bf0ff16c200f2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26947f4922ec857a6ee99b5bdb659ddc00c08d171d0f1aea050435d1ca71e8f6
MD5 ec088fe86da7cf77980dac1d7e24355d
BLAKE2b-256 c7df71716939db9c39a2f321a087c69adc590b301dcbf7567afa09c5e2669aa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71e68ffdc1190e595d84bec19b35bb3179c5624b12b75731b2909226fd21cbca
MD5 a887a3cdaa17441abcb60e47b0bb4ec5
BLAKE2b-256 f32459d3494d0edf4e6e22b12b148c11edf5a6fa3702d3528392cf13765d4605

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 683d3b873b3148734909ef46c5df559947c24f2a4ff137e445b4e6da338c8491
MD5 b23db3c2034ac9c5517ccb8f970d5847
BLAKE2b-256 c80a80f20175b0f4f6f6904b9756e4525de0dcd2973beb816a5c4679448c5594

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fc0b0f6eb558637d4a063b8e5699e0ae171dd147f1aee7998146d1e0a4529569
MD5 cb985dcdfb5b350bb40ae89995bb37aa
BLAKE2b-256 2df9d47bace6de85049c62e95de4b80babb55989ad807e8ed40492b9d58e45ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2e67d1582b55c3677c3bae3dbad7ab98424a4c6ecbb016dad88c2263c685a013
MD5 ffcd7898f2fa29580ea19dd89a6da408
BLAKE2b-256 e292c1cc3e3b376aba323604a57c96353be119ec759b1637f2be97af08b8f0fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f7876554357ffc427128c93d55f9d5bab06b99971c92d783bd70e03a6fbe0f00
MD5 84f5eeb0dd48e6284acdd3d0b3983b8c
BLAKE2b-256 bb8639a1326d267e4d77e9334eb4dd68bfec66b4be0aa633b4881b230da51dd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f83705e3ae58e95d9d8e7e4f7915ae17821dea11dafc7342b7ee93ed002d6fcd
MD5 8ffb5f1dcb22b101b80ad23aadf40aad
BLAKE2b-256 eb3009febca214c936e543eacf3ffab9c8577470d4f3b2f9f5041b9b1b91b642

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9b28d2e45212dd1b26c447ec473c057aed150a99d7769c86adc0274cfa8cc344
MD5 d0d9c5659af4e7283ee37f2073d5ac9b
BLAKE2b-256 547acbbd123c88b2f86376e72f1fad48189b33f9612bcf784763617f31f443d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a86a5d7349802d7a27fb1f70402cf8ccbaa98648d22d88bd52000f332654ab51
MD5 911e452c61f6a9e826f8490cef35d6a8
BLAKE2b-256 0d7bbe2d4986fd4976f4dc2e6c8f3d56a5e074ab3bbbcebdf57d541461f51482

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 181fe3171ea6ba9d8f695d51ad2747694d788aec5b72644a0b5295e2825fd506
MD5 b6b017751122b4bde617a3e4c70b175f
BLAKE2b-256 9339dd598ab6dd4ca10c5e183241514e6184090dc2804875d4a6a48c9ce7fd4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 03c69c596eab90a5f01d9ccd1077a29860277e007195c4b759cc8ae4aa1a27ef
MD5 4303b1cd6941d1dd94bd6d764b949757
BLAKE2b-256 6592a425e30219d1d067ec34553834147756fc6ee8518be778646e7ec2b55b03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 aad204073b4eeb279d3f23576c9edde68172cd649a77e5176c9259a35a08ab9e
MD5 649fe2edda484c16c21d279be588258f
BLAKE2b-256 075ba4b6dcb57cab7ec65a9bef56d2f06df25fa034bc641bc64b8e42a1b26aeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 35673be89be42eec07b785db646b66a00dc3a27dcab73aaa2b5d9bc3f449e0cd
MD5 605153299401d1ffba866ab6d4cddb8d
BLAKE2b-256 83f1f5f09b619fb209e367c3d25fbd2a13ef4475a00f1d8db60489bca457eb87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1a1e2574e736b0530eb854868cd9dc8116c4d8d99aacf55f9089ebcc37ced566
MD5 562ad06e34f150a5a129c9b7a8bfc8e0
BLAKE2b-256 561b404694fb3ab5ebd9ce97c4a369726acfc7de05d024fbb61500e2ebca1ac8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b6bb63ca9c7a4248a480ba1d5b7df9f21473568918b269227639df72e7bda1c7
MD5 b80483315d82ea39fac40bb02723e089
BLAKE2b-256 8f1513eb1fcd4c6f659f60dfaaf01493e120ada94555cec606ef726a9f9e26b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ea7ddc7af20906488141333b8b8c9b379535685b0b5e25a8344cffdf1aee99d8
MD5 28b4a9b82b608e5d314cdf9b9d1e173b
BLAKE2b-256 7aaa57487305d8100404874c14a0eeb26f3007c37fb0b940ab82bfdd9ac80612

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44cc24266c071ac9814741af9288780fb137ddb95f5e61d8b0c7d0498455a9be
MD5 9d18646b7f948b6859f52fb86ba8bc11
BLAKE2b-256 b3b6d3f15fb35f425d173afaeb797ccbcabd6571af1cd6b2bc19da86c1e42064

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f2549385627c37d3f61abd03c467826bf8891d22983987585b594ec79cb8d13e
MD5 f66a7c23a7289e0c0f4e86827e56bce6
BLAKE2b-256 bcef51a78035b5a0de1f151143a63c87af2d01124b4fa8c5f1efcf884e92f5aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dd292a805c3bb5b609ae3709715c073b5bfaace801135c510ae5cdbae28e60a5
MD5 db25f002220eaef08bb2e17f2625f6a8
BLAKE2b-256 015c5217acd42385c922506bb97078526b7d49bb8a62c2002d4a4677962d0269

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a03066d762f1dabae38962b08e52cdeb8716c8872a7385e2863ad74a8259f22b
MD5 0eff29c244e08cbaae28d395a965e3e7
BLAKE2b-256 041fedf42ed0b384900291eb12d6b3ae9a402f92ce556cfa256e51286a9ad593

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c971c339c015b580c19e090de074fb74940496c39f6b1138cddac4acbcfb3413
MD5 1521ee1f2a78219b6c3fe4d4abbf25f8
BLAKE2b-256 09c2c24b1f3a6df6373537ed50911203dd923abfe364aee4304d31b01cfc36c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3aded8e061b24600e11b97a13fcd48155de6c978b5a2c0f8cbcfcbdda826d11d
MD5 8fab0dd94e7d80919d2b1835fa3c1e37
BLAKE2b-256 faf547352c15301db84ea72f0490b6f86c4c69ffc888ba851b8d35f41dc57628

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bcc81c09226779abf3641513e8340da34b3dc35d4a4ac2e273b6508d53c04ff6
MD5 3ccb84534078057b341b99d0a4c97ede
BLAKE2b-256 3088780de5ce4fe49f3b980078ad3cc89222468a076580bb51f4549f5972be46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5cb7c54db0d62ecd23d53b9def80d6b9fabe1f06884204660b93f8722116b42c
MD5 4983c416b7a018e6063c7de1a5ac7a55
BLAKE2b-256 33d267464e4dccdabd2ea48a26ddcca2ba8a790c4711747c19c77735387a7c3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d059259f989797d0f7b430876d3c5a8805cba76b73296951fc0d2cf696658477
MD5 b5c5168ce3b12d7378fdcc55d0f87d3d
BLAKE2b-256 4aa4f892631c01de10e2f2b2d61aa04aa3e4ac2cd122f12e4d4ab4a1548b1e2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 78fcbb57367cc0b0dc5fae22112552947b612e80d8b6e8d0813a47e238c9fb12
MD5 211f3eabfaac93c1733c47153d4a5231
BLAKE2b-256 425518cc3389c4a3c9307f4fed1f0906693afdda2d271f8241b22ff8b3cce399

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2b4094662ccc580283a30852b556184cff63950ed5db07f887e066a404d75bd1
MD5 2ce1094a81ce2690e1e4ca781f222aca
BLAKE2b-256 099243ba1e9854b606d23d5eddaa062466cafc78d82e7db48dd1bf0de9b56d19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d73cdc9f78ae2cfd06642886c65d575c1ede6ef950601b972dbd86216d373994
MD5 3df8948cd8fb2f9f49659ea2b77714f8
BLAKE2b-256 f6db283de0bc56abbea53de5c7c08bad6b527a3a01d703943df6ece8c3f9085a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 605fe245a54a3d3daf2d7d1c7b7655d1b4814b60f082ec4b503611465fdd9175
MD5 d5f60dcf4ffd6e1c8a4646c2e3e4fd74
BLAKE2b-256 43eff855762f40ad61359c96f79e0523d62fd4844fb88b4dcba82df2d11a58ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 471628b638edcba85c6d22c879e9cfc7d63b171fd514eaa1bc834fff58b5cfef
MD5 eeb9affff4d58d9c6d9ead0f1145ed58
BLAKE2b-256 ef1547a52450c15c8b1a4d4d3542a39080922b39837e8ea4fedb29b5bb541fda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bcd92371ef1f3b645df844baaf9b611610b7e696713bb9aa415d0cdae86fae31
MD5 c432e707fef1ff78a8601c27160e1500
BLAKE2b-256 4728d4cb30fc61c3c78749561b469d22e14fb4f3443f6633dd0da30ddc6d1188

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4d895bb8d624b66513b2677f7aad7602759da39310ac5ffba40c438ffea3b409
MD5 bcc25aae3a30418ce7f4f3edc44d8284
BLAKE2b-256 f7d698ad9d0de69572a7c1e8c8351e67d7c4c11745a32da1ead1cc4d21da5d74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e23132b30b078551195ee681292a907fd41c138752a616135baa7cf4783266b4
MD5 05579d6329c153b7140652231630d723
BLAKE2b-256 b3f0ebd04e8bbe2c1a7e0257297d7830d69a8c3ced2690dac5fedca28c987e5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1f57b752f820cb3f5a6e4c466ee8496c5d2a74fca779d6a1a18a51fdbfc38502
MD5 69cdcdbb99d2417ef91389f12d294f63
BLAKE2b-256 41d48819b7218470582c7fbd56720cf44ff24c302bda5642bc0d04046fd97d13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7907fba93bdeca119724f26a2d65f308f87d66dd79812978eb3a1b1b7ee941d8
MD5 86348e7de0f749f155cac42184537375
BLAKE2b-256 ad613f80898392b1ebd62e6b49686ad33cd8313ee71c370caefb1c632af00b2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de2bfea80948104c4efad990835eb9a38819b01ffbb356dafca959de443cfcab
MD5 e45a846443f3fe26fc700585c0f90307
BLAKE2b-256 15486a4e6398b5781a8c66b84b36ec88c7f211334ce0fc359750ac4dd63d5151

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 558c571455071effcf89dee5ff4619e274f2cd0c569217d4976bb0e360f3ed94
MD5 835349367595bc417d8aee1300051848
BLAKE2b-256 616de2a7f077fa8575eaf4f093a37aba39d17d109d5506245407563fa0c953a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 348413544043cdcb9fa07e088dd4dd44efbc10b06e251052f954e79b69930251
MD5 d75a34d1be6ba36ead19aaf353f5521f
BLAKE2b-256 21dc6186d1271d0ab99b3cd19beae5736e27d36e88be4c6f10b952073075d56e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 efbdd814fbcd422114ad759cceaa738563d36fbc6aa93a4aaeb3b9eef807d5e3
MD5 05a3249484041d3a9e90c966f55459ed
BLAKE2b-256 c14b8ddbf6069d08f07d1a58bc7e640610310921dd28cfb4448b7387eb856470

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8f3fd520cd301151a6fa967eb30426b930e4390b79276152469c684c25f1c5e9
MD5 2529b8e103e4ff5ae424d4ef4cc4fe31
BLAKE2b-256 1d6a83f942939ab6a7e1c1806ec5466c7064912437f4899197916fc31380b52a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f265bef9a80279887b3c69d55ef9c86c1ceaf4f17ad46d55e4c66427e6a9d4ac
MD5 ea3779ec41f07bcee0dfd60fd44c3d60
BLAKE2b-256 0e5ccdbc81067de8c42ae9bc74e62d6b84f051a5075bbc891683e121463c8a02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 335f0f4dc48b897f81949aef19c26c82ef4941481e45c74625fb20f722482b73
MD5 bb41767bdae111dd2e327a634aba27ba
BLAKE2b-256 70cb370b2aa8a60a6d02b50e3f457daa1aedbc5935a9ef75d7e5c5cfddaf8dc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 679b15064d9b7a540642f4e5323974f3423b49cee2d56bc51814a8cf2d2e70d2
MD5 29ae9785e83bb37c1ab7a99561d419e7
BLAKE2b-256 97337a9a80f7e54143ad3de56205888283158c78d8a5f34cc1d55c2d76e0abf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dfc7927b0c42f8bb2f3aa3c7a04530f2b224d4fbfe6f098b0a74003248101a14
MD5 2f7e3d7a8a498d8e3c98a4f44673eb3b
BLAKE2b-256 c99eab4bef73cb4daffee5ee66284a6db445beb0e23bef70696c286ce6beb298

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5e7bb1f9ff9e9266baba33940985cd83b85c8611644c4a9c5100edb203195d73
MD5 c64e3c3be6118e5e714214c4c5b58e46
BLAKE2b-256 efa0de88551fdbcdfb9429751afb240019d67e16a1d26319175f46fc8ea17ca1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 67ba95da99709253cd786eebc7d0c1055c26cbd2856df31be229ff634b761571
MD5 7460457be67203c87a422c669fe73713
BLAKE2b-256 99fd62f641d143f444d72239e6453ef2dbd4aacab50761847e465fdc297b7117

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 44478d4c146f06e61cf930e4d4ec36b1efb4dda003863b507e6f39e77bc8a38c
MD5 5c19b8053023093e306d709b7e1308ef
BLAKE2b-256 7bd7f431a4c335e19f195a289ee580c38c606bce7c1739cae4a4957b53af14c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 299117dd9d7531de9dc571745db7b3224f8f21d8c77b7ce3cdd52475130b0fa1
MD5 4175d99531a6bfe580fee85e5433625d
BLAKE2b-256 299cc0720ee6e36261fcb10ba85901aa86bc0a1d287d802b3ec316cdd8c9c64e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47472fb990846780900f9c26df3eb907e02d1eadc9473e06e67ffecf5b4d9f3f
MD5 9a1460c674f57bbfe69c691bc54c5e46
BLAKE2b-256 850f80e9311af763b63852e9c66fb58330a6951f9a01776434b0da41825b7bc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 acfb3b5e74fa2d9612e9aa2c83510ef3774e2abd83cb93a70169777f214e95ae
MD5 bca7bb41552ee7014391aacf69003e67
BLAKE2b-256 10dc0d8ea6064e27a4e62439d5a54c521bc17f0c78336bb9d802b929c075b8c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 207c3a1aa4bffe1cad45595f4a34a8a5b91e3bb4360f011ef846d80bf63d7855
MD5 062ee602e17a555ff4d7edb824fc97e4
BLAKE2b-256 7e8f3b28edce740f8fbb62359d3ad7b70e58e0b49c45c7c31342b6094d037a33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 79ee14317bb27b71f70dd972fbf0727eb14179552c3bdb56eeb60ad9e97ec763
MD5 0c790c6bc45451d61d3bc3e2ee7acf65
BLAKE2b-256 baf8e0f66ec04203a6a6e4ff47c20352a9649ac569111d65d6a98b26e17b648d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0a96fa651b7d221af60cfdf339888e5991056960a4977cd248e85a7197be6bf2
MD5 401a41cf076bbc758991bab28effced0
BLAKE2b-256 19cb382e4ac3c59ba3b2e33527d5ae6ae890eb8e90110f2c380f6941bdc1bd74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a03d95c8794029fa6da33c8968b21bd322a129ad159218482a840ffe9a3a723c
MD5 fbfe4cfaf759caf4f4d205f760a0269d
BLAKE2b-256 0e2b7d51c5598aacabf02ef7beb376d638f064c68957de345be483ff396d5694

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0f4173a174aa6ad65c1b259ef04d5badcddfd887ec51e2d77c1cddae62a0e2f2
MD5 2cccc11db62346c0b1bb0e7de8f310e0
BLAKE2b-256 df86d373b7621238a69f31bbd9b56d4dd0b2117a4cd86f7ede172e3b0ced1538

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc4de346521f17602b958f17d94f85be53c0b047da6990be4b8544bd7f87511d
MD5 9be4fa61ed01df63eb3877ecbaedce6b
BLAKE2b-256 9d2f4fd049a409424f6374083459fb44aa7eb55f242c6625b1ab9572824015e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fa338e9e013aaf61d76755e71b313ae26a5cc62f895662d15784275f997d37aa
MD5 17e91da7f1e92b705c4d1b6272c22ef9
BLAKE2b-256 7b47f42af95ecf0c23dfa6bf2f4cbab78120959138a10f15188bb57bd8a430df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a38cdf86d438f6b8bf1e51ed9792dd86726df365c3a51467f4064687287bc0cd
MD5 98ec589c58526a9d758fd556123497d1
BLAKE2b-256 b9869b464d0786710ced52fa6ec23318e9a7939f9d048503e4f3552f8708ffdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 52e2da3abaf1e65a5510fa48389f5b4c65a2416c7d45c4d5f16d86ef4c8a74b0
MD5 77cad22fea22846c500827d39aee7fcc
BLAKE2b-256 369b26b2af8cd6ae5b5c8b8072d43a450fe327e850a7023d2ec91b5085508e84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2242727d5de28353abf33669020bfb215c25a262a2fa2c553d594bc0098c7f2d
MD5 e137ead337f370b44cdadf2c5f4a144e
BLAKE2b-256 a76dd789474dc4f639d7276b68176f6b29f4657301d5884445ed250cde8479cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b3266ceaaeec563fd50acce81361f1e52cd98cdfba2838979a8f1043c563676
MD5 cb44036f4e9e83392811b5b9e11ebad2
BLAKE2b-256 b741757016b5bc0d09f6b0af07f864b624b85558570b80a76efdc1f0d30e3920

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 35ef8a72a9fd3d3b3d758c7af3f6c61e5220bf332a282fc30a0ee307bd81fc04
MD5 1dc53b1040a5fa52b5d770974030e7e3
BLAKE2b-256 91db16f4c62d7e8bc100285b54256b5942bc972959f307ebfc378dc8620642eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b0190399df2edef52f4f43b320d24305a578a1da765f18ebf41abcb90e21d5ff
MD5 7bb8b685ca294fe9e13781c033fa9219
BLAKE2b-256 7c25b89f30ac7bce318755b4e83d1e8df5ab6113b0c2228aa1a08ae3b12e4c97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 317baa80c7c1c64a7c8a3e09afae67b896af89c66afb6d9b269489348c8606db
MD5 3b07d2823590e63ad4165aa2b82f5985
BLAKE2b-256 fb56ecad8df2a2f6317dd010a64dd85e413d412d49641da81447d958ea3b0f74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 08f932409b166dd17d2158d01031469e411f233a40010e93f3328d06638c9846
MD5 296d7eb09d61b4c7488e054c388ba14b
BLAKE2b-256 db8fbee253e93c0f7cba3cf036a94d56e82cf64e59fd3bddff57d59310296aeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 482a991e3c44743f1b221fb7fcf3622bbfdb27b9a8c3748978bf0e38a59d2e81
MD5 1b3e1f31be86d5d05adfc2b22289a310
BLAKE2b-256 950940bedd13374a7ab8cdeab8c4a380c0178411e809c3731c750446c9c2905a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fdcebeef4b99e89f66b8b6cee1b055c96ba72711ec94cc08ea7e13311f99c625
MD5 03e977c0041ff6b5a12e404fe00c0ffd
BLAKE2b-256 2b377d6b0951dbad94b228c274cf2a5452616a78219f8325fdde4c04d8d8e530

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b0338c2eef9143a7581577272cab2d9be0d422cc2529ab1e2a4d9722f0914bb8
MD5 b8e869862a4776c1b71275ffdde29996
BLAKE2b-256 944d65e5f7fc2dc445152c2842cbb3b27fe6b6e2a67b3f7a26cb35704784409b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 081f288d8243edef7070a1927abc984fcbbbf93fc997e153c35cd2c7f24267ef
MD5 c45df3bc71ff7c35919462786d80981a
BLAKE2b-256 97e0768fde39050c893aca99091d9775eab80aeb638dfa7f689ac99db5a0a96a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f67d268d66f77954d00c951c0523f434408bc9fa1384ac245440d3546287c836
MD5 51718042a15ab79f21133f06104b8cf8
BLAKE2b-256 796fee2f0009790f7898f94a41ee7f24c8b6ad6bda083805d4c0be65eba0ee82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 983eccc0705bdb67812deafaf7783b1d39ba1a141bf54167df0861aa173b6b3b
MD5 7051497c1b91816ed34df46671a28d23
BLAKE2b-256 5fdbaa5e6670f49e034a815fae47a3edce9d3502c910fe4a9c0f5d8ac3edeede

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 06556b27e8e943e86441c41ab27bef8606db91c1e222aeb5f7b057e8104b4267
MD5 7a1259caf2e699ebdda6a068cc08ae31
BLAKE2b-256 5d8e4f986944dfe982f2ec61b1674becf83ae759dd4f99bdff16b4bdb39cdde2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1d62d1e485df2b78e452bcc2c25dd2f5f687c45f074a78caf173880ccd26ea2d
MD5 66d89eb4b4ae1d8a419443f6a547604f
BLAKE2b-256 777f11e5c0ba11cc00c27aff045aab2b68f98e91e467eb6c5ade4a4f1622a7ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d5f8196419679556e3f447da4e759c3889720284c916251b9b89fd8ab129d44d
MD5 5ba289a07288a68ed2f02dbc701dabbd
BLAKE2b-256 8735fe3c8686d9fcc2ecd4b2820f6e0ae513e8f01762d15bc8d4582d0d0e7184

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b79f70b07d114fba27005ddfde3bebb0ee2a0051dacb44614a715eb18dbc181
MD5 1d050069e23187fdd7a4518096e2a321
BLAKE2b-256 301fb93f3623d661d6a6bc25fb8e47bd8d6b7d280deb9e77d2ab69e452586259

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 36a9ca65175cdbb0cf0a75a9e8b0e9e1b4d884804ff97aad017ac1434fba1156
MD5 610a1fade2fbd54c13e3d95a98503ebd
BLAKE2b-256 f0ad16933bb919ec793b928eddc8ef365db1beb00bc8a2ed98c81fad1b38201e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a993e212000aa28379f8bf62605bc47c7ab9a2b65c84502ee3abbd90ed9552c2
MD5 150003a4d4db42a64a018a0c28670577
BLAKE2b-256 6d340019b3917bae60f00b1c2458ff2b92093ded8643e9dd1a1109bd9095b157

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3683fae466363387fe48eb793c0f29df543a946cb35be7521e3ccf60874f473d
MD5 a0650924806a02d537580720a373c28d
BLAKE2b-256 e5994a8b800a9d4328df4dc2fba27de0b4dbd53fd43b52e93eb697c0a758fe9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 992cb53cc083ff256b2ae2eae37dd8db04111e2e6ce7c22cf0b8b4e752edd252
MD5 33c428eaa8e6aa8b5e6775cb23505b5d
BLAKE2b-256 45cec8e74f7f941b9ba0accc5277a1932700691e12da3939bc642516e93a403d

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