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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14Windows x86-64

attoworld-2026.1.0-cp314-cp314-win32.whl (821.8 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

attoworld-2026.1.0-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.0-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.0-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.0-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.0-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.0-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.0-cp39-cp39-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

File metadata

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

File hashes

Hashes for attoworld-2026.1.0.tar.gz
Algorithm Hash digest
SHA256 8b9062af230ae3d08407fc045a3aad23e8ab210adc4960963a92f104ec0a787e
MD5 504973a50b7067203259399227d6cdaa
BLAKE2b-256 92334996a0f8920435c27319c065afcac2bcaf9a6a3102e068f0a02ec3cb33cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e12e310925c472d448de2b7cdd2028ed61dca66e6a986c392837611f73dcab47
MD5 19ed33d632c789cf6de1b082fa07f4ff
BLAKE2b-256 40f0f51555e4d21bba6638e13c28a22655fb3de880b9416b84bb82ac992981e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b8f4f543679f327db820b702b01c21a390f901200aea0dcd19bf3a8f84a052e3
MD5 14b4bf6ff48bd4ce2f6d1f7b277c2e1d
BLAKE2b-256 666724719a9fc8a1048d0b08ee0e57f45a66d606e810642c18dfcd2187545eca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 20bd2f7fa2c288b054eab3de8396dc76e9a00a2c31680c1b859cb14dc249b847
MD5 d549f2365c4588b45e1e7bd84fe68982
BLAKE2b-256 35e285ede4a7ebe81cf99e6f446fd0f78d6e8b938f07b5c48946b6234a5d24ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6af7e122be1957ccdeb8e71d26c963e5e5cb82797ac8295fc8000ec926148d27
MD5 c20d1e4821d29aca60e110981c04572e
BLAKE2b-256 8b8be2659834654074f8109b72b390fadbd06cedf39c82fc369c91a85ad43da8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce91941194428295116955c13854124e4eb25d49e374aa6a1b35a475e59a8b25
MD5 14106b2e63dfe5d15b58bcedd0647fe1
BLAKE2b-256 9c3827d070827f7cb76c97d5f577261279ee402fa785eb5eac14537fa8c3488d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 73a9eef2f3966a23cba53722f26a9bd7c3e641e31fea9e5ed1acd787b23d1211
MD5 d2e0536e73a67f45488733e1138a1d5e
BLAKE2b-256 ec3acbbc868bab40bb8fca3e381f821dfb9def472aba47f6a1d6eb79a99122ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d311ac464b5b30f612925fc7a2bc82cbe9b404aa93aa92a08eccf7bc46e3704c
MD5 16309960f18729d7ecd3624122e30a8c
BLAKE2b-256 718ce341781e63653d110eb46ef30672ef371d5139318c96628fe1b2dfc89606

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c30c608d1fd9a39d4aeba63c857a7250a3d7e0d5e2964b08ade2a15242d86056
MD5 cfad9953d00081ea5319b6c354d27038
BLAKE2b-256 b23fcc6583270cf936d634464f8cf08e49afad3c5398f350011cfb753046c409

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 688a97d8844cfd088a6c9e5bbd5ddd2691f3f6a6927d4a0cbf2ae8274c3acff0
MD5 03bb6697c3e1b427126ed8abf12305a2
BLAKE2b-256 7835e9cbf2f302a737e9bf182f9dcef324a88fa027b25c088bb2de1edbf6fe21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f87ae06b56929380ee0b3a98dd27296aa2d596f6b15419460d52c84f37115e6
MD5 1305584589ff913bb552bb66b97984b3
BLAKE2b-256 1a21b62e2df4677fc114d0a31547ebcb25b630c20930f76eb0934fd991bdc500

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 801cc9f74bf1d3d90e93fd929625a70be08a9d08cc44fbb47d93a50bba74eb15
MD5 f1d6da69326d0ff3d37c540fb9266da8
BLAKE2b-256 1b2620dd83183600c319ee0b3e3d1ef0db92d3d06c2db7469e67690725077ee8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 19b0bf1ded42b76ba24e27494a9bc1c01cc5332eba2e39eb9045bd8f01b57130
MD5 8d6acd18417ac8cf36531f2aa1184e8d
BLAKE2b-256 c5758da611121abab9b456b9eb12595ae35414dc2d7cee9e3710de908f143abd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cbcb1f71fb71580f8089db3bd78daa9d4550705faccf670bcc3a407d1a653b99
MD5 87a166db0a0fe4d077f24d98077cd5ba
BLAKE2b-256 db33574e9fb4db93a959050a9e327771aa0b334cb8a84b0457de1c790af5e171

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a82d17f91bcea95766a19bc9cd0e5012e72ee67888384d01bcc196f63cb8255f
MD5 71ecfc46a471e99726792e266e46daba
BLAKE2b-256 04d33d9383e58791c320208186c846aa754120a7e65d02c48ba1f3586dae5346

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 805083ecf9e2a604f785963c60aec354cea3195ea94cfa3999f7f3c636fa7e76
MD5 e7fa38b5bdd6ba20fbf61834c51e1269
BLAKE2b-256 d370422cdbcd5e0a53560d6ed583a34c2e9752c3ee4696663367abd88ef21354

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a12da498bcf6367e8913f32280fba31c5bb76d6cabace69fa4cedc5f5606f7fb
MD5 f26ab28386791c952bf22b72b286fa10
BLAKE2b-256 efbde1f53426d1d916a4b3514025a6fc76061dc15a18e2136559bafe31dad5f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 050dc0b77463ac9cba42cb99dcddd31538bc92a9f9ca7277e28baa534e8f4d39
MD5 3de5f78ac766ff5830fd18d0f18a5d8b
BLAKE2b-256 c0e2cd6e0301fed3656d9301327b74812b39af5cdc9cad4088ca56af3451eaee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8eb43077de0dc82167d5520e9ef1ec209388bbe7771c5eb751b663026b310e8
MD5 0c1f128c944ed67c3486a0c0b257f131
BLAKE2b-256 4baa64b4be3cb364dbd740d729d631b9abb5d9c3aa15f21fcceb0d6665678664

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe0dd28879ed3b940b8067244f5c052c9322deb3b6a27e4eae13951f334fc4e5
MD5 efc3323a3d5edc093784329ba52b936d
BLAKE2b-256 0b5d9123cc4e7865f5640ab9dd8a7a4777b88ab1214760a3060d10211e9e6cee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 147cc21ab0d7f8434d3ce2b072dcb1f34be35f0ce53feca3a5047bffcd3fbdcd
MD5 09ad855c898090d20bd4a8fd561d85f7
BLAKE2b-256 7ce2d7a0b673466b9333b68e97a6b749973645f1a2ffd0b080a7ec723cd955a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8cdb1d0e12a68e174164c0423a7dab6c42b15bd5647efa6a9228167001397307
MD5 2fd046ae4a47964a1c8d22bf4dac13ef
BLAKE2b-256 eb91cf35e5eaa9a4dce751d0df6444337745211b3c19a3e7c4cae5b572edf77d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa09f3fdb6bfc8a255e46c5aef152be88965da1887a914bbd7902917694d97cb
MD5 eaafb760787663523e3b35e0fa52cdd0
BLAKE2b-256 f0e5c5f9af1221707f9aa04f83b07bc306ce1171b7ade8b42a72145ba1c99ab6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ef7ff3078ff8c10c8b2baa7543f63ced09518e14e11ed65a4844900d6175b667
MD5 bed09fa0cf015ce963ab36f964207be3
BLAKE2b-256 69206f9c197b52fe2716acff254dff61f2a1afbf5f18425c3bdc7b73cdd66e1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 18858e65b12c2eca9b75b5ebcb6e8580e8e3ea349db5f9c8845f026d7ab5ef5a
MD5 be76009cc829ccc706d4f5be932629c6
BLAKE2b-256 3fabb359009cbb7c69056f5dff29c64be1c486d98eedf8b741ecb8bae9171542

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 553d4210ed04f6b9659f1779603024eececc76968944ffe3ec8f42acc9c101f4
MD5 3f859d0aa387a8ccf25d8db955207ec2
BLAKE2b-256 6807039f488a329e002ca7116f62985015bdbf06b0519d41b1c5a581366c569a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6731d53f54fc6c7fb0ab476d19d74c5662922cb80d03c62790d7a4cdc1c4f99c
MD5 9ca521e0645cfdb2108b8fee93260612
BLAKE2b-256 0e7d1073fcfa955f74d07256a651ba5f6c2befde075999121999f268b0a3702b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d9c6f654fdc6020a5864fcddec1f9ba833841ec326a92c4a2051225d9f14f7a9
MD5 56861d056c4a009d7cb65f9e8d1d67ab
BLAKE2b-256 f1027ad4beb5b473f9fc1437abbf9567e73b767ed30ffc8c6c0678b2143c067a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dd7002c1029b78e9d01c8cd084a0eb4fb785dd9ef48dff10d76ef24d8d26c792
MD5 dc092a66509c3a146d6a026f78d0899a
BLAKE2b-256 e6a5cc2d208c1aa349a64b074b9cfaac544c7e8373ffdcaed8e72438982a314a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cb2dbd1b1c59552513a3ddc21a050dc508295948eca8c32229d9f4059f6def5a
MD5 787ca1f3ddb885ee2babbaee48b334a6
BLAKE2b-256 3606731e42b5980b910dd9908b23f75b6ad07f65e1468199c410d44e96ebede3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 58011c9f66d368f9f668783550cce34a01cd7282380439188a4e6d2fac76d1db
MD5 9fb2994e12fc0247f8ff8bd90bfc02ca
BLAKE2b-256 9f5c2092ebcf92cd9345a9f8e29e2143d611d6fea4b2c2934ab66d2aed9ce938

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 960c455fb7ef223c22d0d6522694ef22336770b0f9f70b358fce5ea5162dc16c
MD5 63de9a94300932d4ec6fbfc278da7aae
BLAKE2b-256 f3ce9f51e5735169ddd16ac9ed2174ae72a1388e4c79b7e4694b0246a6d92277

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 33cebceec57df6fa54c55b86a37251a92baad006b3b0d1dc7f0866f33589c29c
MD5 55ceb1ceea1d7ed680632eea3063a78e
BLAKE2b-256 8f7196c015a1398d890a6a9f661da32a4e760fbabccec4acdbbf8ccd71d65ab1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c2eff436e172ef4ab001548278670d03a5fe0fb606d89c47e4d63e25c161a354
MD5 1e7ab66f50c023ea5ff4a13c2d7052f5
BLAKE2b-256 103b8ebbddeee2747478647891f5788560c863bcf67b843a0b673042fbe2e649

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 090374401d5238aa08cbcc46503536913601fcfd715be74b755072084eb176a0
MD5 111b7658cc5b7c4bf78126556e3c95b7
BLAKE2b-256 75bc2cecc631207015fb3c7e2e9ca917daeacfbad98d3858c1dd7903b44df974

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ba433d41b2eca3c4dd3e02ec986e32f56f3e8b124380c8e4c2f10906ef882a7e
MD5 47e8a87979fa40e58d2c262080f6e4a0
BLAKE2b-256 347711c1e99dff720b7018ae5c5c27ac315ab3f2032c076a741f046b091ae929

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 ff6523c2576fdde4a3f7fdca98a4c761332bdec38679a0d3a5ef3a64508f6c69
MD5 bf5927754f2b65e389aff3c4334b8eb0
BLAKE2b-256 50ed3a8e9db7a3fb1224b04d4c4de6ab33439c8974b238c21328ab364bb3a54a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 84b9eca85d6123f1a5eabd4f9eebe4b9d653238703673a22b858ee6c0767ee1b
MD5 9ee82ca319cccef19f4f5323d9c9052a
BLAKE2b-256 96a932a39072f57892c45b28a7e0132fb2ac72ee603c59b704c9dd2ef7d30198

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ef4b0ece503d87d93240fbdd15296d072a944939121edf75f52036da317ef8b9
MD5 eb07f039867974de051ca2721869ec98
BLAKE2b-256 448784c4df89530182dec6a09fdde39fefd0a36fdddbcade0d96ddf10f9fb55f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f2558169f28bd0bd83ec267956e66a26bd6ada0ad270eb58a5aa068956744547
MD5 e9fa43a6101cdb239a57fba47c5bec7f
BLAKE2b-256 eb941623e8a74610cede305936040f503472e31269eafafd11bccfcc499e194d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e58cb203c74a9bfe291b8164ed087b49aa915623953db0752dcd1d03875a156e
MD5 2263f4c4a61a992157c19c55158986ba
BLAKE2b-256 16a655efc297e59bc0aef9ebfa3f73075b761c3d124f8637e3130faec77d0364

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4e1d99d6a8a169995301036043329be5594f1de9ea18a81596c85d45f2ae0d2
MD5 f0075289195e793802e19a5f565a7df5
BLAKE2b-256 d5fb2d1e1fe03e154f31ac25041e21d80d6159ca03e93c63645920d2a658b56c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a2f4d6bda45171dd8ac3b427eba6e5954cac9d30ed05a5f6efcc216e00e028e5
MD5 999df8c3e8bcafa5d950c2fe6f653dcd
BLAKE2b-256 c08ba5126123c87980d08286f61b0bba6e3670d1c955f722addb035404ca26de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b4dbab3497f0f0b291ecdcb39bdff63cfd5f5b23bb282bffedf4ce065d63888c
MD5 4872dbd99425658d57f3768ed4d4aee7
BLAKE2b-256 12c24a0f8c3af33fbcb02c9b0c46b08ba0c3b5710af73764bede148d953d569c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b6d97adfd2aac94b22d64169ac97837fde94d0162923a1b56aa16b1f3c15d97a
MD5 d478294ee090aa2c8fe47d9071db57e8
BLAKE2b-256 5b911ad0ad5d33d66ac59ec73d01744c37b5f529ef1e343d0830880b7746e5ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ea2e3d6175f0b648f2238ee7b865a13b0a34befc19018c6c84ab40e25559fa10
MD5 adf0894209193dba7d047dbe50bbec0e
BLAKE2b-256 f3e0776ddb00523a933e1dbd995348a2df0e036c0143596b5a40ccc90c0641ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ebb1847006dfb3ac3d0e221e5679f515135fc0d4cf781cb7e796e51b9cb506ea
MD5 3d2bd5753f1e48c4d84b055cf716f725
BLAKE2b-256 cc3d676546d5e5f37e427754181a6ec36d744100cd6edab1a016407c1554564e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e2adef5f5d5284f0f4e0e4dac7d2da072217289c70edc7c809afd3c59222a76
MD5 4bf8c1bb46d38b8c44e516d109bf356f
BLAKE2b-256 c83fe123cc7a4d75e949eaac3c0d5ba34fcf94d54fe6482865bba744297b9b12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 44cb3016068847ca498d8b34469195e6af082585aab351cec6c19bc27b619a18
MD5 113a43a3afc5648b684950d7506ab5ca
BLAKE2b-256 2d12b71c919d4ca8aacaa33b2aeac571aa50f6ba115cdd896f5c0839e5c6c30d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5cc57b86fe088c78fa8dbd19ec50fb5763301019c01d5fb83b967271eb8df064
MD5 f7f3a760a9e43ed409e73a7ff7596a88
BLAKE2b-256 bcdd0e75d4fd333a8d68e10b135af8585184ed260a8ccb09dc4c52a993d71987

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6e916158442cbb3ded40b436147def3b96bbb6abaf99bd293d80fa5fad0e5e5c
MD5 ea1915c6ab2ade79385f40dbf921fe58
BLAKE2b-256 44c4ba11c056010b39b379fb2455a0fbf7aa8b4bf5cddba63e639ce61663583d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 83edd2fb813c4ded3483cd020dd7754e7484ec9ed6e3b8e2e7241dc8892d404a
MD5 ed562b44c5e50b84080935ec13172902
BLAKE2b-256 da2f8538d7cf69df5cbb4e0aa61cb47346be496c428c5c0c78877e12e8e0587a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 357af083eea55647d4624298abb4e95880de78202af2fddda2590c79104514d1
MD5 9bcee2e77da52447b51c9f5f55e2fe49
BLAKE2b-256 c1d61194eb8ecd4501e88d568e75f19497b7a1c80811c98dfc7746fa0a39118a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b192f7549e7cc1ebc08a577f486601e792c8606b9b21bb9e2795d1bf81017790
MD5 8ebc4e0a0e5cb24b3d275cfa88030887
BLAKE2b-256 013ba175b5aa1d0fd24eaf3d5205836b6100b4fbd6fc3618d93f368277c0ac17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 491c229dfb3b2d21d08da6c6855864555bd48a51dc0854d6d8670334271a5229
MD5 33388ad3bbf7fe2c25405cee0d3c8d3e
BLAKE2b-256 cc7c2d1e903530b2b5df5d90db86cc5c79fd254f2d057ba93123c40b2cdf267c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2458b9e0ce0b292601a0fcfd3b4d4c501399db283c0142c9f7bb65c586e10eae
MD5 25bcae3089d4bca1750bc3e22d71299a
BLAKE2b-256 c9912c95a55c70dc9a2e6bd81823615cdf5607219c6f7d52f19390026a8f1ff7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dfff17ec209d7f6d80df852d77c4b7a57483c4af60adf03eed715e912eafbbf4
MD5 7c6bab4ec3a426e7f3719823f187a96b
BLAKE2b-256 21f94d22ec37bd849cc934bc37b955c3f62526975557b521a12b425142f1be69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 794126e420709dd2a9d8fe6fe98c32850481b69259e214e5c1edb727b97b0de4
MD5 1abf2e839b28795ca0b6e6cc29f1557a
BLAKE2b-256 19d992ef49be873e642636fefa9a6b4ada48ff1a216b5c3901b1b35974e3126f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d019562a92a4fdb27efcbea2be204d8c0930ac2e7ef839d880b4710c63e84c10
MD5 5b3ed89ff524ebfef5709b67cbc4aad8
BLAKE2b-256 7292771a2d390e95e58438da393fccfd2f29d8909aaded7c79e8a4c2483535b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 12e260730e49fd687da1408341b9516b99b68facd5063e29da1d06342120b0a7
MD5 20ea17b2fabeb0b3dc5ca38a975eb6b7
BLAKE2b-256 a2c0d8935c71a7821dde3a659c86197b7641e3802b43ef04088f52ade449bce2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a01946241eafa523983917d0e421513772f0c5345ad9bf5f0ea563297c32f3d9
MD5 8c79ae6fb7e40c14196d2112d36e586a
BLAKE2b-256 6b044edc3537eb0bd79e867a593857b3627f43b0063d40395c6f48a6ebe63b7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 add9796491b233f6cc9719958ad5640784d5b48bbd228173e7cf2ad65671c00a
MD5 3336bbbde2121153b40dff910701b637
BLAKE2b-256 8c55a7a665c8bb3541ef5cf48d9d8b634869e2dba16a6cdf10686055e13331a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f98173f45759a133fdbe2fb55e22941cf1f34bb8c17b816293f506a427e898d
MD5 5814040613fde66119c018274e7b3b26
BLAKE2b-256 6e49b799f4a1ea4435d1349f8cff76a6042149834546b34c9b76e66f8d8e41c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 12e1c126f6da3f96f103c72e8e1729f0c930a4c4b2c89df4571f650cb8413d3d
MD5 b2eef2720f4a0652e8ab0374793d9424
BLAKE2b-256 cd82791099688cfeedc1e8bd52dca2931c3d52a5992a830dfa2e8d34c3690cb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 136cb15eece8e048135b33d9ae8fac5b131e69a878028598bc23b6679eadfdc0
MD5 d857f2758899b7b34cce63a1fb63d8a3
BLAKE2b-256 469bd8588b2ee1844c4d0dce00ea531011f878cc70e1c5a1a6eef0da1987036f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f4823bee9ea15eafc2adf263f66b98faf9c52c0a0dcb32d51d8bfd37656baad7
MD5 6728e5ff19c3b06487dc47a9e3c43982
BLAKE2b-256 c8c9e494494f7cb096d4314d41ec6b41c88ba7bebe4caee9b6415bf64e2d12be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5709ead0c391ed09e2e941522e0635b5646f327ebafcb08c68d1c852786bba7a
MD5 2745c14803781f01c435902edc16e0ce
BLAKE2b-256 69532e14846a864a9341a9ba58b52e4bda0ac07a46c120f5239ac3d44a045a6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2666b0f1e72dcabbef96453380c679b99598f39a3c09447d561b95370c03adf8
MD5 a2dabd3649969548552fb40485c6c8b1
BLAKE2b-256 2cdb0959db9081fd19b9a7c4e692e2db30411c4f0d088d0d57e292295cd4347c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 142c15a71fa79a2cd2dfdb7f85574b1ce62659f3709cae0ebe414b37d4dbb51c
MD5 109951368f05274df15ef0b22f542e91
BLAKE2b-256 dbd57ee1609a8102b04c8bb6ed07ae595acca2f7542b8528b99716ca224ac3b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f14774db711fad396f7ffcea640d2a3e3423f001962e5c489c85637c196fb58f
MD5 3710ee1eadd2b000ac43043e6e0855d5
BLAKE2b-256 40eefadacbb51f1b11892114e7da99a459b8eb3242045d5b68545e2356eca2b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c6c742b13965555d375f6a6e649594d807c12e76eb28e4bdddcfbbd74ea7d17d
MD5 1a2cb1d744f2803277e5b17ff1aa3249
BLAKE2b-256 206d4811aae5c75f8401bc6f9629794e5bef894b857067481f4bdc45d436ef6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ba7377d69aa84ba360d18d33a333e43e7ea4fea272155fdc4ed85206912ff461
MD5 f515be4aba8fed726caaf12a76b82f52
BLAKE2b-256 e06813e3c14008faa196d10662c4300268cc24b38907d3f8c4b42ea412925dc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2daaeb280056cf748811dd5ff9cc947b91730629894a78178f8639cad1cb8d4c
MD5 3bd3b31972e40e52e34c1c71fb8fc75b
BLAKE2b-256 22f811245d240fd6c4005677aa4072458262d55bc9a429cd7b50d2595ccca2a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6c6dbcbb881a08db69e0e71b71ace24c879e0e47deac322c6318d3f72f4c1f86
MD5 9b49b71428405f0c48d677e4f4143f49
BLAKE2b-256 c443dd7186cd297a2655443b51d5d1cd7d5e3955ca7ef6fd1f3659f150a3679f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a16cf47b38c14480829680e106da78a41829a2f896ceafcee70a65f5b41daf82
MD5 449cbbd2de89944910faee567c0c37a1
BLAKE2b-256 32629557feb2aaa808b52b5ff9ff03ee49daba3d6de29b0703619ea6f91b77bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d98d5be863323754e79609113ce87f9b6b07945492a17fd41ed94f11f9bb20a1
MD5 458781ca118b44089dec2b9dc4717aa2
BLAKE2b-256 fb8fdfb4db0cd0babcfb6beee2eaaf5ea21cd9b4296e64234ef7df6188325693

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 23c0f01223cf839d7b63ef3d02226c08c78ea49d2e87689279f5dc812a2e4549
MD5 65a68e6a2d2780c1fb47fc6b806509c7
BLAKE2b-256 25e4575deaf88ce113299078b886317af01df26ebb32c71c1391d34d3cec0e8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 82e214c7da6543e323022e8aabb4bcf8d8ac968233612ca8e1fda73349b3a4cc
MD5 b291428a9fec5d2f04ff80c5266cae3a
BLAKE2b-256 0f871ede9b75c848c92e874411ac1d759947c3e535c6cb4395231de3167718e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f099d3d065c3207e3182b4b95944925eb8a19b63adc3810daddcd70497535369
MD5 c2933afce597cf03670dfcdedc4a4e50
BLAKE2b-256 c60e71efc0b5cf3c4782468968dff99924ad863a7a342f57389774ef01af613f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f756a37c1272c804fc7b4d8e64ca9fb40541c6d95cecaf7a46364ac9b3e3dfc9
MD5 9ecc06d514e22369b9fdf67b724797d6
BLAKE2b-256 9954b00534ca135ab51bb0823b638dfe9b211b272868ab4cefe061044f097f15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f58bc2b45662ede53917b6c7f8f0f3e57fc2e94b2cba0f142e06427e2fd130e2
MD5 ff43f2968e4a3660137c577338321d06
BLAKE2b-256 3ae443851e2fe3433025dc16485c79bdb71a94c2af22c3315fb2af1d9da86464

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00c7b790a399d45cb482ddc078ee12eff7995a549affe058a2348e97114dafa3
MD5 7ffab29d9649d6525fc1ae525da1dd8f
BLAKE2b-256 d9034e34b485f83efee0ac449329871f077d7d6db0fd2c7df04b70f25bef2ea2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6f3920b9eb42f5db5ae799b24e0859d55e6f6cfcfe3472bdc7108c96083263f2
MD5 818488703a2c79f1eb868ef39144a1d2
BLAKE2b-256 1d676e0f7d016133f3e07d7fe44890a4bcd5e156ded9d609ff30dff4f0fce7e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d6a17a7e7d9b75876597d3e00803cb9405ed8d100f595e917ee680db82267c01
MD5 0ac1a74958c4bf76b6330dd65ed8a9bd
BLAKE2b-256 bda54e8b78e21df8ef942ce81d78b8daa5c7818409388a4bcd984fd1b43ff778

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1d18d3daa13c7f2c9fc724c1f387d2aa08de960086cd678c12dd10d90f6d71dc
MD5 61648a4d2de1371f6a2878f8953c0d93
BLAKE2b-256 3863cc58863928d97a50241c8db80f62013cd4fa5c703cb4b58f9e3ccb1e2e4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 721f24ec2425564b684658505ec17311106e2aa70241eabd5be510d70025ce7f
MD5 e1ddf4baa23a4d0a1bbdb0802da5f5db
BLAKE2b-256 f382ce52a996ec10375ee271decf6519199f3964fab8b388964971681c25e162

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ca18bb6cefcf7546e85fc8872bcf7d52278b423406c96743ca58a7a43856513b
MD5 5d6fab166900bfc0606a4be84b9cb0a4
BLAKE2b-256 7e57a6f7f4296f9e94b6322cacb564e82c0fe98f38286f7613e151ff9b727d99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1ea70f4f54ed564c0c0b19decd3fe810e5318131f55dfd5b97c0f81ad855a6af
MD5 4e388f18a98ced63ef0366a908806bfc
BLAKE2b-256 f8d14e4ec708282e0cbf483cc8c2decf590ab6f07fc5289187db67caa79a7168

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1caa67e6f5c6ce388650acba8d7d12aa43ba0b01bf7d8109150815c04e7c00b6
MD5 f94f8e32a4b472b2e200b4a2ce937c60
BLAKE2b-256 ecef0b9c723da8f286b67aab253ef840228a2f17320a95883216b9ee1be25457

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 858988946dd0ed29db11588c11bf20d96612620d805943a1f6be81c02e0cf882
MD5 218751bf4522352bceb2d832a384b1ba
BLAKE2b-256 0d52a05da7e67d1dd2dbffe62d04a8b50223e16df06ca83e227ec7bbf0994992

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6b582ebf2a6387bad93298bf083e57f828ebaa5565ea8171a13a6a653f47beb6
MD5 1074cf5ef739e2073464078bb23071fe
BLAKE2b-256 46858a498caecd9fe45a9ec1f4a44ff191fee39070ebe8155aa15f76ec2dc51a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b0d05e2279f36c795026c0da338dbd9cd00b56c5c7d533b2c8d55481f747aa4a
MD5 d63a1a7432f209e00d76ece2cc0bbd05
BLAKE2b-256 69249c794f0d25322c8f6223dcb89d80d9b811a0c38e8ce2014955bfe924e88d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c375438db8e2bf834ed32c5f4b1db9af9a722c4f7390d178a5c11c3f73ad211d
MD5 0030cfeb177c411998b3fd79d78f4f8e
BLAKE2b-256 5fec71726f3ef1f38e21436d12b0473f0ff542ede84e5bfff673e3864bd5478a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4845a34005d6657d26ee42311e758b680383ed71a8507c44637a554481e50455
MD5 462d2f912875d2c63310a1ea734a86ca
BLAKE2b-256 4dcfa9a82d73e3cf31a2156d8c76ca27fc0530d0dff694c38f10d18e8617e4cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1901acc4afd8e58c3e0dd4c1d227e8161752eaa60426d815aee13778e80a9724
MD5 aefd3e8bf1f0c49938e42bd901f426d1
BLAKE2b-256 3ec5702e00fb7b5b4661fcf1cb9f1f900e0b1f70a890893ba891dc9d18ee98f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eab9ec21ad830cfb2af2d463f898e2a6c37842a10cbfdfff8195eb27d84fd192
MD5 8a05b7f948c395f87c78296205e877e2
BLAKE2b-256 bf5d30d8934a8ad991bc93dc5dde2c3208b3336763c89b59f58c5f49fb304e4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ffad50f12ae391d06995d2ff929211e9f989046383fe39b1cd93096343a2e2b0
MD5 7ca81b5337c567cc2ccc91d0976d104f
BLAKE2b-256 ff275d5c0f4b3238d6ab6d73e80fda601ca80ca015541eb98f84b89b9dcea1dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b8f0542e40ec7d86a6146d4e3d36298df1e54b80b39e85379acceea71096ecbf
MD5 14f2a10814b0bded9b4981d399028b19
BLAKE2b-256 ad4710af29b0b3cf3bf88a6e1bd3d52ac8c18072bf79674ba026aff32dedfa4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 30b263b5fbe93a1c13fe63163124b9d47cdba2e06ff3ed17d41acda6211aad67
MD5 2d069b3c030ea9a09b69edba1410c10f
BLAKE2b-256 cf2d52625398e3caee77a79942a4f6d5820438d639736b49368addac4d7b0c5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3037cff83055f89c2c13a7eb2a57d9fcc75b3af419117e8fbd0f0f95f4a23a1b
MD5 27958261495343416ef1f441d1dab81f
BLAKE2b-256 3eb67e7a2f318f8caf6ffebf246e6343deaa193549cdd3f17762106a049dce08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c3d8d250d66da4bf881ba94a68f234253a43ab4b8d4ce23ab9f28133469a2386
MD5 07495bb8b27629e60a9a56b2430b60fd
BLAKE2b-256 bc4434f5bdfa1f646f27494f091baaf3a2c83ac0e111dbd645e36468b4bdba3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 20e73f18768934090029db16d5734eced8a49fa5689cbf34024d958e205c8581
MD5 1c1ffbe654c7a5b2ac99dc71d1cc1b53
BLAKE2b-256 ea06b9bcffca6b2e59aef73fa14dabe39ecace1c1ce3b0ed4119707bd292ad6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 710f0f00c2217740801acb2a6a1ffc8fa8472b0ebe2ff97485422101643d3010
MD5 254b8dd8df3069fc98cd5945656d0667
BLAKE2b-256 8b13f378a08f53820f5a68a594fa8bb133bd17d9e8fa5097937f5c4501cdb80e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 47908aead85bd6cb5e99db43e2197f754dd22296af44b0528aa5bd8ccf50aed0
MD5 d932b1693973ca6c69ddf67b3dc89923
BLAKE2b-256 530f427d7e7335b78f9aa8e0f9291bfc93d57682854238590bcdfeaa5e8ef740

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a29d3593dd4107742f87a017b7a7b2ad5b17a42fb8a6c9014240c34e982dffd7
MD5 644393f447c772bc59bdef5e82071a0a
BLAKE2b-256 7683102da3a8ee99ba9adeed7353405921c08076da1e09e7fbc93bebd3474894

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 781366eeeb7c0830e23f6832cc3cf66051dbef61b254bcb9c9b2cb3a775da9b0
MD5 43c5fc8984f5d60557d56ea02a2ed9ba
BLAKE2b-256 0419a048971ae9cf7b6ade34277a2035295e193f2c89f12ae717e64493dddbe3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3991a83886920775a67eb1aa0aed5257b1584173720878c7f4cc14e86a05dca6
MD5 2dd8a6e68ec139666f11364afc92b992
BLAKE2b-256 80fa94edbade00d3dca0177e634da94d071a6cf8349e71b7e5399c47f83e0233

See more details on using hashes here.

File details

Details for the file attoworld-2026.1.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7a4b4003df235476e9470f393c83929c27ae7324eb440f6fadc046480e25a57e
MD5 04df96c00a415e05078f1bd614330a9d
BLAKE2b-256 1957b0e19eb87279c9b8bb0b8b439f3f7cf7f342f3e610dd1e07f13a026b8507

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3a3c4c054f0ab73bfcdaab38222d3bd7637f225d226e73e71e73c85bb2082499
MD5 8e8085d849b2d4e0b3c97a076df5170e
BLAKE2b-256 cda1d1ac3f8fd66625bd51961467cae9777a6f1908b99a2cf96230ccd7345499

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b222359ce09c124e8674a88ff7f86af0ff0fca8556b7688170a0ce504bf0e666
MD5 baea43a9d195a918094d2db580680553
BLAKE2b-256 0114b8baa9e08b93cd1b82713698e338344fdae81ec60c2429dc68b7f3d4beaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0830f451e2c3350a51ced1ac0bda23646e6c6cf048c2343b89b162dc00e8444b
MD5 e69907348a6ba63add8745a650d04d0f
BLAKE2b-256 b4d4b0624334ce8da44aeb704746afb0530f8aa095e551899203da321240120b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2e5a1febad2acc501cee63f8a6e17abee5f36464a842e44e2cb60cf77bd42cb5
MD5 27575d2bda19061cb5f27279327f4ccb
BLAKE2b-256 e4a88931f40b08f55b3ada91cb1e537bf60aa8c8cac916debbd8d0929f9dde55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e205bb9f8a8111b5215eea71781a644920aabcdd6447f3e09ffddae75770da55
MD5 e142085f8941928f5cf118549375a88d
BLAKE2b-256 69dd673c63ea8b13261c1fffa1dd822996c9f5eebcf8de753b3aa09dcd70f17f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fa5f3ad92122580001770aa3064c705ad96924f1e209cfcb35d7d9140fd0c7f5
MD5 d67b5bc9df7896484ea1fd0e89443903
BLAKE2b-256 725d4ab3703c321555d13ccf8f86e2a51f357aeacb4c58ff97baab2f6687bfc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 10043a188880c3870ea55065ffb50f9d764f0c2015ef738cb4372ff76fc41c50
MD5 6e622e2542da8125670adacade0873ef
BLAKE2b-256 2d3d69380b503b3605374d29d7028fea99cb04fe0d91c6337493eac96e2d02ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7445b29c8d3edf492a5c0b1e3893a5e54ca67dc12333a485deaf4223fd65bd69
MD5 22e79d08e36ebd6943c7fcb20a7466c4
BLAKE2b-256 870e140f4b59c205cf0626fee8a41cfe1c71b6b6b5136449b41f4e8d8d519ecf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 299ad1b2ca5e68dc903c3fe5b4ee4133399c076c85be9d485764c998d7b864ae
MD5 a8312b4327150381cf713180c71aafe3
BLAKE2b-256 e950d1cdc08db2ad44bd19e736d551632456684f46486b10d89159a5b216c0ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f445299218a993c9fb3587c1b0e109f7412475d8438d67ffa161ee394de4015c
MD5 e1ad8345417f94aeaa49937f87403703
BLAKE2b-256 70e437fdcaea89ae6adef8efda9c42cf56d36b36ca6b5478257ea3f80c9844da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a5f1d77ef9b3978263217a30e1bd2624f3355090ead45fc80dd1dd9ea68e50c
MD5 0bf56c69fb410d20016c1509094f9cae
BLAKE2b-256 f392981b53c6b6291f4086353d64a27c0538d112f508865668b92d447b52f38a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 401f6ddc6113417106046094a91cd37aef775d3b013f66f36d9fc15e082f97a3
MD5 a2145a214ac65498f0bc4258e6a24624
BLAKE2b-256 5a930acb4fcd55e0557cc3aaf4676f5989f42ec43f797d13ca1d5da61f98723b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 499b00c4b81f16bf0143867ad4311ee54d596961dfbfe45c7c18336926711b15
MD5 c6664af2159305ffd0343518b5db5b42
BLAKE2b-256 89f0eb47187b87c8f0e1b2c2296aa3c491e13ab8fcf15dadf05a5ab71c44521f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 08163ae5730aed88ea468ff8636650d317c6703ab55dd3259112b99fd3e5bd76
MD5 e3174b6e680e8981d28eb069e8231157
BLAKE2b-256 09f4a3c4393c6ec5c8051be922442c45f695da36b01902bc1d42fd3553482ce8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c25276914bd5b1c1f80feb041c90ab5093bd71752ee675a541b85a325eb1cd6
MD5 689c8861cc283eb6a588f978fba8f64e
BLAKE2b-256 4a3e586b55cf28525fcc58328e983dd67fe6cd6d9987f1b86abf597fed1f2de8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7a308d01d24f37bb990cef5e87e3b5811ef89d24e1c81ead6f380326e5b63dbb
MD5 28787ba58b5a99d18dd7876665493167
BLAKE2b-256 9e9c76a98455df340c66504db60d2d77363ff5853346fcc09a83fca08bb2512d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5eb776d90350b43a1d7b9f99755e58f47d4e0d2d7f6667719f013e37be375d80
MD5 bffac1f554c7b0d8341bc8cd78d4f6e3
BLAKE2b-256 8ca882cff6df22afc84abca04d632a1415c4c9b2cf67adcbdf015707ea40b9cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 be485de57b0374d8d8fbcb4aceb185cd6f700c75b7aae2695d736fdf2fa3fea2
MD5 ec978e0a61c0c3f93930b80069a0892a
BLAKE2b-256 379734053d55af310469ccf770d3adaa5ffd33d0746b975fff92a6e73f1b5d1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c59fdef8ca2e37c250b8ca563909b9daeaf1b51ba2f595767cb026816852ef56
MD5 f826a51b6117bcfbfe4f4cfbcc13c875
BLAKE2b-256 014c6f053da5b799990db4f0d8dc5e5283c76b711ac0fe5f8a643d7b8dc69af5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e82a92580fba411566c55f092100926508a52388a77b13c753fea8f453efcc1b
MD5 b7150a7bf1e5bc07747da8c102b62c06
BLAKE2b-256 0ad2df7fa5c9b60b85ad2a5ce4ec6de14ae3644305c3ea90156e29edc53d87bc

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