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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows x86-64

attoworld-2026.2.3-cp314-cp314-win32.whl (823.2 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

attoworld-2026.2.3-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.2.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

attoworld-2026.2.3-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.2.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

attoworld-2026.2.3-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.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

attoworld-2026.2.3-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.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

attoworld-2026.2.3-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.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

attoworld-2026.2.3-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.2.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

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

File metadata

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

File hashes

Hashes for attoworld-2026.2.3.tar.gz
Algorithm Hash digest
SHA256 b96e648fa120a1dba7cc9d7b56c61f4dad6f667356c67c05b84357ac48bbb9f3
MD5 278e7d491efcf55788cbef72666df415
BLAKE2b-256 85396d029ca735e2b252fde64530532f9bc75a16565418589d465129eee0f6e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6a373fa83d470d94a4726acde869612014d07cf1a784997ecb6ca3d162a7acf
MD5 6576c7f864992aadb34e2d9cd45a6f55
BLAKE2b-256 b2843d1eb076b7487bf7fcccd47d47c7d9d24fc180e8fe56a82e806dcbbf1261

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3e8c78a46a0311ca707ac12a15ce3ab20d8c59e8816ab196cc4acdc6bb21b821
MD5 e5a95a69a79cb348fa3fb7ec1e125b59
BLAKE2b-256 fa7d137f5550d6861f5254a9eb874840a0c87c0d42a11f2bfaa121c83d6554a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7e13e04f0e40427fcca5c56e9bb1c147629c0603812c6efae0a5d21836e5089b
MD5 9d0136621dce7881941ebcd5b8f5230e
BLAKE2b-256 c40fe5b026aebacb1a8ad86c9393d0bdd98fbc30dcd618102fc3f16c442c50b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b3ecadfafe4fe03a83dd774e37250d69944fdea19eadc3fdcd4baab787bb24a
MD5 e56ae1bd1671bfb0523da0d67b447eec
BLAKE2b-256 521a3d738aadd24f38d72866bccd01b91141cbfe7b9340bc9d7eabeeb214dd1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95204e1178940b2b281b6767b8708816a1ee269cd3e03f901d6968f428df1639
MD5 eb273bf7fa8021a94a6445b9b2f3f171
BLAKE2b-256 ad6bd36601f78d23da2d08a31790e25dfe844ea8798e5d6fdd22b08b7f27c3fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1ee6fae7e5b5fd304273b197567e436ff0ad34295cbbcc3e2148c60b9f55ef20
MD5 1f9e0d5f1914ec9d06e8de292ad20d10
BLAKE2b-256 7774c1751ca82d4d3f943031a08674e08e03606167ea60c1767a3d4d375fa091

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 43798ac3119dbd918f8e560b326c669c56b4f0d017837dcafa2f78828f25ab68
MD5 7b6c52e105e0a9b2601770cc95f48da8
BLAKE2b-256 b71f14f9e03cf5f64e1f42de790c6fc7450deacf14bf6891a591c156e4f66adb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d41c9ac47831bcca698e4e8a7be696f252f01b1b785b25c8b82a1bf0c8849f94
MD5 4799b7da622ef3ce5b818a94a91618f5
BLAKE2b-256 4799defb10145c20cd830591ac8cbaf01b458a162563d22f7cae683543260847

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 03a8b5c237b0106409522949c0d05c09cded658815dfdda47fe9a31315cc9eb8
MD5 9d2c2297dc6066a7c8a78d1cc768d107
BLAKE2b-256 d9cb02d0695904e6ed25e5673796a75790d3b10ee45e40d199ea5d92af68a605

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 747b6a2755f8720d77896030f0596b5df6db12ae273b1807082817cd80302341
MD5 6c49fd2e4bf546fcb1677308e3fd91aa
BLAKE2b-256 8355f7fd811c7f7b251721a53ba73c48bd6b278e69b4718dc1e52ae0e2e509f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6abe6d0422de872d8ced12699683898a13e04ead3b86edc5f8a3e187a9309785
MD5 c4a4b2218c6142b75ae3d28b2e251def
BLAKE2b-256 16041c9fdcd3626cc34f78a19489f1762dbaff0e03282d325bad17ea360c9d5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 61595476e3a6064df33e45ee529c9c223e7b7434f95e32899c8177db5debf615
MD5 360b572e0a359ea6a4b3bbd0d5aa8598
BLAKE2b-256 3156f61c6a4a0dfcc5c9889f37c2ce80b2cd4d0e3932c5c0df7eb3d10edcb280

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f98dadc98f6b01c7d31f07b01d912f8612f12cb8919325ef6048ef90f2bc9d47
MD5 2bd8e11baf57483d75b00d436f02f8ef
BLAKE2b-256 1e113df75215be40fa9b7b4848323713c78fa3528f2ed2094b9896a5be1b56c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aec7732fc60cdb143006ef78d9b3dea2b83963b519f7fb886f51e36b181f626d
MD5 6086a607f4ed19157cbf3133e6417832
BLAKE2b-256 5f5607137434f25e7bf470a588146406f2a60e35a159252f085db4d23b952b16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e221c923ea7829b7c60e7bc912f1287555614ed16f3d94e5e002ebd240f4a90c
MD5 472cec031264a9f8563afef2288706ab
BLAKE2b-256 60489b097b084e1cdc0d7d3962725f994ac16d38e52e2de8000f1dcf14e1536a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d77e84e15d6ef327132e925efd6fa3f7bbe83baba14a88a5b87e457c663503c0
MD5 44413b600d80ea2042991b4dd840cf03
BLAKE2b-256 c141d53626a2203c9a92d22a7ae8bd1ddb335e0d9893c8d66bf53775a1bbe2fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d03387da57ccd16de4cb522e44b57309b1805739a5fa1c9bcb7962efe57b9aa7
MD5 364e452d2b4bd709f7f9584020d78469
BLAKE2b-256 14c684c581613856ad3ff150bf5c3f2c502634003c7403859d4f07e848cdbfb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 19ba85e94a0bf705341455bdb0ffc906106a76064133d88e2cd7310905b67d9e
MD5 02d4cdda4795ed86e99096d091709ce6
BLAKE2b-256 ffb289e98e20b67672cc7b828004daed02486292de3902a92622c183152cecfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d02661944fb1279864b5bc8ff23daa70008ced7ecd1729237bef1e8e8837207c
MD5 1b8cb7961daddea22daa78d170c2f676
BLAKE2b-256 1e5a529f4897c0974e75bc226b2758f1756ded860816d6e127e47bdf66fc5284

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 335bbded1c4093a80cf96e6e09637adf3118d4ffd6ab2e1595c8e38079c20921
MD5 f562de637d58a62c946ec49fb48b821b
BLAKE2b-256 43fa3a4ef17a58c2bd3142d7b917573e93bac05de4201be678b5455d07921c47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7e703f7468597d32c609c3aa9bb40642b90d0bab826965d7b8eadfe0f8ea209b
MD5 e7583b03fe24b9e96661ae7cefe3b72f
BLAKE2b-256 b21f5df74ad68b5f052688f47c8799a6f66100253a685e76c4707097ee107066

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 255ea2242eab0f30ac340f39ad82d27c18043f590c2092930817872b26a02958
MD5 a3dc691e548f63f345956adc24f64da6
BLAKE2b-256 b9038fc7f3a7b5be637b4c36eb42e61caab1342f7f1ed7dcb4b141faf5fc11a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d7d68d23a090e09028816c807a2092fc627c49e2763ce111b5969b511d111365
MD5 1f8dab1796b6333982e2512ed1e1cf48
BLAKE2b-256 15673f68a4b672d2256631524fbffac532c10aabb72283d907b12e7044d0ed8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7ea95ce99d5730d7baa8a95cb982133a6baae463a63f2407066803271759e8f4
MD5 1e51d075d0186863bfd4e0bf14cccb07
BLAKE2b-256 6b821d715ff97a7c1d66353c1907bca20038d31e4a70b1215cb3ce9b7d0b00d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 55309ba8cb8f80eff6d4e4630adfc3cc5ae6cff64153d65f32be6b1aec0efbae
MD5 dd2941b0553585c11194a4791cc62455
BLAKE2b-256 eac51e29b09cb5719f876cc70050163e64e24f76f8c7a01861765997871e1fc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd678296a94cadd08c89451d74ca809651424f7c23071a350fa07990c50ad6e3
MD5 4816e00284d2e1ec9cca0cf1ed13ed55
BLAKE2b-256 3365c7b2f00c4e9e0beaff361831c5052f6ee07f84867ce429b8a3ce8fdb0cad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc3ce85426041d68b3dcf01bd332d7cf657b7127040eb59110b4371057ed3b5d
MD5 987cabc7d4e7a16aad2a89f46689cd33
BLAKE2b-256 09b2b3fa2a120f25fd2d8a44a93367e09061df14db2106454eef7b52fe77ea0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 08ea7ac92cf0276f58e225f3e2429298d4fdd214eb4815404b81db08d6cd2d66
MD5 338fa32c2695af01d57702cc043483c7
BLAKE2b-256 703e3a6f6a783fb51188a7179ef81913429c04ac8a4ac4ebb05c457d14c90483

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bfe74b8234a41436128f89bec247bc9d17635ea6973bec76b20f47a66c3e48f1
MD5 371241122a0c9173ed626cf741b70e79
BLAKE2b-256 27d8f1af3a385cd3d84c4fd8800c3486c760fdffb32b291f5f57690e3130465a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f6eb71a0c0155117a2c69d1baeb7c346c5c228ed238289e0e221a8d7b13ab24
MD5 70d7df3fda309bd915b2aa12b221c135
BLAKE2b-256 3c2ff5010ed3f89580711cfac1bd27f99e558fb7e17db0338c1739fab1311fcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4e4475b210614c52f6beefce75ef29c36bfdf69f89de82a848a3b1c4d3f14177
MD5 6c50d0d7a6c765755465ddc920da60c8
BLAKE2b-256 efe453a4fafc9261e92ac941c841db5a983b94e583f9b66d2db139087bf8f64d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4d8d1c01b7eb2d1ab84b1581e4a493382e76f52723043ab7c06268d7ff0475bd
MD5 1adbe94652c87d0e17482c7900b39ab0
BLAKE2b-256 44b62af1ecc829c15a53b6e32a7e526f44b1b4f6f99597e8f894f71a9348b44a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d8bdfbd5be97af88862c7e0924e835f166c695e4690ae05e0262ffce5f60b83f
MD5 cf807712355ea566173ddc1ea6a0f090
BLAKE2b-256 6e31484c5b6ea280ce569eb16abe8959455653f12afe7a0c761991588820c2d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 28bbfebee5e34ba814080dc13c79b9ca9c1b53cf36aa88abe2b5611ad68c3f21
MD5 97e0b801601dc8b44ed9d0ab8730786c
BLAKE2b-256 45d4e4ee2f4a76fc0639103a824a645d3da7c76ddccaf206fb1ff7215e05eb50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7ea2a863bca309b6f7641575bc046321e320b3d665820feebecbf75fa01231fa
MD5 79b1f319cff46d32b3df1434cc95696f
BLAKE2b-256 9ae57ba2d8df4205dd0f44a9cc68ae8b25a3b6396eba6e92709941d870908991

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 e1bcfba5151cc1ca0f65414366d0beb9e67ef62af87e9cac30bc6c0cd10638e1
MD5 fe3e41f0d1573988d86ab80663e0b509
BLAKE2b-256 f6478b907a27d9cdb1bee94d360221dc7dfe5793fa17761a067d8727fef98734

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9e6632c2034faae0f803109ef2ac9424b5281e5d90ec5238b3fb6a3eb80efafb
MD5 8fc979d0ad879591f312c0dc024bddea
BLAKE2b-256 1e95a4b74df10b87e6d3e1ee8f658877bf600549570eb2d5cbc5a146f741d227

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9a33ad44b4df33d3a165a2cd618e17ff8a420fda8d1793a2fcbcedcd97dbe0ad
MD5 5fdb88ab95e465e2810372799b01442e
BLAKE2b-256 f26bf9ee64b362b44fed44b1b9866894d998914d8c9db1bea1d6cb72545e1892

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0248c90b8ea923b4bc1e4409404a7ada76402df594550543eb0f67da4d576f36
MD5 748feee6f32ce0a90d5e349f3071bfc4
BLAKE2b-256 05c6f437abee9352381325455f29ef7c6c37ac2d4a98200711c5741603a4b0df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1382c62fe1b1f22effd0931f9a4761d2a2ee28d8565c5edcdf0c171840888412
MD5 272a13203ac959d6c55d5993a44cc2ff
BLAKE2b-256 061ab0632b16b01bd10034c2fc33f89dbb90b79d4b25f9fb6825ca8f855ef0dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc310f27cceca400af4ec2c4b329944089b31d445ef21b714448cd3db2c92447
MD5 3b424186fac5d9e12d5a6a3dd285512f
BLAKE2b-256 d0ccf7caff2f0c069d8da96670a116e2687d5f2ac74f501772c6a83d311dff1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cd44b3af0cde077a16f1c8ddf85b9f4396cdfda805fcf1138007ebc85594a20e
MD5 014eac8da07c27c9a07a4e17a9e9cc86
BLAKE2b-256 7f2d9934f26dded7905ee03f6d323ff394928181855f1c48dc1039d54df9c1c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 002cccd6f83704a3b8afec1bc1bd3b0acde4fbbff2e78d60a03512dcd4672332
MD5 2c92bfd1a9ba75b4c96e22761a49c7b5
BLAKE2b-256 a75819729de73f33ef84c3d0726995d703998295cefd1381167d6bfe19076d88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f08cbe0a8bcf5997b26579b78e7592c0d4d949a969fbdf02fbe191c475b0be24
MD5 5c876204b309877c0408f75c8fae1b85
BLAKE2b-256 817434d9ccbd22d3143d2f8eab541db754bf598f7d46ecf33b10f6d3c2b76c57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9e0a0735e37946d5581e14d5e910f6136ccdb21007e0b45d1b3bbffd5514085f
MD5 2f2c96804315a835cc050f767d944f50
BLAKE2b-256 8357ff1d7d1cd4a0e65f153570ad3e57f1f1e90defd5e528060717d0d25a32a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e34f293464e822c37b00c59d32023f5fea7661364e42da6fd51152a24d6f941e
MD5 02f40032984177594deff5c7b11c0a20
BLAKE2b-256 f50a6ac30c6e7ca459682f24dc4c4f56ef9674edf704cb251a37f99a39cd7260

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 162d7067752a2197cbe8d18d10be40ab7514a5b3704e6ee25473000ad92e7827
MD5 ba645eeee7ef881eb0e87e9208b83a3f
BLAKE2b-256 7bd3b2622ee05240ba726469ae1327db94033c981ee817abd5c1a4d478d5c7be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c1b88478d507eb016486718e71a26fcaaf696f46bbec3ff74a53b9160fa4b600
MD5 a5fd2d40ebf62cc6fe64125c9e7b0d48
BLAKE2b-256 30478462327818fedfa92b29b6479319995ba1e87950a6fa60b8de322d20b6fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f419a6ee6bc7056af2e970af1d9580957b86d4a8da79439933f5c9c5880e6c85
MD5 e74abd1fdf59fbc58a67bae7e6eebb1d
BLAKE2b-256 dddb61178d7fbdbe57caadf24b0bf13ff4eb4acf1c779cc3fcf0994b9e17fb29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a581fb9d95b23ab7ae57423262daca7a0f6225d6e53fe82df1cf39555ffb0f38
MD5 95af3446e078e0197ace7abc3abb3b03
BLAKE2b-256 f2d4d8131edf7abba6031e1df59b3724de462719dd809a86b05836b580cfc79e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d3c679de4d446cbf122a3b8f2a0143333633d8378cc0d5d7efb48974f52505b1
MD5 4c264164755548e75db0070605d4ce64
BLAKE2b-256 bf277b577fd9d0a9a1232164053d9013d11c82d735327bb7d44ab6ede85aea40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0b37467f339f706ea4d76f5edf3d9a146dbd90100085b380a453d4454918c218
MD5 b31c9b16cd0ec5d1d4522af02ec7f4dd
BLAKE2b-256 d033cbefe8a3de334a273f753c3f37c68f007bdf140bf22c63ea80457f3ef8b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 228dd5dda34c8cab400cbf230f64f30e77689a4468300780ec1f318854782e80
MD5 621b775526d88343ea0deda71eb1bfc4
BLAKE2b-256 4e71531f58d0ecfd1c9187b27f3204af238015638ac3eeb136295ea0e4c9988b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 84c4550a61d41a801205d7b0670211ccaf9415bb7eefcc713dda643b38cbf71d
MD5 c81181a981512b261b06d0f540544ea8
BLAKE2b-256 3a870044a446b012e5570b565ecddf59a6b7675bd901812eb45b9bd1adf8da97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ffaed894af73ea8d291b9d0bb85525ddf63fb8c5424865fcea8b665e9e011c20
MD5 989b1c92d30aef44c575749e5a4c6676
BLAKE2b-256 9c229152161a3b5539681a6fe78ea3de34a3c33e521f832d91e6bb59210f58f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c681a28ddf84ba4a9a40ad135d9a18fc38e7f47b92743d0c928532af3ab6238f
MD5 94573895316cf23cd32b0d15136aea89
BLAKE2b-256 1d86d5a64f7199523b462ea5171f7c0b4f0273ec90f786fefcdd95c7d6f28e61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 46982d626404451589f5bc8ebe44a7c5377f4e42d49605170e1bb6addd4ed292
MD5 61d0d8a92cf5f6751de848365c003e2e
BLAKE2b-256 9ddb664c64a6fd5aa3286dc62b2f803e5f966007aaacde3cbdabbf3dc5c877c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 57af2ed0ff2c16f6c24d3a6390e526219e2c10433d8cff475583c2079d9e30f1
MD5 a1c8109a3b16fbb30327466a67ec168d
BLAKE2b-256 8b11ef7c8cff9ea341d552e5f3ef8e69b8cff3fd5bf1d51e0bd8e3edb20908e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2a57c1529bc1ef7cc5471798ff957602f03bc997535d3cd5d5e21593e5750634
MD5 6945008237081fa3d421c02c5ff83045
BLAKE2b-256 f7940197e9776ea8951553adc27d75f4800e4a31f4edc36584c1c3293a882817

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9756383a17c0cec2728eda9a7a1c981b979a78fe234232657f20572757042c9e
MD5 35c1cef014d4ed64d2aaaa112f399c05
BLAKE2b-256 3d92bdba20e8ec65a97d9790c019a106717d5cad8f04cc08f480e9e7805fed89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 233dc6749d3107d15fa425e15ffdc097748f9303ede1471768d2009082201228
MD5 6b25d616d557bfb60abe25a47e9f84fb
BLAKE2b-256 9eeaa310a8c45b90242c63bee8c55eb39b5cd1b6c95f0efdcdd49c92a071cd55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 474d90a2b3958d581ba04555a13b1ab4c1b9c218ef10dc19a0f462e288b440be
MD5 b63facd364d18aab7cf4d0725703f3fa
BLAKE2b-256 8ef39cd319024db9b83bda2332d8231273c316ecbc717c1f0ef83af44e91c4f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 03909985178b17da3b43336178e5d244978c507afd4b0c5e7e507d8b492296fa
MD5 1357eee50f7c6db3ae524db1bbf8397f
BLAKE2b-256 2ea78f8faa998e1b47700415548bdb34c0bdc9a510c9bd79417fb64ccb6c6583

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7c63b53986d8123937a86adb12b6f8c15049b75faec5e908fddced1a7aecdb0c
MD5 6de0a53a98c068a83f585dc1648ef909
BLAKE2b-256 25e59c8cf0f7ec21e4566dea70261c1546e959fd22cb9ac87fad04140cc47396

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ec077e92d5d57e2b923ea0a420bcf38d50b97f711fdfd3be80f04d11a158de46
MD5 1635d2206a4c67c2f0f5cc8d63dca0ce
BLAKE2b-256 69452ff69028ad0b386a0cfea9eb3abb30f7eb992303a73b532b3a752f79a358

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f03f90505acf134454ba344afceb37926d181abcc36b064268a792876899ae84
MD5 3d5b179cd393a4a374a6cb60107b03e8
BLAKE2b-256 1f96f524b24e43c50a82f38e37ff725cf7019ca6dadd7acce8c6a77788dc353a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 76842814c18a7b352c53465a1f8b781acdc1695fc8d6292a063006683868431d
MD5 0521bf935dbdc8149ae8f5d2c1b7fbbd
BLAKE2b-256 85f66eaa1e8aa6f6944f6ecfd05cadda5de1975a9f58ec02d2eadab6dedf34fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 557dd1a02146b5d5c7189df83e475cacbc4e7b2dfaf191751db7065277432f61
MD5 68be5433028ff3fb6af1c01a76e4bc01
BLAKE2b-256 c5cd543fdd080c3bf746e7d9aae2a771453cd941e305fde898956d6fcc2f8db2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4a79ee14cdf495af67dc12a190e384fd4ca050026239c2ce45b22759ca0fe147
MD5 617c96344b88213f243a49a1b05842ab
BLAKE2b-256 f47dd9ce1d2b147027b952ea1c426f3e54c03c5d429fbf5631c8f941e4750069

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 31a124939c04cf52db7e6b3b5296909954d2fa267c62bf7119878a542d1df7a1
MD5 33ecbbcf7cdc6e51685a3b185fd2f0a1
BLAKE2b-256 f6bc6a8ad80059d7d8e2eab1c8f0ef64a3971db181c7b7d3282302a9b892155c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c86e89833f1a21acbed74898c54d66bfa2f5b2bfd13dcbd830fa63b393e6626
MD5 fc82f332a726cf8a63d1de83ba371a75
BLAKE2b-256 436702720c377636a60e1f2db590b1f224305f6145bbbe2210305bac34279c5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 378b4eb500be4c16879465e2941a989e6927d56c483e879a7865db5acb0f0aa6
MD5 bc62a3f66b6d5030f7b3970ed7ddf9e5
BLAKE2b-256 55b410f709d2c88427bbe7f9db6157fbccc9720ca189021e28254a76c706f4af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3b4ac93dbd95705c401fa72fecb5df8b7a1f46b1734584308519a964bfc92b5d
MD5 f400dac24646d4f04809cab40bdeec8e
BLAKE2b-256 038c2b5c53a34b8f7cbcf406e8b6b019a98aeb52c75b58e6ca658fd9b413a762

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 17bdf3e39fb175b1b5491a41884f1bf69aa6ad2a968e4e483ea64c770faaacc1
MD5 4a2f2c13261a77df56ae0cb9f55459ca
BLAKE2b-256 434e7180c07230b374b94135ad8575c18c67e683edb9c9c56f8d0518f5914d01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 242233600f4273b939ef7c92d105268e2282a80e90bac78e6bdb24ccc6623635
MD5 f5067a00bf9e4b92ac95722327ef7102
BLAKE2b-256 d9af949600169b6125e64ed14d8543906791dce9fca33d48905aff38ebc0140c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b81259fafea45cca3eaf262fc6f1f126a03d1f3197555cefc9983ce6063e400f
MD5 90bcf5187bdde63e33205bdd4e965f36
BLAKE2b-256 a74f5d4d3e4deba7b06e73c99abe72dccb09ac709b8b3a4ffc51c743d13c6c39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f8e7a1df4e21621f884166ca7f044a37607281e183c7d574e8d10ffff414f048
MD5 89cdb53b84c4ff33133777da8572b7c1
BLAKE2b-256 8e3bc57b9a32b80c78ddf629f1282eb82747850cee20226104b509f23bf415d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 226f7f5f606d94c23a5de9ef679a11d043a0233c859b13de011a4446522eee58
MD5 939adf7929b3ad5390a82235471ab267
BLAKE2b-256 7a24dce8788f03412f40d00fb1980ad5d9ece69b02a0b2b7dc4d7ad08cb1c04b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fee638f4f6c509b6af658a9037ef83a98f7de5add7bb4919cfa04070ee053d38
MD5 8499944e70b3e4163e54f5dfeb70a85f
BLAKE2b-256 68dee5a514be5eb3c6853e15c2a66fc0b76c8965d8fafc30986386d16e08a508

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 24c57e05a6bc38c527a9d5ed7ad84fd8e8f170df5d79d8504c54e609cd0f963e
MD5 9bb6367aa205de802767044d42b2a014
BLAKE2b-256 e069dffc72f9996216d76ece0493ce21ad7cfbc2d8bd0da78595bb4fec39a105

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2d19a35f0ccbcb36a22f26ef96a7ac2a794788cc5cc74da2b6232c81bcc851f
MD5 5e19c5f4e04b7fa4edcc826edefc9f94
BLAKE2b-256 ed8e2767e628fd61f2317573bd3c56e4ad2f1a0d6505f0460f2725e0d937ae04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c4fe1899e1604d4f1a55843b944e1c5a697c98b3852760abfc64674a6944a51d
MD5 6d27b09a10d9c6416571308646dbfe60
BLAKE2b-256 7629265c8611e7acd56196321bd9b8c1f9738293a79ca642510cc9131bcd5d2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ccaddd2a2a634ef610102cb4a1337c47fdf6a1f7f1ea74021f25c9e490183659
MD5 fb62a29bfcf54590349bf140fd1d11b8
BLAKE2b-256 372f0d84435fcd0c0cb260b6ce1eb5ea5a7ad35ba0c24a495bae1d0f256c9d69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 614e414b8d376533c28c15de16540f7d6f80fa99fb2a601e93dbd25ac605af7a
MD5 c0bd7675122590d20b23965302b32448
BLAKE2b-256 037864c250642cffeeaca127c7be894898defba3b1923319b6eddf3e92dfccd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9af5db26b4235b616fe45e4f1d6107b5e3af70ba703bcd55cce43c724bea4dd7
MD5 8f530879e76ef1a6b334da121e07b456
BLAKE2b-256 587a3fdcf6225303619df72622873b8cc2fc5c986f499ee96dbc1772e2616693

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a8db12ec8580b688165479b284ced1be4c87160c5b167b1ce22c16167539e8cc
MD5 4820feafea73fd769d4618b2bbe6b1ec
BLAKE2b-256 fde575e57e7651b91779762a41b9bd9e9924bf337b0628fc7c86c3189dfcc553

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d9c62fe480c326c2e57fa89c87b0737c8583bd267b8e69a811159c6d08a6bd1b
MD5 7b7451c4f4c8b9e36e8574fed3be34d9
BLAKE2b-256 47a401e0461164cad43861d9c1391326c03aa2cb31858011c65f527aaef75373

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c15bf0e2ea2c754ae3c2f874d3beaee0a9cc91b9451549096789cf13235cd1e9
MD5 429cabd38a40c7656b460f0dcba07c9f
BLAKE2b-256 01d887f7c1a84e5716ebcc1ef78651c0f7492d390dadfec24d9894ebe33be3a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6a28e19ca63b02bf99abcd82c3e726b90be9f3456625b3feeb30a732573cfa59
MD5 e5fa29b6a4029d26731ca931dd8c0437
BLAKE2b-256 a989674279f09943c5f88bfce9ddaee65189a48b73f4e91c89d2d37d7ed2d357

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c0bf22a107a0d188df75a4aa28d50ac10933ca4f58e8cefc044669fb770d0d81
MD5 6e3d59a61507c97a0dd86858bb112e03
BLAKE2b-256 0925cfa185c19b3128c171400a3835bde6263079ae2aea9ae52b73c08c4537a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5917f195d2cfa83549d658c34816414f636b5d34192e990d6a233f0aa5a6a66d
MD5 a4915debb4855f4664abaac95ba043a2
BLAKE2b-256 1e3623513480462714729aa35a33f61f5ec2a568e84f8225aa314b5d89616542

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1d2e91644c376f6f5bec6f7f831ca9c6b0e1dc90764853ae0f5c9fdbcb1ed739
MD5 88e9434532afd27a22e719dd744e509d
BLAKE2b-256 d2e43d59aa3c423d83ed87a5aa53dc111a493c319336d092602c98c1dedca993

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ecb1d2546ba3676d66678ddbc930dfae3610d635cbbc6ac3532826b2b67aa664
MD5 162b7f09970219ac47a61a30f0c726c6
BLAKE2b-256 7e521a3e3179acab40c8b2a02c9d39f6bc2adddc1a503cfca0722cf8b5d9f64d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3109bdebf9a7ef7e02fd09cfaf076b5b4da580fb28a1afabcdbe7b8af6a44ad9
MD5 baf2eb47c5f262880cf95e85d033f1b9
BLAKE2b-256 00466aed3be2d397f28816f41e6a35b5b83c2c905058d730f81e751d75674f9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7127327eb4eb1903d9d89d5131aaa05d401d52dc4c74229fc55b5833ea770796
MD5 3f917e526514901ff02ebfa3472f8d1f
BLAKE2b-256 e497e57bf1662732754dc52264073837f64b4f665f470d17417508c52f3d2733

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6b352d162e34d34fd8916cbcb691a19283b4274f65c4b0c902a503d5039ce504
MD5 378e99c29ae09608fb7cdf1b0f16886a
BLAKE2b-256 92754be970fd5dbafc491e43f2c5e9bc53d3a84f4f37863e30a3516a67a0b3a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 70817f4e9ce93d8cbf410e3a847127c46c61ce6847e6747b67791c07d92e9357
MD5 7038b598b5166734976f7ad9d1f9567a
BLAKE2b-256 a62684b81707e4eeb3d968dc123befe3dd5d194e976e1258e27d40cc392cd0dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f2dc241fba350ea4284b501cb6697bdcaf097af7d0d61ca2edbef097066da34e
MD5 58ce13b0dba78251d91e7554efca6db9
BLAKE2b-256 b27141f65336ee5ecba0eb41fdb16a3475c508559a4d8d034c7e29f7039d0e18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6a42374b437d45b3a0ded6cd41c3a1f0faa85f666b7decb1edfdfbc03a60aaf1
MD5 847a793dc1d1aac5ad087ec427b29b87
BLAKE2b-256 bd4535fc5d697d8252f6f20d756a8373e70325229b40fd238f5f7e718b1ba5c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a7b51dcc429bfc1f045afde0067e2ea82e333044678c0935dda1b2fbb9d025b4
MD5 432d73635093e3ccffaf34062efc233e
BLAKE2b-256 ebc1a3c62726c02ab8393ea5e9e501ff698382035fa6a6f2810badbcf3ba8a04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed2c84a681231a0c4f601a91240b8a3cb1e7e2feb4cfd6dc1df94856df5d9c7f
MD5 c653e976b1c159befd73a88954ae1099
BLAKE2b-256 8d2f6a683a83a6185ffae30e42d6f65737fdb5638f38a51ddb7485dac0e91a86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 efb398bac1ec895a28530db38d4a1a80051b1dc0060a8400d443e8a96f0788d8
MD5 a78af7e28c88d82650df2cc22555cac4
BLAKE2b-256 b67cf1c97dc88928cadcf4730e2b8075b8f6c71e54e581c9031da67b7045b756

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 615c796f309909d3e068e3ab9e44262edc16824a2876cfd8f8d0047d4863e06f
MD5 75f2e9809a2455391841c62c31c20351
BLAKE2b-256 e91158b394c58eedb9865cc4b48aed16e54b5457e5f9398e00de88676daa9a35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 71c3e510ca7c91711d10874117da44efdc321b86d67a1089ec6139e566ba07ff
MD5 5044a2beabfba7d7f5ce56f3f5bfa136
BLAKE2b-256 df5a835443620d90a7559cc5003211131d59288518a1cd1297ec76df42467a04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a441999c466126590f71634f003063a0afb52e5108e097b8efcae5a8eb392ba0
MD5 6e1224dd6c5b906a29adc488b56df4d3
BLAKE2b-256 94220f731dd834991baace7cbe3422bd083c29c585b6ab6ae2df1dbd36a65267

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d96dfe685e68ed20b7f35849ffd1fbbe9d6e371f1a5609c6ac19930b64a5a4af
MD5 69f869710bb32c72cecd4730f9f80813
BLAKE2b-256 a5f50ca97af184569ec5454f6073d9b165c837e726b93514ee68ada3893c823f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 267b15725e8a18c845787647b591f1ccc4c5da6a5304c9ff0b1a53bfb412436d
MD5 7dd0f071cbb31815ef579c5b240401ea
BLAKE2b-256 b1817c6e60dddb0a16a5078efa1f923cea269e31117bd25f759ca4756c7f4c45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ff6490876abdb113ffe23df1e6ebc8027b629e503b3d37e10699eeb19bed38d7
MD5 e92c25ab3bf348a29b16acaa5adcc1a4
BLAKE2b-256 eacd0f6d8c99db38dee9faa9a617b9749939acee30b42a6f34ff4c848b24ec89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6d8ee66de4c60605e8020451c74da6725c46014cfba164e8a2af0ef2d90c56d2
MD5 199e97509cca9df1a3acef87bb0b1bd1
BLAKE2b-256 29a752f8268810e60fa6f3f67d50efb7d4c84770be5672a46fee7acf35eacb38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 24e0b856a6984e4966f8ab30a5e709e1ee6b9820e6511f048a0fa55550b00196
MD5 1a8b49a88ade572bb41ca86b4a9bc534
BLAKE2b-256 77cae2e77dfcbc8b6c83fdd77043579288ecf6bfac5c4f1452bb7762d506c5b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce28c2f12044c50f7629b1c8bf249ed47b54ee07929d4c5fe2140660f4af5afa
MD5 bfb472c4499085922b8a49577c2dca01
BLAKE2b-256 edd579a5c2537ab1688abd8686e07058db42f6b26bf3501399f420107cea9dbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 62576b4d3d466c030eed1ad4c76af903a4940aabc9216592b76aaf540cb1ed31
MD5 4947fbf0e845d66131036567e500638a
BLAKE2b-256 46053e152179c8f74f5e61ff6773f7ddd4d5e1fecc39a662439fed2b80c0fbf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 535724c8c68e1f6a642a3d4d5b1e3f4c6615b1522a6997a45c128a193fda3d37
MD5 8ae2d39cd134c8dfa9a867d479cb1134
BLAKE2b-256 3e1c3ab9e954f918f3e7f2712bbac3c0d497f4895cdad2cf0446aab59096515c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a81406f9e3ec438e6ec3b7642d7615835274a146464f1277a06401284310152b
MD5 45db183d84f7734fbcbfde0be02b3f51
BLAKE2b-256 ea17d6e5d5d9e3fda52337dd9b026dc504d20e0c9b8c01e189e034f05084db88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5f1b50ec15487bd6cb9ed2015998784b4ed5297cd6727bb98521b04a5c27830a
MD5 54c36ff7613826627ad391e6de941d62
BLAKE2b-256 2494bc489a292dc46fee29947ff5bc7dd9b3bcd92edb6b53c79d47cb89d524e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f36523279ba5e54c0a3e22e3969406ea2137d5b2e5b1df41268f9bfc1fb72713
MD5 5e2c61c89b6dc9bd38e719fbb64c330b
BLAKE2b-256 79d1946fef5b075b89789b3378cab888828773bf20b0351295bb1bb21d082fed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9881ff1a71170f69d61f94da4f5cf80d46745e158e1ba7ed3b00b17ec2ce0f96
MD5 fc215ab3f4b531ec96fb38a949bc59df
BLAKE2b-256 3805a1c7dadcb94c25300fa24da8755f316d192bc55e913e3d7d8b945e0998c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 92a378cbc8e9b0a7b40000edb3d6c2bba5263e5d10fbc97eba7671ff0fdf3c39
MD5 2de1d213a1e1d5698dfcb30cd0e119e4
BLAKE2b-256 271da5f8977d4569722d33319be7530590a757246b8812dec6fd285d4dd2f847

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4ce9c0793a44898d22548fd23d3982a0fd53d52aa706b218eba2aa99c85ea8a8
MD5 f2b28bb4347c44871a67a5ce86cb9a79
BLAKE2b-256 274732945e832998d8889deac2ebd738aa1f424e60e18f72ee56f274e6744a43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 39913ef7538f7496b79b7db8845636899288f5dcffac8e1a09640fc8830785e9
MD5 9ce7450c82890b9e06e6f5e64ac413c6
BLAKE2b-256 cd8714ad8981c0c88e5f89dce694121e760cefa78554e56f8135e4bc2b88ab92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 42c6d1c86f54ad3e6c95ac72d8d1580a9da8e5817c9c506f0eacd8af8c019cab
MD5 0d372b4bff6a040bd3746f48b420081f
BLAKE2b-256 d66400a9530f8d7d4781ed24ea7ceca9948645d3d6a6d9b2d5c407550b6e50fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ceb8ad38b5b197b0f237d5cf875fe05ef2d5f5f0c10d81f73cd639799fc8918b
MD5 83f447d47e53fdb16127d07808f9077e
BLAKE2b-256 0c0008da582d52e4a36ab358a6a669f7fd76c0a3c14ec4e8c06ef5287e5c4f33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9b628e46db757ddd62ba2464957a9e6446cca176b9368054413179a6372af5b8
MD5 984dcf3ed71f4948090f8570b3c7e7df
BLAKE2b-256 1a863b659b7d86b0a43efe2a5cc6661f486b8e96d9613dab409f5c65f1b5c84f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c140a3088ffd5144dfb03ec3a8dee7c414659bbd52e1f361fa91c6698d19dbef
MD5 2072bb37373532eb8f157412135e8d1f
BLAKE2b-256 7c2e77e58799642f941217e10a30567ac352cd53f6440370e2e488d56a20b572

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