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


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.1.tar.gz (480.3 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

attoworld-2026.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14Windows x86-64

attoworld-2026.1.1-cp314-cp314-win32.whl (821.7 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

attoworld-2026.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

attoworld-2026.1.1-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.1-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.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

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

File metadata

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

File hashes

Hashes for attoworld-2026.1.1.tar.gz
Algorithm Hash digest
SHA256 a27dc2a1bec9fbae9bff1136e8182db1e4795c3daae2802516c8e57f06d8c919
MD5 5069467761c6fcbae8347e19ecdff69d
BLAKE2b-256 1f33ad0abf7c9da98739cfc0059175f5930a545bd797cf57ba7a1c85b264d9d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a299d86e9b9cfd71d1a441ec0c5abc53524dee03117185df9387acfd67069730
MD5 c64a3fad5ad430e32b1b570ea6d1447a
BLAKE2b-256 c0f5aec97e46a46a2848dc91c77800220b0361050f11809d0dd04881649065bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bd97cfcee29df09ce6d0cc9d81c1cc617dd5b1d107f2502a874017a19db6984a
MD5 1984ed590583a90a604a649ace967ba7
BLAKE2b-256 39e3568fd99a7074020474539ba31403d97f787d9125fafb904917badcbd38d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f0ca4041ecee7062b97a8b8e211a50a7b91db5560e43c9db3fd446babc787bb8
MD5 99a88d3176d9a39ac7597e57948b0f85
BLAKE2b-256 575a203a52cdafad3068ffc0ecdb8e010f544e267b574ff123a1404d69a9b446

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6307a1b5495ed28fb68ff8ae9084d7071df4c773a293970b8d6ff12d41503be8
MD5 c8ee3dba1d2f00a0e481b9238efead03
BLAKE2b-256 d8580da7cc86919c525036b20d23c937612ce9eb5c115d2cfebda8d5f18ae0f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 098f9d063552052dd06cf68b67be58ad55e67e249b33975f4ecb4b5d4f9c6ef6
MD5 b505679acd3bb104b4693418e379799f
BLAKE2b-256 b18f83eafd463d4d44794d7961cfb815b88fcbcc86cd403a5003b57245c85ca7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d42171aa21cd0a329d327a9b3b18a565a650f54a78d1424a726e74c9ce9bde9e
MD5 f416f6dcf57730c0c9fed4f9b21b3eba
BLAKE2b-256 706550a82d42aab7fdb83bb1b63288517bff97e9a08fa206d61a7abcf6ac34a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e0dbc525c13a3e7ac179bc8212aeed00b7120de2ce4dae838e99f58691c02f01
MD5 2c0cb9d87d84d8fa501f886908e06ba4
BLAKE2b-256 d7df5a0a1d5a725b61a4040b169181f7c2cd50e0d02af4c74479b46e64bdde37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6432d9f387dd95f6e0cf7ac8285cec20d055f45ed3c29ee7fb2f923c7f85bed7
MD5 580138e48706a7f5fa28c57cef4efa39
BLAKE2b-256 59e5bcfdc766b5d08ba02937eafde76dbd591df2c66806b00a1daf8d651f4244

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c71981e123ad20f5482d09ac6d9cfef74a84c1e0f0a4f23c17cab9187c236073
MD5 507ce7a1d956ea640ae3250fbb16404f
BLAKE2b-256 de7f9b6b5090e01decc6608ea78c1a53dc91d010253a6ac99d709b812f8091e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 24d07b0bc8b1de5029f141fff36e1155d2cb1144bd240e6fcc0ce08b8a32ce08
MD5 ee6d44f367b0c61e140071c3ba4a3665
BLAKE2b-256 4c2d8bf031a24cc108a59510f444ab19d4b4a77c18c9e01441a454e22e912f8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4f56017ee5c718645559302c45b84bf1e5d2cf8e1aea537b03985987d82357dd
MD5 7f84456a672cd03eb9eb646fa03fc7ad
BLAKE2b-256 8f7054ba593821670d2d764281e8b817367eeeaa3b8b1501393f2c1b9aecd51e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 02c36fb63e0dd52f7bb9014c2085e4dd756f850c70e8d1f1fb825f1e78ce2289
MD5 4eb95443f59eab4cbf86d640bf134b54
BLAKE2b-256 b691eb50ce684c7dcb8b15211e5fa822abaeda7bbecdcf799a82525132fdd5e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6a309c7bc7b1205387335e3c174aa49d60ca1b6945ec3fe9d105619e53b57316
MD5 889eec8d3535a2030f24a06a27b0120f
BLAKE2b-256 ea939391c68d18af1de51b0cbd5afe26339db1fcd2420649a2242c274b85ccd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eff667db166094590eb929a4a1837df5b162f81a56ef97afc16b2dcad353e21b
MD5 f17f4cf396a6ec3559bd3e5e01a774b6
BLAKE2b-256 3199728c1b1782f80cfa45ae24ac28b2692cdcf4e60fd121340cc54f215423a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1935e1b902e0805425db921622e7e1b73e88dd04d5b4bb8837806058ecd65124
MD5 839c4ba7b9d505f19adb311f67b6638f
BLAKE2b-256 04c77136b7e9b7fcad8910daebd8cda1e9e885276a90a503bf4924a9d59dbf9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 adc2b8b21b22f06e017641e87387c793e896d485e138485eaccc3925381c42e2
MD5 cec70c54db99e69f128d691983816ac2
BLAKE2b-256 86935df208a60cb0c9657469dd033cbe7bcbcc75f252b571dc0c36d1d619c705

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1ec6700e6e0311a678c02d4c785c5621c7937b2d88bb4e663bfaa1994c847870
MD5 59cae3fe66ef47a05544a8e88624e798
BLAKE2b-256 70c9717e169e615e754419950104a5f7e12099a369bf1efd56e7234330affa99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6698d65e4e8a66d13ab97ee367841bdb8cddcf2eaf975ff84d7fddae5be33924
MD5 64ae51814de3796430fca2a0650fbc2b
BLAKE2b-256 e8012494c6e90cce8d63c57db3434416ab1180f68cb2fa398d5bb924cbb6942b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5db69b04cc328cbb96f6674bcb45b851378429ee02cc5fb4e1602f4fa39c1195
MD5 e14580a566849a845a0df7026b8ddb1b
BLAKE2b-256 da8da56d10b3e885c93a75aad4d42c094117645d3893ff60493dbd3d5acb5159

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ca5e5a4699fe8f52de20c28676dc653a166ff55169440e569f646f7a63ce540e
MD5 a4d21dc3f9166551c48b5a5be27f2571
BLAKE2b-256 081659919bf8a2974a5b8ca4dd9b45f05b2ae0e0ebca1930d74c26b599d5e05e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b463e7ec15d2fc17dae3e97411399fdfcdc4be913f27bc986e39e3b7b871cd62
MD5 955338948fed5065363b0c45ec8780e0
BLAKE2b-256 056c25f0dc01581fc30e1d97cf3842acd1eb192ad43df27ef8955412932d48a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a0608ca71f08bc1885deb1637f0d5a6bd55bfed391c5352a8213ebac257349d8
MD5 140735230801fda20b7b5533fd388fd0
BLAKE2b-256 e6e41a73e5e9a8cdeaac504feb61fd07d262a13c111eac91c2d85038dde915cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1f6a6c95f6b092f349ce72112a6c9b347140cb96876479b2d6d51f50b1c58ba9
MD5 19a4f64009e11a5151c824e0e2e0923e
BLAKE2b-256 faaeec5a123d9c4e56361f19f4babaf4ca213463a3e01bbab49e73c47e627748

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 abc48f3d40f0cd413e6312c50edb7ee5aa3ff3f6ccb7a597c4d1ce11b16adb75
MD5 3da9586193b122fb65214106fbf3ca78
BLAKE2b-256 67d41814686dbc6c845d586c1b42dc8fcbd9189c756514392cf3115dab92a6e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 619a10720bc4257ecb7fca4cf8d9fe3ae2f8792deadbf0fa4371033044d95890
MD5 9e81ad4a7dd6ffff79cfa84a61c6f042
BLAKE2b-256 7a7cddc1ed66eb9daf32a00ee687722e086451369f05cfd55052fbb02916b46c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a356bbeaed0d4ff6da0510761f9d45409cc8cbf33835bb13f9eed65cd038b44
MD5 5f76f14e9c28b1986649ce2b3fe6b3d7
BLAKE2b-256 474227f7c317b754f69acc5e415dcae3f99d0c4bf1fc683da91ffe8755c1afb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 04210293533a2a667a4d117b9057e0b76aac505d91a46338b0151f23ca0972d9
MD5 7ce24efad186ce823462f563cc0d3ff6
BLAKE2b-256 21beeb6c900e37b7d329edb6807c281dfe900f0261ab7c2ba43cf9f5a95e6e88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c9f5181e686a590ce4ecf6d89cb8aeeb145b879fc14a036858e392f8e356752e
MD5 6fae927e3b0e2bd4543af77fc50c0b3e
BLAKE2b-256 4c74ee5b06e80c1086a76aee39ddc941386ea095fac6e32b65e31544a71d6740

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 892f81a0a21a2fec7e8ab072730fe6206fbe293820c8fcf460fb77b8f0a31853
MD5 78d308816e977f83aa0dee0c316d799d
BLAKE2b-256 eed2628e1f7bf47bb2b3acce24a477fa098b68d1f9aaa714a714215c6640cfb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd1d9389f4a5f64f6e5983f285c1a4298c8f2febd815dcf36b19748b28ff0bd4
MD5 49feda2ea4639b152fab46ac5fd99192
BLAKE2b-256 aa7bcb04c286a3b93a9d81dcc4c7d29e0561e4ce8809c6da87b6873b44c40255

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e4def9c349d36f7286f41831c43495bc994dad1506e134f1c9567e474008f36a
MD5 60a0a964a0e1ce985154e8cc5172ac4a
BLAKE2b-256 62428e1c4cea3a93e9661a1ad729fc88a1480bf34825f96114764649ab902769

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 131ddc76985214983f624860192e602452a3e008760ab8b46f22e451fe1a8865
MD5 771d4ec722d8d9da7d3d7e51f6f68f36
BLAKE2b-256 e31b4e3d07dc1a4a242d429410ce156013fac193f4dcc525071fa4b94424913f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 baba81076f0b1d6463193963b12855ff1c8d76917062f2e2cc549da76596c59d
MD5 57fd8c690571b195a5298aca6501101b
BLAKE2b-256 d2dbafcd51ae0c954d87814c8b289e17f54399b8cf54af65bdb1d7173d7c8279

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26b8f4d7e01fcd0543b31b58c8f541e074d03822a38b0246d0839776dbefde78
MD5 583d11bb1788a49c6010b75cd4b3e4e1
BLAKE2b-256 1a0225cda22f651f5d5afd2662822a1f3d1df2cd00fcdd8a453fa7a2efed7393

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bc10b692e036b06b539b074f0cfd5e308cc6e2d9caee7597cca6ce0f2683784f
MD5 510a857803a016ffaecbd279071110a1
BLAKE2b-256 96c2bad1d31db65f3f64718f4798af36d2a98a07a4f4c63279b1c36257424547

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 37d93a8fb5ce6feb05d136f31aabf1aaea9b89c1e79361a86525f5e595be321f
MD5 d88cce20e84673efb2afb715a7fe563b
BLAKE2b-256 ac20fe15528abe33b6141d14778e9d29f5e034bf2e00afb0295f79de03ee7493

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 431b6a374062b0b7d2fc5a2677b20bf20f4432e8f3dbf2a25eb341d8e08706e6
MD5 09654b02391c5dca014b8dfe198228ff
BLAKE2b-256 740316b53a71ab8b594ebb33abc80919efb85c1140fab2155eb25a95d45b3b6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cb5da1e8bfedc663f51f0c61ee80aeb679acd73fd9b58f0f723ad89ad145cc6c
MD5 f1c3450867c3e0347df8139b9ef0502d
BLAKE2b-256 b311ffc7ab49af676b5225ce865d9d792e756e560c09dd608e576ffea4072ef7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7b51f295389b6e0c2e1aa20f23ab61dbf26efd5c134712f124ea033146b1e989
MD5 fc77b53c710e47403ee9cb088d54a16e
BLAKE2b-256 1c85095191cece664caefac8ec788c874e8eff898f2c39d9c52d6f1756f52dcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0312d26439e85b1cb4baa1ecaf24211937a1d1a4472b0d3fd91544df3b7310cd
MD5 0be3cb4080abba784e32909235e9b363
BLAKE2b-256 f34b067cb15664e3570a09f4d7fe339bf668d75878e4d111eadd557ff9f24cb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8fb6bf2a41ea88b80ac5a8db7f599689f4c42be998f51d96f896e3a7f9906d1
MD5 6510605caf85432ed8c5b50fadf31a56
BLAKE2b-256 36b8e7d6d384ef4b438d80eafa896ccd96e6410ae6cbac787245e41e0779e91d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1afc79db7ef6d61b6b24fbe625808a064662891b897d52a1e768b36aa6ce735b
MD5 29f8ecf17cb2bcac9f9855d1e103177a
BLAKE2b-256 4e2c50f316139a8f1ea5b12d34196ef1e083ac14c8fc5c832039b644b875806c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b13f5531fdce5691ecfbf99f7710d00d24343037ce40623da107bb084746da53
MD5 44b7c318efbb75458b89b1de6986bf79
BLAKE2b-256 f2a0fd4a33d7332fbfa0a4425cb5b41435d2d6aed8d403913eb8315f00b183bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1574fd77543b65312469a7290ae9bc167632350e74498eb312fee12592b70553
MD5 fcb9508b2a22465b8e4d8b89a774d627
BLAKE2b-256 881d536b1daed6ea9c32cf16c9aa69c3cc2097de1b96dbccc164e3b93175e396

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ea443f4aa70297745d59ad2e72f577628456873f9fcc38a8295355df09c8792b
MD5 c002f59d03949e61b2bf3d4106ddb0aa
BLAKE2b-256 212379a892106ed618e8c6243c684078b6382c63f761a3bfbcf80b248377d2c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c7c554b7d954c7305d9969fe579f767e611ed9b38284f768389b8dca9ca14cd6
MD5 895e04391bc37e19fcd6a39924d47090
BLAKE2b-256 0494c2b0d547d737a57cb46dc33c627b1916f54fb5df19cb71ba067a3ecd42f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 121a2950adc79fa712153d25246ca5f9a25b97182350c8e82254cb3aac5f19b8
MD5 c58bf195029bbc655f94a0d07ca4c07f
BLAKE2b-256 25494c17dd00ad22aa06dd791f4247aeeb84981fece0ecc81857e095963d80eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5e20c1cbca3c979bd81a45335b2bf997840ebef58b7b9b5bd767da1b9135f72f
MD5 168c274a81372793027d4aabea0d5bee
BLAKE2b-256 77c927694385a0d86716bea975df1897d2cef7ba2d9dcdf98d4af730309bbbaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5c73b66763bc7adcfcd0a8cf4384837ddf14757ca82181908e168b8eb62b2d2c
MD5 a1a53c5c36484d440aed7bbd6e063929
BLAKE2b-256 e792a659697b1925f77992292da0a0a6f43bd0cfadc26b150e39b28f110af4e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f81441db582ca1adfab607aa711156d783a46db02e7f3b58c9db231e0f7c74a6
MD5 21ee0eebe50408d0ce2a9af7a0632ce7
BLAKE2b-256 2d2202fbe68e0f3d6a726bc6a80a18aa750d43c33dbb6cde06a2f7f30db008c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5a1ebf4b772c16f23a91ac43229def3a4cece0353e06c1907ef38cc3152e3e1f
MD5 d22c8c0ed57878d257207a494c178320
BLAKE2b-256 81a1eb4f632279d84fcfbf3eeb50d1c152904e1eaffa70cd1a0251e221c8cb37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f22bc1ea14e98e8b7302acb3a92e1421fda794888b39dc274ceecea5cca7ca02
MD5 494a8c1c637eb10b94f1b0232c490f7e
BLAKE2b-256 24defd81f001ed52a17f77a215f8f39d905b75155764ed0caceb2402f85b3cba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6da681c9305ace13c6331ba9869e0227d9faf45e7b34773fccdc7292bda6995f
MD5 e09645e74e99b062f2230183b37b8aab
BLAKE2b-256 a2787b95ac014798a7cb6d22e710c65c1f58abb5bb503b8c9540a7b3fed442d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f7485df6bc8840fef690e4294880cd8ce770a32b9e7953a4d347ad9bb99b295e
MD5 bb3c2c05256390f7f69cbc968bfbee2d
BLAKE2b-256 315c7e0937ff04186d2c8a259039b78c0d5e6c7ad4a962fb64a878c66222d15b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b323fcae2534c5350b461b03d618d46b765fdf338181a443c8fb46b1832ec666
MD5 589f07bae64957220497bfa281e782b0
BLAKE2b-256 d042a7e363dea6ccc1c5a0196544bcdd744be00bdab64488eaff4b89d19a06b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fbc8fa3508d388d7ddcdadc4383d66766ac33e1ff7985b099b95e51f44dbfe11
MD5 9172a808eb6104f6284205c41841b187
BLAKE2b-256 091ae6a251245cbf22ecf9c9009a59bb0975d790c6603c570d966c849bbc1a1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cd37a79e39c4028e19ad0fb05bef5d006d8fb608b50cddc5998b8a8c8ed7d3a6
MD5 f1077376e2efab554c01d700a6eeebb8
BLAKE2b-256 a1e0f880cdc00bf22cfcf132f782684b3f1ce5f3f2f7e25dc2ab12fd57a33e33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ba63bf0f466a361b02be636390cd57724e03fdd54eab3bab8309912470d9491c
MD5 129d078d051bfa389aaa600fe1761df6
BLAKE2b-256 c7dfb89b99d79267d927ff4809678fbd9d9b099f3100debaeed5d58aec16297a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ca7a4e0ae3f6dd272a8411214392fdbd80937a663746be09923f5ff59897d68b
MD5 45eba12ca9af8517732338f4dac5b017
BLAKE2b-256 d42e37424c629b254e1ad7d764f1db03f5745ef2cc8cddfc8b690011581fc19b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 006ef1948d5be90c8254994983445bc13f0071570461ca3b0c4975b1f36b8f59
MD5 beb2083064b8fc15d9440c0145e1257d
BLAKE2b-256 fc6a28953710023919bd712a66415542d6a5a074c83e3cbb71afb374a3a23507

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 063b18e32cd716db40c41f063e0c66979de4dc5f1471abaeb3742dce769539a5
MD5 8b8fa2deac91751bdab96862c60585e3
BLAKE2b-256 4ac3aa35c98adae7031a16ccf4b3346caf2054d37f5a5806e89f605bd91aeb03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2f032fc383daf2f5124e0efe01969b276c41b704fbacb6e57210706695e3132
MD5 3b2d486445751a7983ec7234f8648b3b
BLAKE2b-256 75cd4a4c1b5221d2da05b4f651631a477d9deb5fc3c3ed4af0bbea37eab603f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 04343254c898336b33eed7f59dc678def922fe8c43397dc794b7b57314f7a100
MD5 b65c21dc8a441a9177305e865cff72fa
BLAKE2b-256 cf25c5c593ab7aeeceb50011e092a8887d25e71fdf5fa373ada589ac9321f849

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 096ce464ba8602121c3e4fc97d37dd4b1c146a18f84a53837d9c5b176631e977
MD5 f82e806612bbbb6bb15e7548a6e1aff8
BLAKE2b-256 3fa50b054f2f7cec66f530f9b57e16368514d4ab1d05e2b5b7614e4f8db5a906

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 54f28697c655dc9f6e3b692eea6464bbe2e7ebb1df4d6b040e29682c410d65c2
MD5 60a11ce2a21577cf2dc78f44d1942bf0
BLAKE2b-256 6f1e890c9bbed6945979f310874b1bdcc917c68fbb9e71f3e742f1ded4ad3e88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4c1d5d28301c5fb79286dc9f3cf9c97140028f9d382fea49ef02fbea9e448226
MD5 bb34bfd4693bfbcb6745078f05a81e77
BLAKE2b-256 a29a03843b14e7b546ceffb202df93700d529e39987b1929e7cb969f642a2dae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d3220cb3c9f3fa34843f22cf8e3f3eef261b65514b0c11edf9de259c904776f7
MD5 60d1d7d54cc4149f130176f31853ea7d
BLAKE2b-256 32794612e1c723edda01c5b36a11938f750628a4bad854ae47e2e1f9bb6a5927

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 efa3058e4090de96e055296f5fb6d4796050278612a58c295d9fd2d29a7300dc
MD5 42ac68f1ac60af4c24c56b2ffa034daa
BLAKE2b-256 1c8a091c176feb6051b9dc850e4817923fe463aa40ce81bba761fffecb612e2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9606551f11c7f24bb9d23265fdb2683a5cd22d3729f1fc67c284a21bdfbd4d59
MD5 1e50c7c18d847897e7a44982e3ed87e3
BLAKE2b-256 4955f625e0609986a08235feed2cec3075553db7d1cb87e873efe73f7018f799

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1d87cf9a6547eca0f96307291b137f93181731f903d9456ee11a3edf4fc63cf6
MD5 5e7592d260e3ad1904642015db562f88
BLAKE2b-256 313262cf786e70befca50aa6b2446ed6753bf598e2ff341ad70ec2d4b4d945f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4301c79598bac545e6dd830f0ea9ab346ede34a5a047e58c799c06d66eee9b85
MD5 f83d8086e6657ba97d5c166beddc6f99
BLAKE2b-256 72c46a5fb598cba4c9fd61d9d7aa9ac7e5bf042fad9e8b39a559cab1c9b3f839

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d26cae0627a99fdb1197d3f116a9917b7947c4da77c2af20df6a880c071c37ef
MD5 d1e65b52ce345d97c4cd0504a922ed29
BLAKE2b-256 17f98957a14cf8f365bd2c83fff3c4a3486aabe6cb798f47d1745b3a7c98a369

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 903f8c94dd905002928c340417a43e6a3618b0616e34ecdbe0438263ed83477c
MD5 1c136f45fe83713d5866730943f7a2a4
BLAKE2b-256 e7ad0436d5f7f91d1c9c45a91758ecb5a9d71b4bcbc77cc54067799c78a04e9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e1d5bbc27ac2c82b85f579377dfcb9f5375ddef186560f920fa5ce725816ea4
MD5 dc4f753396f33ea1a41891da08f0f43a
BLAKE2b-256 ea6f0c161625e726f4fe01b8e12e7e63ecb6e5d8b962ec66c0d64f2a5db513c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 38839c05349d159f3c70b0c6dbfb8f877ecf143439d4125165f67224a8e40917
MD5 dbf035b52421092291b09e25a0c2f3fc
BLAKE2b-256 c4779a8eddaa2d0e6d5ab4619cdfa45481774976dd6131ef39223c3c8584697e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fa5ed049f345bef73279b7eeed4c8482007aaf593f2f40698f639300debda763
MD5 663c36ec6991218e0e30c479f1655923
BLAKE2b-256 11d460b2b086e19256b4d96c53d80ce544f4fb7311c2f00d6f3cf878eccbce08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 171c684517e053a15581ccfb531bc53f0a18fda18c1b504487371bb266d4d366
MD5 abf223b0c5be9d28d1ce37693b873bfc
BLAKE2b-256 b7bdf39cd308382403edc9001e0471876b9ca85224a20f15496c4f909c8dbe88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 49fc6dfdd1139e4ff62bb431154e821263f5bf02ddb6d89b5c5d3b63ed4625fd
MD5 a843fc5050bdd9f5bccbb4664d73e388
BLAKE2b-256 9b88031e059b51cb310d2d9a183300a1e0ac26ab8cb887a9df9ed1e9d41bb843

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 005d9498dff3d3ff3ca7751b838dabc13ccd483fe0b2e7a933f7b2d060684655
MD5 2544730d469578d150b79be88f8534ba
BLAKE2b-256 895efab278cac7ac70d05fe1ad942686a570ea8fc31e2d6cfc3efe0e31c6a12d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e34c5b110f690a16e22bb1b2f8d2be09d84e780fe65c5ddb667026c6c6a1efc
MD5 04cb97f6ef3dd9e5cd8cb3970e92b53b
BLAKE2b-256 a3927c685fac633db553a1b1899d32e6d4a4ce51b43a9e40169e8367569e36e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c835b5737bd0fde4107d3b1f0daf8b989b9598ece21a85e71a09039944a3bfb3
MD5 23ff5fc4766aeeafa1840f22bf5b585f
BLAKE2b-256 f9e8d5f40f5daddd3cdd971eba3548a1e950e104e9b5c8bdceeebc72581b3d65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d1f27a1eb928cfa34d8e8b7bf003b8324818e2dff55e0e229838988a118345dd
MD5 e78a61c021f8c0355392640cba3a832f
BLAKE2b-256 f912e817782ca2499ecc626d156a8b4c6dfdb8311fa1fd9a76f3b112dc2ccd4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f5328f4cedcf02e91b098f0a9bfee52f6418926e020bdb3e8c1fb23df032f681
MD5 869ee905906f89babd5330c306ea6877
BLAKE2b-256 400eff5c2a7dd2e3f36470bd499f32e2d2165b86dd16fd40b076951f2954841b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f08884e74f5be1c35c8cf47093f670c1c2bac916c000635db84c1b51c098adef
MD5 f75ef45691dbd89ccdc57c48fa413d44
BLAKE2b-256 78e6b306687542c269defc26bb0eb5663c14ed62ccbc446820565d0da2c1155e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6350c8bdbcb066dbf6ccfc11bface04acef353fb23d88bb5dbb6d40c1136634f
MD5 6727c293c9afba5dbc1e5d320643ceed
BLAKE2b-256 6fdb83f63bc431510c31cd19735881049b48d2a48d393587c89ba898d33c5573

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b06561dc56475c9b3f81c837b23b1c0c4854890ab18d1fbb2f87ff77e3783b9a
MD5 ad493b0e63d510cc5d8d602dc87dcc12
BLAKE2b-256 4911b6fcd8f81e6c56f517b392d8cf687f14f0763af699d580fef177706f900e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 74a6efb1fa188b6a19b64175f28e5b74a37f633b09c77d8ec34388788e863305
MD5 0381d90f6f1a8f8d58cf6481dc7e011b
BLAKE2b-256 1db2625e24f349e2539cf1e069979cb5db73bec7bba6a7daaadb0e5c57791746

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d8d1d18bb97d71fbe9ae22c0e157fdbfc3bdd3f0080c18ef7c304cbc10e7923
MD5 68b2e84fcb52b4358a8e2fefe32df93f
BLAKE2b-256 1c947727fc1f2a7e3150d3050686dd54da3395c13dca72c9ba91a43deb65612e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b4a50890703819227c800ca1558f92ada5684cf52dc84963b412a6115e687c03
MD5 a173c82ae0f31701605692287e1fbc1a
BLAKE2b-256 07945d23bdd049545d3fbae1334aa766b6caae3d73d29dcf04a97a39927c6347

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5f1d8af2999525f575f2c12234abf46e058b06f3ae63aa76d855fcb886557ee1
MD5 25e07f8df4395e20299e368aa4d4704a
BLAKE2b-256 f7a72a817bdf3314cea1f5551a30a47fa6ba786a1481203f8a8d7f5f29bbca70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 563a18c7cb02f2f58e680138071f48e8241b84afc6a51b033b2f26d1a2860284
MD5 3ce02c135ddcf632df316324724738f8
BLAKE2b-256 563210620f51a0328e7543df629efee7251a79c12a3cfbed20c1245d8fce6dbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eff7224a11cc6104fdcde8b2f92a59f66ddd194169b6385a972b81c98c67e4ea
MD5 0086868381907b59b1d541db2c47b083
BLAKE2b-256 3a29bcf253e2d61ef3984f9d1aa1b81eb36a6a429569726781f114575afe6417

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 19b52af5f627ff758f852785bdb3a2a23cdaf2837a3d6b43660b43c6f14a9d55
MD5 4e6d1a2af31cb4e12bab8a375429e698
BLAKE2b-256 fe43fad2a408b646a9682947460bb5cd18c71fc6241566c648a35444eaba7cea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09f32ddec3ee36183fe613944b66b5d84fad0a359046d852dae26f53ffde5aee
MD5 1d124acee04fac7e9ff962bd906a9e1e
BLAKE2b-256 dcf56dbbc82df0e8be5ae8217f79e7da6e3a3286c09061ec5ebaa3bfa7c5e2f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 55b9373591f2c8d914cdd50a7142845c279919dd82519cb7900103bc15956a0c
MD5 8484b57ce0b040d41fcc04791913e389
BLAKE2b-256 b0d4adce30a199700e209ec41427b97e57efa487d4efc1aa9dd24c1f9001a2f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 71ab9077c9b84c201be425734fa0db52acab6cfa8dbc4b3f2ca199f52094e4e8
MD5 7b6c4cde0a1cdb6bb7b8627d7330db6c
BLAKE2b-256 55a4d6cb937b3b3ec86dbe4907f9b692b8563291a78a09edb593fba7235422dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f8ac93e57aecac5e885fc090227772cc5b4fc05dba0ee936fa80668c654a297c
MD5 c94745bda51cb157c7f3da10a0139459
BLAKE2b-256 647d45f5cf4cb2a081274b9fee648cd55bc42f381167ed73a8f5a5a5ac20d90a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 72c7f3523465dd9f9c4db46b87fc351e0e6da0079368709d697b64d197f71a16
MD5 50eb4c0030e491e217c77eec69971a8e
BLAKE2b-256 2f03e87a0745667b65682fc8cba907fe2a1cb80a90ca92126258c63bf2a704bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 12b4c4287633610639d7827c0769c81f16b4ea039af8e45e5c983faa7126f585
MD5 a7e010e4ad538d84a38cd4bb9d44e1bb
BLAKE2b-256 c3a9c83b750872c65bebc64e25156a3ade1f190c55ed5e0cb2c96736c100ba64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d665e908378756f3b30c16c6e305b7e84f1a776c6c24d1fb32a54d996c574b80
MD5 f77246c416dc6cbfbc59b60482abcf9d
BLAKE2b-256 52f96468ab378dccc62f274f02f352205faf676c0b642d9e40898cca3d299984

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 58028b995765e621115481e5a8bc54c897f3a1438460a727feede3c4d018f5c7
MD5 aacd8e71c171805fede65fa9ab3e48b7
BLAKE2b-256 e7df430476b870165f753f5938e6d4e70a07000946c2ef965e2c5665000a9dc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 013055d3e1da97c968fed9c19449c2fc8438343afaf2d2ab244f8b01d3c58511
MD5 4cada37ab41caf23b34a9c950e7454e1
BLAKE2b-256 b3ec4a1e80321ecb6443440509068817525776d50ec479795edae25cdf794653

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 42aefa86471a812e1b4f0f06c4849c6885311c7924b3bfcc029249b26a744693
MD5 710c8c6621abc366678ce89791333e0f
BLAKE2b-256 70982c2003b0023c27300e1cda0f839752f75d6c3689043e0207f3c5ea24bd3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8a76811f9f47fa9995fa466becd43ab1b471d346fc81ca7c886bf17fe9529f8b
MD5 fd3bac0b648f71ce3e4a755459d7f214
BLAKE2b-256 d899c6dab0a13b57b04463394e49c8d5ad5026e0bb0ad22e26a1c3d42bba4e52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e686d518548ae15073331cda0fb67b3d87ea9fb97beb1da5f53bf889fc6e6d22
MD5 3b26ac57e8ad567896817b4e36c510df
BLAKE2b-256 4aab648d86660f102a2223ab23a54647d76c21f6d6aff23d5ae6befb1b83987c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c3cacde5c31eff338c1042460cd94b232a24482388cbd0447ba3d0217cde232
MD5 08497bae1be41572707107c1085ddbfe
BLAKE2b-256 b34204bf5bfff34a1c25aba2f52217f1ec3e0c4126d909bde4a713c6a6641927

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d5683f08766b3484e51a1f7cfb7d27c52a18ad9ea87f59aa025429b021f8a1bb
MD5 125366a920c9d60ad333a1d80da4bdce
BLAKE2b-256 ceaaf9a9da7c4bfe57e95254b13f1c4d218aac0797146e5097d2870b2631b7e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 011294f36af9eb0a3896f023e3ba85d87a3092b9b20c8ebbb1ae5d06563d98e2
MD5 71d6c227e69137261e78664936674142
BLAKE2b-256 f32ec36b29fb26a70db3ba95e60553ca2fdf31169c9399c394580e4253abcfd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 56c601bb58af5555beb357a173999f4a99ceba2c64cda75969ce8222910419d0
MD5 f1d8e7fdac6379b50d669b43fff50b03
BLAKE2b-256 a601c44f2a04623a1755a110bd09f97dea76e15e2fca25c65162ffd86f581e6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 df427e44b95ed15665b20643f6ef498fcf5cd6a08e710b5839c3aa0bb77ad927
MD5 6792ecf3e24e9437d66a4147dce770e6
BLAKE2b-256 faf5af3b79f48cdece521c7f4e11357dcd89ae4ae0f6aa4fb93a752539a211bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 914f269ffcbd7f8bf2e39b710c19539ea596a458341dfadb310aa889aac5ab81
MD5 d73ccbc7255ba96cd36f66445743688e
BLAKE2b-256 570c14d227d77e84d767cdb60a42575d375eb41a25a349eefaf21580f651f901

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c3b486ee0134e6a3c473dc2143ac5cb012da1a58444ea772497c0419eb31eda6
MD5 e7e041d194ab0769524b17bf252a80d6
BLAKE2b-256 b70ec513edff0fd0754846dfd9f0781ada5728d6c36e4f1192418d017270343e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 658f367d21a3e7322e183d5ed8d975bfd97ae075d38a3c55fbff0958f08f6303
MD5 0920a64a0ea275560521395e1104f36d
BLAKE2b-256 24c52af0d3a3c1b146317d77307759e4b13cee492b9405b320227ebc8d84d82e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cf84e6ada81d87af9eac68d7ffcece6837eeccc65911d5c00d95c5e7ad16220a
MD5 0630b1b27f1f2ffe845eb0cc36a7c50f
BLAKE2b-256 78766f9df1398a5a8019e32ecec3fdd5bb15c234aaafcc839392ae076a2f2eca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6d9e3b57340589be99fcc89ab71406b9abf51572cfe68034abc833286fe3ed1c
MD5 d233f369a75608e9675573b035fc3cf3
BLAKE2b-256 b2cd6c7b02d29becdd50c05a03308e66ab645973c1b4906c235dc68fa202616b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf80dcc3899d1dedc901e66684383b7d542698ac0e02413aaf7159ac81d6d8db
MD5 8e9dcc8a31eb20985e1c3f2e69aa5986
BLAKE2b-256 76a0dc2bc57a90268b69a63661631b16c48547130cc4b7c2f298ea8316a430dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 513376724cf0a5701cc0bcfaebd99e09ada20f91de584671e53313950a963c06
MD5 1d54951eb0d6f6543f2881c604b4a4f8
BLAKE2b-256 83e2011b2898c49db9a16324377371609f35c8b1b83d81e79dfb10febecd8ea7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 17920e1a29ba8beaf4662889c29a9cab1a88c32e5b7813e6b37773fa7d98bd09
MD5 48c48eadd8c5f45fa07f9c565cb8f279
BLAKE2b-256 573153c42f7bf1fec4ca94d03fe588fecd430f19582bf0f57de304e0b89bd65d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2fc78192fda4b0943b05717fd8882aa66b3852a68c249b828fab3a3cd43de800
MD5 b19134d526ce233f5bf10cad630dd0ad
BLAKE2b-256 da1734d770f124ca2a25c25b88e15ec34ab6e76f59174c8a72d322fc2ac8438e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d1ac22b4cb90fb8fd17747e3947282cd0ae1bea6664898969a8db0d6baaef86d
MD5 cf8a07c623c22e7a7a882e864e532ca7
BLAKE2b-256 164ee404acc441e1aa949f2f9ac511e628866835e45f5694b4ee03568608c529

See more details on using hashes here.

File details

Details for the file attoworld-2026.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 37f99ea7b1ca2d80dfadaa701e45814b5d50630640ef6f20efe20d6c22d2ddb5
MD5 5afb21e43f627ae2a4e7b13535161d03
BLAKE2b-256 4fc496dded84ef0ee428ff26a538a22bbaeb6ee2d535c846900faed7614da5b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d94f7a14f3b4571c67dc854befb36408a408957592b1241f2aff7cf5f20a0c8c
MD5 1c918852a3d824207290b65455df8699
BLAKE2b-256 936895c1cbd9efffb9c2d0e590ffde9776fc4d2086499b7ecbd7123e270193f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8626aec5c12701eebe69be786267994b14cdcbc5f3468d9c7fa694afa25686da
MD5 624f40305450e91a28751b700c3b2d71
BLAKE2b-256 da05346be88f99760f2fced17b029c0e525b255f74c66bed11d3ff00b8dced5e

See more details on using hashes here.

File details

Details for the file attoworld-2026.1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f604e7df7018301a4890f58b758cee35d20c4cc3f2f3e4711e4f75617b8e77e6
MD5 96590073a1e374443938c1f375a6ead4
BLAKE2b-256 900413debde740ea745cb857d9de02db00a7133a40df3cb518813bb0b3934065

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0d5693eb1c1c0ac5aaf721d0464a7a9925c32a428b5e63c043d9f1adfebb89a1
MD5 85fbaa47092240fd6b259e45ceaa26c2
BLAKE2b-256 7a3925c1fbe5c447926e916f20441372a6e9e0c5264c000bc3945a4577c13e6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7b94c63ce2c1db853ee4064433b338da12c776351253a7db460c4327803c5dca
MD5 07e437427302671548163cacbb7aa51b
BLAKE2b-256 2aac4924c98cafe9cd9c0d58a004abe28a01c20da80e73ac18ca6eb53fdcc988

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