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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14Windows x86-64

attoworld-2026.1.2-cp314-cp314-win32.whl (817.4 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

File metadata

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

File hashes

Hashes for attoworld-2026.1.2.tar.gz
Algorithm Hash digest
SHA256 2e614607c6550c9f05763dcc575489f6af82952c6cbccb3880110dde79011643
MD5 07c8536acefd8d0c5301d8e41add0d22
BLAKE2b-256 51391c23c9fb858b6873ecbe63a4d0a7406f02bc5bacb33fdacb2192a27cd050

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d1c31daa0e2eeaa4ac7f528e27d422d87275ac4608904cca8c4c672b77b529d
MD5 39873b18a2a636aed4abf665d10bdea6
BLAKE2b-256 22eb4e7f25b414afef35013f905bb9e04e28b8cbdc0c02cf96be4aa3535af1a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ec6906c471f855cd986497af1f4e615d8b00d56ac7098525ccbb35fb6120af40
MD5 061a9fb2f0c5e0132449a672643d39b8
BLAKE2b-256 5c7882ac48ac7d6b0a7c62cc00dd80f4c74ab157fade3c3e071fdfdb9e2df92d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 519f2e1e29c993ef0ca767f7dd4c09e00355d63fc53b8519b1dc2605bf2b8447
MD5 c52256439c590ec9efddd94321133e46
BLAKE2b-256 c80a02d8772e4c42bc593e4635613a71900b59d74a9918e11bfd426d6451e3ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 726d6ac1db3381689d24c5ca83a15f98a924d3739a4d8f0aa22b84e29ec51748
MD5 263fc69ef4eae68d47e89318c54800af
BLAKE2b-256 f1ef60d521d6f21becac027653b9708feda4ed56716477d309e3fdad0b86747b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed0ec7c9c16e9d91575fa54752f526bb96d2cec155293d862c4939f6168b397d
MD5 323c0ece5a266002f99b94fe7a941692
BLAKE2b-256 095591ecba9096920f3bba199f9c410682992043cd6d0cc565b5e035e398cef6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8b05220762f20604ffc551deb4ddd6ec5aa0868425ad2157b713fbc7e9a066ed
MD5 3dbf1aa25e1d3303cff0cbb313676bec
BLAKE2b-256 f0f2dedec820cb5bc887d10da624a7255d5645c576dc20e9b9c1963a8703c90d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6a19c5e2880da6c7e354f016b3030df1840bc7cbe531b97f24d72b7272ffb02c
MD5 b9fffcd819b18a1b4dbdb7edc7627edb
BLAKE2b-256 7d80ed101384fe66affceb73637f2d8faa6858b09fb71ff7ec0187c3b61b1b00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 df90f3230d26f502c49736489b3c6d43c0247375295e0446e86249cb3ffca013
MD5 cc301e7db13f4d9c43ee0db68396ee63
BLAKE2b-256 dd6f6cad8ebbc398f71b14f9801093f6fadca92c6b0e1768340c45708713d508

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 503b61696f02f52f78e121a4e19ba088ec15cfcc5674ac930987519739fbfb5a
MD5 b3a66cf2e3c1db90919e15a0473777f7
BLAKE2b-256 e678fe7aa22d0140ed1378bd0b338e40e10bc46bb08402d5b14f67dbd6bfc050

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8bed7b77ca7b18da801355a26826c193dde304b4ba3b115ea34266fceeff26dd
MD5 2efa9ecde379207bddf67296a2c0d3f2
BLAKE2b-256 2e21b4063445b5cc9e93c08d74d6675f30806488063e94c01627d96e510653f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5dd6bd529fbbba208cc00f21b4b6ce4945cc823c6bbfcd4abe6f4fe36a9b8c29
MD5 5e33616cb587ada863f6d214d4ca0141
BLAKE2b-256 76e5059d2d7394fa134ffe9c472961c0d9d6cbd3b4ff273ceeb245eda3fc63f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fd8a3f332ccc1c33240e4556fcbd5904fbe872565ad513a30385ceccd62083db
MD5 827dbaacf924591f7400ffa2a04f2920
BLAKE2b-256 6a8a872795eaac5b33ce5e3194e43694a1902d262ce7f32223ecc881975d5d75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 00116e16827cf6528adab53eebaac4e850b897bb99676ca30cb10278f67aab28
MD5 9c07e3c5705b203932805d5b1a15a69c
BLAKE2b-256 d84ad0147fce2b936d649d576167065db26ed6e9b40be8371545146b15c12469

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d5eb6b39013469b20b34f9cfa21b07690970dcdb53ffb3979bce024f57abe1aa
MD5 6400367409545b6bdbbc45c1c3c7fd74
BLAKE2b-256 eb3edca94a0a9fda86d89e18cc8194400d0c2fc0a9d6cde80c4867eba03971a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b14ade7e12b29f42ec7a21257faed77af9f736045bf5c11ab5456d94a4ef645e
MD5 7e96c02a5b783ccce11eaa648301d349
BLAKE2b-256 88c80f3eaf1fee8129448084a359da1a6f2dd3194ad8fcf2246f05ae663bffd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 94c406902aded4f3244022b4376a44fb47728df7340540e65f9644e641b26555
MD5 a6daf3593ccb5b0a8efef388bc590a65
BLAKE2b-256 0c9fd71dd81c024a22cd36ff04d1560bef0edb63cadbe96e60ce71d5a07ffbe4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fa4900c4fe8fe501437f6b099193ae33fc2909bca598b44463b1c8e3e600827d
MD5 9d1297777c119ad1100d52e91a134c6d
BLAKE2b-256 6dfae864e8bc586ec3de0e92cb61a23fd35e2586134f8d2fe8398501561859b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3b9bfef4df7d1d41b445872bae739855bbe0875a576fd5df3bb79223c330fae2
MD5 c12fe84d96b4120ce2b22d28025b1db8
BLAKE2b-256 61165b6bb180c723d2c62f7bbdfc6bad5192df083e13fc95fbcec9169c5da4dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22dc1f63cf534680a3a1f60a875f1964450fc34f4ccd77f491d27655c4aff8e7
MD5 08981f885fc4345c53f1bdeb01e462be
BLAKE2b-256 50730aae432d4592c2729f49347fd532d133b13b8d6599ef56e3d2f8c61432d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 41f93d73239975259bb31269c117a98371bc7383e66faa68dfeeb0d381f40b8c
MD5 056fbf770f74815a6fe62e16efcea845
BLAKE2b-256 fc38f404bc38caca567d2adbbac5be6c4fcdf60d0c820b06127429739c345d72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 71376bfbd2ac90c0b8db8c82043083a817d86469da12043fd6c59c5d589281b9
MD5 6f1e28f5d7fee7b123c028cdb55b0ac0
BLAKE2b-256 74b9a4bd675be7075a0b6eaf4207ee23a3eb31ef61a4bca5b9d6ebbe2ce0f62e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8aac12c5f11d066e9c1638fc4177d1f397154d4e76deb8755eba4effa2069e3c
MD5 be56023635782c8b39e529dcb11e4f36
BLAKE2b-256 5082ee58e4f9f36d17930287a0bc0c964fe1eca86078e9ac166a1447d0be3b54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9c1378dc4e5a8ae3663d64f4c6bde0e088c912e23aefb0f6ee228c9fe9de95a4
MD5 80a54c4557fd395ed2e96b600b6d0d3e
BLAKE2b-256 41f9bb8ed611367caf42222ed98ee701b9e9f934541564d20ff4d154af43dff2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b4ba87dd2aeaa8ae88c0e587830ae1978ce9aa97a7645bc3a92614ee324eead3
MD5 4da9a5b4e87b9d24834dac8d76a65a05
BLAKE2b-256 bb88248dcdeb85b8e88cea283c25f1408c03e876b853794a210bace580db3c0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f59a1e9b1078408c9ef72ed6f040052ecb914c00528431f1e9921724a466f74a
MD5 56efbdfabd09306478f4fb77204e303f
BLAKE2b-256 ec443ea59a21bb21b2c9ac6a063fe70f2679e31c128367a4ab7e7d7c03840251

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 03f13016ba349ecd27ec0322a275fc2e2f5b539df785f50cb2a2d9892a1f5ec1
MD5 01d80c1c0ff762741002b7665ad46e64
BLAKE2b-256 e89b97f1d200c6f90ae974fa22f4070a3f17e8a6c396ad414a8a27c62ca2bd85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 601a73aad8025a0fdf598e4bd28fc5352708a96c2235684fda01a69f4c6241f8
MD5 8cd80f64b3156eb988e20bcc746c4857
BLAKE2b-256 e2977bad823bf00b1eb0e01308a0714c32c1b5ee445cadc2a695c64865d475bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0d3cb3b53311febcfc894d7f74eee6d9b0534a5b0a8e60b306234f090448e51c
MD5 af16a8345f23ab81766ede9f4d2e3b9e
BLAKE2b-256 09e02b86fe56f758fff99340f52700aba3d9cddbb01ac80415cf83a6e8cb677e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c1b434acace4773e7e3c86859de1180ad13162b45249f88110a61bd4a1b8134c
MD5 89a03ba92c3553e1c5d899ff6575570b
BLAKE2b-256 e1c7e01b477634204e69ef00bb291eba75258153ab4bd5f8205e64ee8d3cd39a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c160446e7d6e67f65d67721bc9dcc4cfcaf2f6bc334dcd67bc62109cfbcd94d5
MD5 edc30d5c8b86885713c2fe45f5d0a900
BLAKE2b-256 6389c6563efe7bf2989d7ca66c68f67f0a7bfd3d7cb16d50131838e337bafb72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ac871b1c3a2ffff5a70e6962568e39088ae54fb344b4b16c6b973b03068f7677
MD5 7c11f4bc7ef50bbe5919508d48cca0fd
BLAKE2b-256 f6d6f72c354f1e1d4a1440ba5fd16abc371892f13e197d1d4a14e510087c5326

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 72986b50925c347c45e53fd0f56c6e88f702e278a0e1f38e2ebc1eb9800c2295
MD5 5509fbc92179dac1eb56b37401dac148
BLAKE2b-256 afe422e9873965aa9a5a13d7fe738d9c306b21fe5676930cea90f61d4b5e9000

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bdb0f975fe96186a9615ccc12dde7ae7f7886324d00fb09bff623a7c9b91a651
MD5 3f653a47115a786aaca1cf3650ec5d08
BLAKE2b-256 e77196f01a7ee39be0952dc8f8ccfe8d9582195a8639db51caa8da2d81473f5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9e61d64dc706b4138b2b2e72e5e3d08dc16a275f3be68afac78db2711b92b6b
MD5 b15fe0d3eaba93f031d99dd01d2c9eb1
BLAKE2b-256 595b87fcb83b7b46b31e03df0b45281582b1e9e40fb68b6178667dfaa66ab4ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e6fc7baabd0203d4d2b12bdf5f51f3cfe9d4e7a7d149ce984010b471426206e3
MD5 f4201e36fab74dc46a24464bf5a16132
BLAKE2b-256 055d669035a5abefb13dbce5f6b6599013e8af817b7a243884e7aa58cd221a88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 6a18109e1f7ad68203e81cb386f3d356093ab236dab0364d74fecc87282d6a5a
MD5 40a70576e6280dc263ff5c9bacf72d34
BLAKE2b-256 cbb59009ddc2999c97f042d884321d3c10d9d2282d20243ef2b772a52796f6c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da941b68b82437f862e3aeaf5306cf205308c0779a675462d2d2347668716160
MD5 d1501ae100bbb017c6f960984607dffb
BLAKE2b-256 ac3e8065b08ba5021a9d2d164c4fc72d755c07aed9bdae4392b211b1a74ec11f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2f32a6737fc7c3913af0b5c579dcfbff7783d0d7b0ef003cfbf078f0198c1e33
MD5 b44d52933e4b930bef29c1f1e7af44bf
BLAKE2b-256 4e759b41a2132d6db0759790953259760496dc60b732df222892538394436719

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 72055727f2dfd51165b873ff350658759a65d2b49b282f5d7586e573ee96535d
MD5 ab33d149c52f7b1d46005937d629c670
BLAKE2b-256 360223f2e8b7489869c63caa8c779e54eda0169bdc7a679ac039f13f04e0d851

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e4ae2d3e11b9b5ea9179fefcca143850ee4d1f69664ca41647c6db51a9ddcfc
MD5 c3250df4b1110688ad6258c67be7f5e4
BLAKE2b-256 ef91588e485bc6ed28d0ca8c0cd4a3bba9de2e1f99fa64b57b6283b767ed8134

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03622f58f611b60ff621368c40c47777f76a5f19b7236438c582445cbf2527b1
MD5 739671ff4561ae29e232f25be705ca43
BLAKE2b-256 29250c0fb3160bd5917cb5297e56daf691722261d7337124d46e494fc773db29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 394c81e0da604c8a855494ea45e9a6f1c1b4f1b39bb6a1a96aa134e0840a4bb1
MD5 5eb226efcbf68d6a1b3b5bce64c44fe6
BLAKE2b-256 51283819c7acef0f4f45131c5e7b18aa68d789888fa648e0f015d405ddf09c33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fa6e1ae928cd411aab528da6a679204f2c748a369eccd5577a55b454758a5482
MD5 3cc3eb95f11eb7efa09c150b325e80a9
BLAKE2b-256 28c0de656b26b0c63f68cbc712fff17afd22b424806649282004705b0b646f8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7d98da9228f8a643aed3e17c9a23368b9e95931d5f8cfc07b3893905b55de155
MD5 15af15d86e80370ea15436c37a006bce
BLAKE2b-256 1fbe8650c0cf0befb6e57b0bcb14e002b4991fd8ce6468b92ea29eb5d4837439

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8cccc4685303f01874bafbff90a7cf10777bb56a427659a2f606a912c2013d96
MD5 6130e77c991ab7c115721b194af19bd5
BLAKE2b-256 9565eaa173dda9ad08de236a42eaed1c08dadb83cb917a30030ebb7a4a6c50e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c0c31064c22fb5cf8e3172f98c01544514da1c933f354ec098aa73fe26ec4bf
MD5 989c000b10ff1c48c05554cdf03e353d
BLAKE2b-256 0f0963780a9d2cde4aaf8a84c98ddc79431bc8519a84c1eddb1642d1589b91e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5fbae27c8417236b64de52eaa04c1a669f96582eaa09c1914b7c0e740956dc5
MD5 aade7124d64a5f17d7584f08489b825a
BLAKE2b-256 0edd863e0df78f60e58295a95eebe8d86d82fcb5d80641f722335e1fca81e7c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 07392e3bd9ad3f6e9056b29eacbdef01fd3ce22c23df4b4682ccce55d66d90fc
MD5 7b846da958e6bd2ec9109694e8d56dbd
BLAKE2b-256 8fff30aa0c6c8175606dcea5398bfefdf557dc1d281634d1eb2fe2a84d9fd1ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d3d11d9610d0c3986e614f81645ed4d5994a95555f6521345ae34b25958c3da0
MD5 eaaf159b0d753df14a1d671df84a12f2
BLAKE2b-256 24ab22ab6f5166647a56d682907544e12c8915e3e3ea4fe06de6f39db0912814

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8c874d67f3fa50dfc685bd0876141ec8aca7ffbc2dd39ce1f9caca102760c72d
MD5 d637769c1918bef32f0cb7993b8e05c5
BLAKE2b-256 2e4e1aca5c12461fcd2070040dcf34f989b5c2c43e16f96a3f33b88f46f942d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ed9ec7556569024cafa0698bc6726a173f0b5d0aa1784665512ba6fdd50ab13f
MD5 b5d10af5ba163a74b0ce80b1d12f67ef
BLAKE2b-256 096f4b07be8cf2f67c3bd45a27db293d78c1a825155c7e168f62b63433caf5e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1bd983bd5b7ee4b4f3e7330ad5d384819b1ede9a537e1170417e7c0abac865d7
MD5 5e590c83c2eeb5ee477f727d843f6282
BLAKE2b-256 362958ab71d5a22c81f8fe0db8d87f0f66ce00503d58db51e80bb9c3e2fc6ef4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ed6963b496d0fb047ba81c9a4f7931e134e872ce6129f7df15cb32ba4c5e8c88
MD5 e6affb67a2b22e04ebf4f9b572874f12
BLAKE2b-256 3d233b425f08ad8d972b4c46e455002f772775c3bc3f772e85195c1a939e5a1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bdc02cd575b90ec3d1aa0c2d69848ec8749c8b17d78b47a80b847ec0462cadfb
MD5 306758131fcdfc78a9732613de493115
BLAKE2b-256 0993e60efc729bfb4ca653edf9041ee66e6dbb25b71b9afdac273341227ddaa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a55fcae9df27ff5856963f0788e959bf8a2a88fc41154c62f588e9628076862e
MD5 24369122c598bab257e4c6e7cfbe872e
BLAKE2b-256 f336469f84009fbb633bae427b648b4406d5a282db1010317a34bb85d06424df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6afa4bffbe4e861d9c37fd14de5908bc01ee05439cd057b69e5af1145a5e2465
MD5 b3571588f8464c9fdeb34c8480f839c0
BLAKE2b-256 cb153def75e0650348270965ad4bb40aa2c04f5b16f60ed39d99845c6e9e06db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 646fdb14d4903bf2def1d9f1a34b1078f25a43aaf10057e000c1e1bf75d8cfc0
MD5 564a9fd6cef2e1ea2016a7bae60427c7
BLAKE2b-256 1ba08336c279b64d1ff0086bb140a30102a3ebf1c690beba9bcaeb4360c163bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 59e734629b14fee65dbeae2027ccaf25071025b145465c5b46e041b26eb9ebd6
MD5 9f1b005c3adfe2636c3b5aaffc26a33e
BLAKE2b-256 3ce6dbc6f28dbfe34ad303ea4c966962ee18162cce097ca9c3159cae81d03b2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aafa4e2d0efdd196728ed21d4125a02d484d314a98c7da6ecf708f5c689e2d8f
MD5 3f067d70694ce324ab7e55454827274a
BLAKE2b-256 1c8084f7be540ae63d2d05b777da8d7e4bda2f3988c6c37f847efa14ea1011d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7fabbeb8d0a255a8240195c5b3e67b16b10ad22187d221e428b9f7afd03ea1ba
MD5 abf14a45edb2787d684279366ded3b54
BLAKE2b-256 2721fb395888521363ba8c8a3d971a85b47ae902b69237d3bae511ee301fff3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 20fdaa1d9bfeb139e697da324b986fdbad124506092d2ef90a4fa4f68f75fd2f
MD5 4fcf222d382ccdfed9da85fffd962024
BLAKE2b-256 39f7a551e3ceea7fc08c483b2d00fca2f833738648aecfbcab0bc6c0b26112da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc488c1f65123d3ac170b7e05d7a6ae4000ee0f5ec05d1bb8b6ee8c182b66e4c
MD5 4944ab618c688e340fe7b6fa45f3b30e
BLAKE2b-256 93610f441c8a23f14c0c99c4aa92b991c938b04ecb06bc520d94d155104122a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 08606e9fa9455b9c2865d36da38d0a6edd24137c4ea790514ae7f7472a2c84fd
MD5 500751a9ac301ab46c1ad837ed8c39ac
BLAKE2b-256 a2e18449a1a5e50563f71cd89abcb172231b73fb7660d08ad146102711402da8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0bfe5a55fd442b100da32c4ad66801046bcbe5047bf4773a7426fb923593c97c
MD5 51821958b1b1749321cec1c83106181a
BLAKE2b-256 70ca00694a3bbb0f4ab273e4576e237e7a2af516b16c8836290391a28d0ef6df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f03493df35c72c19fbbc409af4ebb67bbd1e87557d4177425f2341d9d71c1454
MD5 4a8c2b2a243733b7a98e3a1d5e2149ef
BLAKE2b-256 0a68f9ad1fa977dce2d548de42e114e5354b60ff59755fa8ba580698eece4fe1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 004103782c525d4387981b3b0cbf480e1e763d03881fe4f595008321d9f6e8bb
MD5 16f0b82a6039f6ba7da6cc7c35bc0f38
BLAKE2b-256 ab5577e4e43ebf97dcb52f2b18548fb48b042bc0e0c27770b41f70aec6b9b5b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 93095f37b7104bbc20d1005c55716394e4f103b89f47cc35c6ced53e8bb1979a
MD5 6553bb1ea5dd3a5996391f4d69eeef82
BLAKE2b-256 2b464b25406a0b3a08cdef16414434ae8d59b23a281923c2baa755fad06e5f7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0e79fd5cbee107c1b17a80c342d34109a5a6a3548ae6290bd5ae542dcbb3736
MD5 390af741872ad1d2bb16e71d174c44bb
BLAKE2b-256 756348a577208a03973972238ba89f1443c93af498d41f9f94c33efa70300a21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ce9dcec7de0b81502e81dd6bf8007c6c0c1734b595d0495d152ab7bfad698e69
MD5 c9c0d894d7b96c5bf14bfb40fb25bf6d
BLAKE2b-256 3184e110f54ea25837e3d2add094e427cd601f61090eae54c2cba3ad3b7e324f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8d82ddb82abb8c4a82941981b0ea44d662d0d4558e4c82839427a3410160115e
MD5 5305d03bf285a4bddf2310a9dc04b143
BLAKE2b-256 8cf74467cc4c41f592d7e6b1e40c4a2630e1f8d8e8c1a35fefa5d5d058cff6a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 511fdb36a2a821d5277c8ecb44b7183f7ad55344a19afaccfc3606fb214fe0ca
MD5 a52c12053cf4c5fbfafd2e94dd93686f
BLAKE2b-256 14c14e3cd318bbf28188172d8973db65a3850c177600aca6cbd5c9c6f6c1588c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 723502f2258c5c9131cb75a1d9a650651ebd8cccd3b16650e74f6ad54d72d9ff
MD5 5c8331b13c24d86847e1db6db80f3612
BLAKE2b-256 0657c645d37f26de4f89b610871f07fad5e4e8ddc8fb6a68d3e2c05e2712e1a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4bac24b77ec6cc38b137b55fef9168d8a92bcdc182788f544d140c62b1482abb
MD5 04f599f1b599cd92a8fbf671d8ff2532
BLAKE2b-256 ff31dc94844eaa918d42baf28b05135d880b7bd1c82ba216e40140824fe41918

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a2484201bfe713c6aa21aafae18c631159d2ed9aa4a640e39501099b0f0d10ae
MD5 6fcacfe182c7f2a11920954d5d47e862
BLAKE2b-256 e76bdc880bcacabbf1aaf7e7c3149c24619ee397898200ae0b061fbea2c1bca1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97a9e0d6892d51e6488873c1844fd4a85d95bceaf63a85f8f2f431429d21254a
MD5 377fe3ed0e002250a126a8dca46c6ab8
BLAKE2b-256 eb13227576470c9e5bd6175e6bc8b0ed9518e023e085c8438084aa4e2542b3a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6381336c58c3d736e5f3f90b8d4f0d22fef05b12ab20ccf78d87c9b173196861
MD5 bce05f5d6b35c6e2871da0976a61c8a9
BLAKE2b-256 c9a16e083b55c184fbf9ca953feca508fc6a827c8e0ab885e1f10b8457e0fcea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c9e7d89fd3ad20c66bf3e6fcee9ec878aebccd8c96688186253c7519c7f791c4
MD5 0246fb7bc40525794b488d294f9e432d
BLAKE2b-256 e455489e694aea63cb153e2510b8a24e2c92bf387d85060de7380a0090f4ee6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b51cd302418c98a9ac652bb09c0313e1f444a69b0417c44791392f0c5e8acbd3
MD5 8615829b133cea5e1f42e919b0609077
BLAKE2b-256 f1197489430546ade0595491148a4ec5a746e3ba6fec20507dcc8eefb7dcddb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4903a7f03f0d81ee28f9062043efff568cc4d7135e85feb7d4c5e743e066d084
MD5 1b18cf2be3268ce9414f3b06e73f20f4
BLAKE2b-256 38de4bfe1a6ab66dc8cf9e111f9dc8dbd6cceae5c99c1a7799df17782e6b1c48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1dad248b95c074acde6dabcb0509e06d563ff015c6d8c7fa1e43c0a316199758
MD5 acc49f435c881442a6dfd4d7467f5abe
BLAKE2b-256 2c8416170d06ffc7af0d54c6826824655c5bd47af7fff427d3ae281341ee1444

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4fc954e57f49127945bc0a3789f3fa8630750755d5166f301fd50cabb2369c86
MD5 3e4a54b3d8e07b815b943eda52d9c25b
BLAKE2b-256 22fbc26c2b73d705c6d88174fb715dab2a011276347ac0335113b2460e5c94e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 780665aad24301e560a4525a88d0929678435a45a93399deffed1cb3bb993f83
MD5 e4991b95d3a20c9a997366f6d9feb13c
BLAKE2b-256 6c932345d4186e2ebff14c88b912c9fb393bcf897611c6288247a30add87fb4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7f431bc7068d020167b8a6f321cd4eea2df615671ef3baa9c61cf442353fc31e
MD5 9637f9a9a0a7c76d3949810cf395d5d7
BLAKE2b-256 3a45f26550b68501366857d51ba791558a933a003212460613b6b991ad159475

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b553b097150a8a49b1f700d26458518c27b7142946725ef05d68bac0d8128db
MD5 904f567ecd5be0f26c360363db464030
BLAKE2b-256 43fc04f6cb5f18bba40295d8e7f2371b2db40f089ddec83853d014f67abe6c18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9a2c36582efc45e8853eb79f3e9bb2825f50e9cd2b6e49b47ca3d80249e2651b
MD5 2604f8de5565703bc4e1fc89bee32b2f
BLAKE2b-256 6bfecb75e01e49df023e02e83003bf9f7ddebcdcf27af847953811a565f94bc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 87ffc25d9a610c24effaea2b8b1d2c0f9f1ecc1d209dbea9fb20284e4564b2a8
MD5 8a7cbcf8172938327a56cf87b17004e8
BLAKE2b-256 a2efe3807d54e324ab8c0fbd0da08c97c5717fe544ba51348948f64a294f90a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd97b7057d42da9c2073b0ecbaf24b83f2782fd6fdb93160f7d140f13741a15b
MD5 fc481522c80a11389703c06247d3078c
BLAKE2b-256 ac43e495f2b85525dcfcfa197b812fe922b7f2f561f77288fb354b09eb56f85c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36f318b4472b097bc0d76048c7ef7518f9170cdd493c069f24518267440eed93
MD5 8ecfa645c5317f618f6f9e606f721ac3
BLAKE2b-256 9a405659ade9a179207334658285dc71beca28119c8afd877479051a8a42f16b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7027bddc8286f3cd1b88aca0fcb288f43d6ffbaa0b9ff001e613804bb599ff5a
MD5 84f05743e01b1ea96b9da362e07165d3
BLAKE2b-256 8cdd443d2d770aa8dc7e63d819e5a15545dd6aebc2cbac10877d92e68fc47f43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0ee459159bc2bf8c69b07a576573e93d6123e64b8e5f3334b636f20611897dca
MD5 fa8aec9bd2e2ac90a4dcc2a37171c417
BLAKE2b-256 53c588c3e5ec06243ef7926b89d1665278d54e97cf7532f3c13c2e8d0d30a4ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e4d341204eaeb8d7939d1f8a0efcbe5e11e8525d0c79922802ac0901fe20bab0
MD5 f9ecebd73964a215af68b89ce285c5c0
BLAKE2b-256 1e20d2e5f1bc0006de64eb14986ec1418fe14515ed6581fb58994e1aaa5b1d35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 147cfa9e650ad7c6f70f8141b73e44a294c32266958363eedb42985f069c3409
MD5 b14d3935c5b2fc4866c1fc98e1ee9a71
BLAKE2b-256 11199e274478aadf7b7a683776ef6ca5a0460f5957785871f0fd10b93848ea55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d945f46f922899af9beac8d9bacb22b7b8e4ba6fa1b418a513120ef096f7803b
MD5 d2cac5b4a459da1811d117f382169448
BLAKE2b-256 f1dc63ce5dd474760df28fa28945e2aebf01fe68f674edb977c05110c23ff1c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df9fe58a119d9f9aacb2d6c03e7b8647dde0b7f5bd8ece814e5105a8e7839f4c
MD5 4415cc6448859d917600d78e29a41cea
BLAKE2b-256 dc5011ce73d65465c513bf7db0b783850385ec28d0f216889880c2537066a29d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 319d2ba01bc9ff73deeb1fff79bfce6823d29cb85f8be3738b52b945ccb1a91f
MD5 13a80b0ac350b51aa5f4456dcbbbdc0f
BLAKE2b-256 f38954d13f490f54cc98cd8fc3b7f3590c37bad2d1717b0ad1068b695298c985

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 44328180e130e2aa9a9c1e49bd9e06317841dbd6aaa5f4b846685e90c94876d1
MD5 e2dac34d4163adcde10de9117199a958
BLAKE2b-256 07051f9c88230136648f67a8fd5cde2cbb5a4750f6776019c8c63f7ea2f7771a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 225b1b077bdd7ff158cedc6fdc93325e6bd6bb75922b5b90ebd85f072761b83f
MD5 4845c2d7202c63e54911c3803f4b74bb
BLAKE2b-256 fc6cb71605685c60083bb5e8c755fb5ae8f801486a2f8ded3dc2792c2f6d6e0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b10e7c66160cd50f22145cfdd8dbaff525b0c9b2acf5f03cc2a7eb10e0b02788
MD5 fd63f715a3e5f794d60c9e027d58359c
BLAKE2b-256 661edb1d83fa4fbddee85fc12314223e426179a94c128553e261e98234b4c134

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a99b228dc27cbfa1457334c4fa659e0ab1f2127c135918a6329d4499bcf5f50d
MD5 8fe5dbd6503cb0737cd29454790dd46b
BLAKE2b-256 de863e52d9a3717b7c59901fad5d09f13584cef7f2716d9b74d2f0d2f90392a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 75bafc3dbf5bfe4603e4a426c2b8438552a8d6fd299d59e1746f9b3a50d1e9ed
MD5 c606d16f54f1209276de2ba7c9b2edb1
BLAKE2b-256 bfea4f2a0b96f48baa1a61f99577d067fdc7a0e8d9a489e334ff792737256211

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb99850208fa2a699a33ca5b8583a8b2cc5d6bcd102dc07c8ce02bc856ff9f42
MD5 90b3b5e0891fa89eebcf86d8ed44857b
BLAKE2b-256 3cecdfb665e5bd4fb5b12a92cd644a55d4a574662ef22db063cae50ea870b9e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 af3722ec5d84613c65e06d59b36ef74a62adeaa0c14c4cc79d0285dee3c5e61a
MD5 b34750ba0e906859572a7314fd8bea68
BLAKE2b-256 569ea7c82ca63fe3df45150e87fa03d2dae043f54e85d069dd01d286a70e442c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0c43095903eabf1a4ed9351f673cdeb031da3a075d0a50005eadfbd0df73f213
MD5 040803620142c4c9cfab17dc05391b38
BLAKE2b-256 0e6b327b1af4c9b168cf5898664d96bbc0aa2dcf74bab88ac82cfd9a25a12103

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 98527102fdbb7df7d4ae1fab0f53140aed66f22cb2f43380cb5c3f5d2e01ba76
MD5 219c50a828f37ea13a4cd99e27bfcc09
BLAKE2b-256 3772b84aa46e6a7c30a335ffe400db30c7770bf8f9c13cb7080499369f17d369

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 46507473db7af82cb8e75580ff5c0f1d9c7096a1b7ce2ff1d0c5f0a227c6bd2f
MD5 a2a318054b56e30fcedaee6fb312f722
BLAKE2b-256 636375d9baf0b4e3d221440abe2c05f853c98c7da33cce984be782ff76e67da8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b136aba24d315b70043fe5e63edbbd81f6cbe5346cbdd45c866b9f66c438c5ab
MD5 b709d098fa015dadad72b9c29112c7c6
BLAKE2b-256 2e7c4f5e57573ed17b01edfe57641e0cfff6c1390bf238845eb2bbc8af2665a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68eb86fc34f12a71ba8d9db7ce30343484e654266b957076659675732738cbcc
MD5 cc962e572678aaf03f6e9e3c240dd729
BLAKE2b-256 3d9a78f2a17c2cf5077ff7aa3f07fa78d30c10e6e9f44172e867deced3c66d18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f49bad4eb5344048692e1cdd083f0c3dcd4904117b1c76c96a83a2d5ffd23d4d
MD5 11dd20b63fb25ba3b0cd01359159fdba
BLAKE2b-256 b552f4e0f1a115472e9d9879c4ab358b7ec434a2580c7419676326c4c3487948

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 254b6af7794256d67ce1cf56433c56e67295446d5b62844166cae7d5776f31c6
MD5 b5373a949cee66f457fee379939d14c5
BLAKE2b-256 9ad5770a4234291d4c14c754260c44d44d958eadf95e1b291beeb29c411c592c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2ce39f4ad581a5cd6da13c9b0543c232dc5e28cca8b302f549e0c1e09524907a
MD5 098bf781122681b82c3deea34c8929f7
BLAKE2b-256 2a114af56b5f66b5c2b640097a6636b56683470073c73153edff9c1178f846b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c85ebfb8a0585661ba2ae27eabac178f8ce0ec8480e4fbf6de9ce72fa2beb273
MD5 3aab1f5f45dc62a6b4a6acbece558083
BLAKE2b-256 8d9acd7cc81c5d2f1ec5acb9c9f2e3f2225501c72602e3dba93a4d516230c1f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 79baabb290c9a0cc19b07040869ffefab5c7639c0cb5327f19cc46d71cccc169
MD5 ef5710d772c66b31aa6fd0dfe3086f72
BLAKE2b-256 96b202f363d46bd64c210d078aa448e53b2ab4079b8e918e24bb1b58a0d8116f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e32cd465069fbf62dcf2146932a0b1c83b521ca59f93c0c4be6c76897f5d04ff
MD5 b710be7034b684495c47a72b94dfbcf7
BLAKE2b-256 bd19e3155a0ac8e37d5ffeccb9a795263b8ef0ba93bf49469376068167febd67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dc72f56dd1efdf108ec1bd840773d5141cd306ea939a413fe16581d23562e613
MD5 c8a6825dc9c107532b9dca8659dfb50f
BLAKE2b-256 844f02a76a824f1d8aaee98cb2624958748e2b2aca5f77ead81111c364380b81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 50b62b4bc70590d79971011ec0fe5f62e1331f3288f06c69e58e7d13303ad5eb
MD5 26f7f74e8b6a810d516da2e3278fc4e7
BLAKE2b-256 5b92546da4e6783afe9158d7ee15d5c423aed35d8483789d8611bd44c3690dc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fe425f660be42e679fe42eca68b7cae3e725dea4586acfca2f91722d5a22f501
MD5 f7dd8f477102501d1998f1e99a171929
BLAKE2b-256 ebe28a89f17a219940452df778d8750cd75448e50fadd058a97a367c0385c523

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0d39ab6a265972279b4f5136d8dddbb45286a87876a845cb4d0abfde31d6a8cf
MD5 1d5c4fb5e7d40cb18230fb5f27ba188f
BLAKE2b-256 6625a2231cd2dae54ff07380df8eeed336a7529e4fdc4c30135b6c7848b4e1c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2f81890d60a68cbe1b07ed525f349f2ca406af1517196da4c1fa206655705e38
MD5 7a52b4de964e4dd0198742be7c91dcb7
BLAKE2b-256 1864f2aed3cee44b137d25a3438feed8cf69f81bf36e16ed18d0da6f1e789457

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2d83e94da7a5257ee00ade7c5ffd1a99329af8d1a8d5e3ba3a82defcf0a35899
MD5 656449af27e064ad066955b639dd9899
BLAKE2b-256 06aa59b222ebb8567538996755308ae5aa703bef2fb7b363289fd21a9caa0a5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7fb8b913bcfb2b91d3dc656e47706162ee81af9b72edddd6f95d654a5e8e18c0
MD5 eb7bc952a3479b345189c1b6db64d21f
BLAKE2b-256 853917e9c9beffa28b7794c4829d2854a093091669074a1b44412bf53d09c7a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d9002b00a3f402d74b079ed53350b73c473ef132e3183915cf1c871ad1c9a80
MD5 2f4dcb370bdc5ca4f26039153b183933
BLAKE2b-256 b8daf1b87125b89bbd8fd1045cac580fde4b72b5880407e0d29c8521eaa7dd15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a0654eaf50fc14045cc3d4bb6eeda776951a4f11f3b73837fe4ff4271e16879f
MD5 67b2504147af58519ce35fb73d061c35
BLAKE2b-256 9c5d050bcb715b7fef27927340b9b0476e19456b2929635a4d285607833332f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bdc971ea0acd0f5c3e90247f995805283f18e2573fb28d2958e12e82a0c0c1dd
MD5 87409be12c6c0d3175e9abef3a18fab7
BLAKE2b-256 d1bd23060e99b7358d8d4a25dc9c1bb7e256708aca478623f41428ff9f7c0194

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 45d8c737f78968e63e5a5d81b12bf83ae6b7013daa8203f200fa81fc73f0a9b7
MD5 127395860feaca5710af4e35e9275d8f
BLAKE2b-256 0ed7353e8f5b448e6ea440e018e667cd30b046adcb6decb747f784dbedf2dc3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 925e8d97dfac34b46d7f885979246c742173a947696e545b4eeefc460889b131
MD5 7e443d26a2cacecf0d931fd6f40f47cd
BLAKE2b-256 b0d2f51f9ffd415d4375ad779bce10139693be335fa946f7851f55c61a8b0fed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 58e7179a4cf69d867e6b66cc0c0e791930d2d36b0e31885afec69a69573b2864
MD5 9af9476916c8c967e260d19f7db1fbc4
BLAKE2b-256 e3fb6eb1cbe89543de8131691301922dd23e0571f091c767cc1c62b48630fbaa

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