Skip to main content

Tools from the Attosecond science group at the Max Planck Institute of Quantum Optics

Project description

Attoworld

DOI

Tools from the Attosecond science group at the Max Planck Institute of Quantum Optics, a.k.a. Attoworld

We are still in the building phase. Things may change, and haven't been validated; use at your own risk!

Documentation available here!

Structure

The module has several submodules to keep it organized:

  • data: classes and functions for handling the various data formats used across the labs
  • numeric: numerical tools
  • personal: a module where we can add our own functions that might not be of general interest, but are still good to have available to we can easily share work
  • plot: functions for plotting with a consistent style
  • wave: functions for processing waveforms and pulses
  • spectrum: functions for processing spectra
  • attoworld_rs: A place to put Rust code with a Python interface for cases where it's particularly important that the program be fast and correct.

Contributing

Code guidelines

The goal of this module is to gather the python programming work that we do, which maybe others in the group or the community at large could benefit from, into a module that we can easily add to our projects. This is easier if we follow some guidelines for best practices:

  • Use docstrings so that people know how to use your functions.
  • Comment code enough that it's understandable. It's possible that you write in a "self documenting" way, which is fine, but if you're doing something fancy and non-obvious, put in a note
  • If there's a function or class that you think others could benefit from, absolutely feel free to add it to the main modules. If you think you are likely the only one who will use something, you can also add a submodule to the attoworld.personal namespace. This makes it easier to share files with others!
  • If you're importing libraries, check and see if they're listed in the dependencies section of pyproject.toml - put them in if they're not there. This will help make sure that "pip install attoworld" will work out of the box.

Working with git and Github

I know a lot of you aren't familiar with git - it's incredibly powerful and useful, but has a learning curve. A lot of code editors have tools built-in for working with git, and these will do most of the work for you. However, it's important to set yourself up properly if you want to add code to the main repository with minimal difficulty.

Forking the repo and getting a local working copy

When you add or edit code here, it'll take place through a "pull request" (PR). This means that those of us maintaining the main repository have a chance to review and test changes before they're made, and that you can freely edit your version, using git for tracking changes, without affecting everyone else. Your edits will take place in what's called a fork. To create one, just click the "Fork" button at the top of this page. You'll have a chance to give it whatever name you like.

Once you have your fork, it will be located at https://github.com/your_username/your_fork_name. You can download this and start working with it using git from the command line:

git clone https://github.com/your_username/your_fork_name

Now that you have your fork on your computer, you can work with it as you wish.

Making a PR

Once you've made your changes, to add them to the main repo, go to Github and make a pull request.

After your PR

Once your PR has been merged, it's a good idea to clean up your fork and synchronize with the main repo. Before you add new code, do this from the command line:

git remote add upstream https://github.com/NickKarpowicz/Attoworld
git fetch upstream
git checkout main
git reset --hard upstream/main
git push origin main --force
git fetch upstream --prune

Do this before you start a new wave of edits; it ensures that what you write is going to be compatible with the up-to-date version of the repo.

Developing locally

To work with the repo, i.e. if you want to add functions and test them cleanly, here's how you can build and install it in a local virtual environment.

First, you should have Maturin installed (e.g. pipx install maturin). This is the build system used, which converts the repository into a usuable python module, and can install it for you.

Now, set up a virtual environment. Navigate to wherever you want to create it and enter

python -m venv .venv

This will create a virtual environment in a folder named ".venv" (the dot at the front makes it hidden). You can enable this environment with

Linux/Mac:

source .venv/bin/activate

Windows:

.venv\Scripts\activate.bat

(or ..venv\Scripts\Activate.ps1 in PowerShell).

Once your virtual environment is activated, you can build and install the package. This step is easy:

maturin develop

If it goes without errors, you'll have your working version of the package installed in a your virtual environment and can test with it. You will just have to run "maturin develop" once such that the compiled library is available, and now you can work. Changes made to the python code will affect the python module in the virtual environment.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

attoworld-2026.2.6.tar.gz (490.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.2.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2026.2.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

attoworld-2026.2.6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2026.2.6-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

attoworld-2026.2.6-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ i686

attoworld-2026.2.6-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

attoworld-2026.2.6-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

attoworld-2026.2.6-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows x86-64

attoworld-2026.2.6-cp314-cp314-win32.whl (817.2 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

attoworld-2026.2.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

attoworld-2026.2.6-cp313-cp313-win_amd64.whl (999.3 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

attoworld-2026.2.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

attoworld-2026.2.6-cp312-cp312-win_amd64.whl (999.6 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

attoworld-2026.2.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

attoworld-2026.2.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

attoworld-2026.2.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

attoworld-2026.2.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

attoworld-2026.2.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

attoworld-2026.2.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

attoworld-2026.2.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

attoworld-2026.2.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

attoworld-2026.2.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file attoworld-2026.2.6.tar.gz.

File metadata

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

File hashes

Hashes for attoworld-2026.2.6.tar.gz
Algorithm Hash digest
SHA256 245137dcfe2ec3f28cda79db9ec1f9a11616712eb40d4cd84effeb0ea3764cb3
MD5 351078f4d4ebbdfef2d4e18c18e7453e
BLAKE2b-256 af5093242982f9bf026f832f8ccbd14d4432ef93cf2fd0b5e81ccdf262dd766e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5c61fe65e4e5342cd1a9aaaf59d0de4795346009e7d9a0bc595cd75b71deafb1
MD5 ebd3090f86e19d86770bddfb67dea4f6
BLAKE2b-256 8aff514ecce1ef7386c0df541634f51c43951ca1050fe193c6b6302948e24f92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c73131c622eac875f6a418c15ee5b61ed76ac1eee769cebab41d4bfa89f348f4
MD5 bd75778b08a05623bece52dc6fa703d4
BLAKE2b-256 4e7ad91d98fe8912b640f146be98d6727a0554fc3c3f62d638d280a94aae7eee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bdeaa160b5877ca3e7ec6755d99da06c90ed2967e7e91e1cc1e3ff4ffb623648
MD5 fcdd4ebe6919027213f4890e7f868883
BLAKE2b-256 f3600895ed904203a2523c9ad2167f6ea3f022c3f63c9a6963d3a45cd986973f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f0308502e7ff09067b83fd81e9280db7ccd48a7688aaa7e9feca72568cf14342
MD5 48432e3242471a35b75791f62b101bd3
BLAKE2b-256 24f28e1303ee6a5a20116ed8f17a1d455a6d212c28a7b5bc758fd58fded81dc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 415d2ef297143409d5a898e03778daa620d82f31e863e0a87b23c5878a430dc5
MD5 587287eb3287440378ea94104bf5e986
BLAKE2b-256 cae42fe62a64c9bf028def9e579ae4dea25bc49421c51052c08a48d14dead3ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 563c3ab61f09673b4f6cde80aa1322e5890d23047d6b90676c0284d623aa0449
MD5 7dad8e1d3b7a59672e721f4863eeb23b
BLAKE2b-256 fb8bca8ca191d4420aac90f1e8c2eba2788d78ebb014658b6e22c32a671f9294

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4a8a6cea0667047cef48deaba3b11ba9571d28b8e55760e789b7bdc246ad1752
MD5 2c0a6250d5dfd1cd89b5b88d77c6d603
BLAKE2b-256 125b889803b63ec6daec2ab4e1afe6fb864943eb63b47eb637e7da78729f42e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8850a0b28bb942726b48e6e91742102c71b8a37b27cadc46a28b2177ed55ab54
MD5 8e65e766519fd60d4cd7b4146c803867
BLAKE2b-256 1105418732d0aa346571520ce88d89e209cf626b67fc9a6bd1fa0f910e29abb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ba8c844f3766a520675384f97a76c362afa533ccd24d5d83ac415c8f57f4f24e
MD5 aee40ec4bf92eebe8378b82e71a99519
BLAKE2b-256 3587874da9734819827ea23ef3724fa62f937bf898d625bf32ff08170e3be42b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c17d597c20404d5955748997242e6566a99838000ccfb2c36f0b15aa6b8d6c23
MD5 f988bc6c984c05163dc3913682a6cd25
BLAKE2b-256 3809a8b1a9883e941fdf489ed52aced6a443d6bd66a767217b91f940e23a6188

See more details on using hashes here.

File details

Details for the file attoworld-2026.2.6-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 474ce702b0a91b261dd893cde5679d463bc88bf625be9491ed68d9d48923a1fc
MD5 ec350846efeb0c049e7f27b7b8d4b0bb
BLAKE2b-256 38f2ca9416f7ff6ab6cb555dcd92489f069e5ab605b57a1b25f664b912d5a2df

See more details on using hashes here.

File details

Details for the file attoworld-2026.2.6-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 617d71a2780ea805402c32a31f8980ba631c1013d1ecac0765bbf0991047f6e7
MD5 851ca3c26c93237ed50214dbc770b136
BLAKE2b-256 90254fc4d6da32d76a9f890813391da5fb81687901c06416aaae99c043ed6b6e

See more details on using hashes here.

File details

Details for the file attoworld-2026.2.6-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27c42a69f835429e1e719abcf98ddcdf473201ea04127c1c62f5a4742551bea0
MD5 b71abd1bbb5ae93d4b25cb9cd017d176
BLAKE2b-256 8d5b352eb44f033f7a05823529238cc5c5b0fff9f8c2661c0eec53fd9655e7ba

See more details on using hashes here.

File details

Details for the file attoworld-2026.2.6-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d0bf2c9a099a6985e5ce65ec6b9630acca16f2a792cfcd70cdf034f514af3570
MD5 30fff915e32ea1badc6807b212be4b3f
BLAKE2b-256 7b7b4b07128394bcb38d1e2ff8c68d435901b366b061f07558d231178392f6b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c7dfa855b6d23fedd4a495c13c09596f6d97d2b86c49f9cbe4948e97b7314f7
MD5 ebe46e4cb3b97373bf0c25a457761193
BLAKE2b-256 5ada6de1a75397f2f261521f793598711f32c3a00f543219edf768df93f14367

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4df75981bc9d766da674b0173779c8b37ecb1062983dac038bbad4f28557629b
MD5 4d4ea195212e60931e3f90568a4c797e
BLAKE2b-256 1db26f731ba3020ed1911493f9e5eeb812302d59a78caaad3ee4cbf7343b9227

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 88e8e5d9b3e41161bc3e869ec3a67207785c2c90ac79ebafbe2c11e50a34d4b3
MD5 cc0d5267689809da553c031e5f30307a
BLAKE2b-256 0fcaf89e2caa9dea351996bfb77913c98e6f4ca5c55230e946779eff8182b52d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd43532e25c9959416c93f8743e003f0b4d3d855da39433aa6adec5feb9b732d
MD5 fbf5548c659d35ca5d5c6077b7f80b40
BLAKE2b-256 7074edd76edc24fc07d42ef14ba15732e347d62783b475db873944ded4bc72e5

See more details on using hashes here.

File details

Details for the file attoworld-2026.2.6-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca69e273fbe242807b3309c0ab2cb732ad9110319adbddaf0d31e59c49c7def1
MD5 bcce00075f7c1854a827f4326e5e7fc0
BLAKE2b-256 6ba047a266d26a7a0603b893d425ad0c5b197740fea5b9497577129f6c40acc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e1cae72307853a8c2858157ad7dad1acb90f93f677c5ed019f98ab1afcfae2c3
MD5 b4129f2e58dfba04eb6509b9443cf4d4
BLAKE2b-256 f1032450d7a27c9ca1d954adfa0a94cfa89ca83e39e055b90f3594dfebd4b647

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 16e5611e9c470856e3c884ef8a5dd5228c7a9268f34971a51e2ea7d62af3e817
MD5 69978a324e287163af0be59f9b64b3c4
BLAKE2b-256 18506eed7633303e25ac781fe6361791fee60b451c44880e590cde09fc5d2435

See more details on using hashes here.

File details

Details for the file attoworld-2026.2.6-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 03f9f47023a51885acafe847d4dd3ee824b2e1b228d4c6da29592d2ca98c7bfa
MD5 48ccc4d6f8baa802ee8fa6286d28ad85
BLAKE2b-256 c41d629a4924137cec70619e821bd38e0ff0800b9dedfea8aab9fe6bcb06fb12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 55002c88655975086e40788728ec622e483240432b00b8e78de3b653fde4e2e5
MD5 bbac6c163f3676b8845e152e9eec11bb
BLAKE2b-256 5260c6d016d5ea4a5ab50d32e66c835c54ba072ebc662efac378bde2da607ee7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 769cc32a124fa0d42ae312f08480bed54503642b7ded79bfbfaea3a3b1eb0f3a
MD5 7903ff84ec348860e223fe99314e9d12
BLAKE2b-256 6e1efdb721c6b426efc27c3e1dc9bc0ff40eee96b95af0602f9f34fb09bd43a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a0cc19e386c741e077a2c432242787903fb4a9b58a22d937749db3ac7c999c43
MD5 e64a076f7cca56aa5f9b849240e39e1c
BLAKE2b-256 d5228a1f4706aa1364bcff2e45915ca3c5483597ec7842e54931abb7beb77001

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c0123b8fbd129e130f0f6f9e971a1f943c911d5da13f86a968dfb380dd971cde
MD5 a2082bb33b8872aefd1b866e4c3dbd76
BLAKE2b-256 97a4a1b4f5d6d6706b24fff7a2339c664aa23dc00abc08f1e9a8dbcf31687631

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d3c6fe4362771518fffed57f30f6a6d6287161f187cc2ae19f70b20287f1666e
MD5 b8c8ff8280ec3e8e8f53845dbd781426
BLAKE2b-256 a6899691304444b4f5b958a9ee589caf46ebe18d7b5bbc1c83f626584cba193a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4b2fd7d63e2a4b10db2cc50f5875c4fbe694bc6003ced537976c910e5927d0c7
MD5 7d047fd22805fb697c4b7bdfe29be683
BLAKE2b-256 0f93129b466c5c2a6a8f032a20abf01d9cb47298cb6b9f8cb478578cddab270e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7ffa26d1c4e1c03e7b96987f31efaf9096fcf2d1a9c55bb081f06b470cf82669
MD5 5704274cd9642b8668149357ba01ae29
BLAKE2b-256 1972e68babd787efbd7117f32a84518f5b2915186292751920d437b20eb140ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 505ebc76d7e17ed8a9a551b68ac39e50e5fc61594cd00635f58ed0197d6b93a0
MD5 a15822d077aad1f02a0c1f163846fe4e
BLAKE2b-256 a56dbd1b776f468f024236903f1805bb0e71b194ca2526afba4e89a474826eb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 37e2dc02073eaa4d84f3b0f6e98559b6a409643fd04281cfa82ef22037c5f7c2
MD5 af1ee3bbc88629c2b9b8363db74f2225
BLAKE2b-256 a0ad4886e8e2929b48cdd7419db6d150de5094a04e3b051888dd135aecc27a67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 144303ceae4fe7c661f3780474ee28daab91b01c3d690430c0074d33b353ac1e
MD5 64457300127318bca7b2c0fdf34dfb2c
BLAKE2b-256 7d299ed45b08c8bdfa9a97d1548ce4edf6394e25eeb5ff88dd9122fd7c4f715a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fd2a4f681cc26ea19ba7dec8df2004ccbb8a4469c8a46a523a5a6db23476e02f
MD5 5492959d1c31487ec2e43e0ace72676d
BLAKE2b-256 a2c6f304afc9c87a48d1175cc1b698444e4bf65ae8831af7f78c44fb4ae1a13b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c0de7da89ba8388188e0953553f86e6f6641610d070d7d9b20c0b5cc70d36e68
MD5 61fb6920538e8fff48d10b12bad520bd
BLAKE2b-256 80e21d65ebd5ddb84d93071f62e2b93224cfe759600d09790b5bb72444c5fe24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e9e4dd0bc03ae975b3fdc8a1c3ba1e94871ed68e9684c8f22ad0b584f823fe0c
MD5 faa6147686cab62561013a0f80411946
BLAKE2b-256 64b11bc8192a8627806644637654393e5fb1775c2f947bdb36dc88277abe5ab5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f3ac5b8de0651647c2bccde1e56c5ec3aab75cb0df64d7d7fb6972c4bac23f1
MD5 e23d0042de557c1100cb9d3bc071fb5e
BLAKE2b-256 72fbff3563f56ecc4ec4485b647d37620e7c5f7554d3676574656a95116e057a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a46f58f36998ee35be553ff778c75418b1e897f7870c19c5c88efae154f87ff9
MD5 0278224582e8d19cef978b430f0db9f2
BLAKE2b-256 b4f476bb58955b0bc2304147a22cc2127d51217d46f0bf3e8551f9fab341314c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 208bfd50414a9bbf3906de982c5b6851c29fbfdce4c4a965f8d7634d4244d2af
MD5 9994fa22c12c68735fedee3d38d497fc
BLAKE2b-256 1adc21ea425fc09fb560cfe83a8af906f22040488f37a92a12e953ab6b31a197

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 09b606ad2b7f95ea9811658eeffd1d3a8f8dde5981f9b181f1c9c1301df41942
MD5 fe0aa7199aec54d4ac568940979ae3ff
BLAKE2b-256 bdd8381367572e44c294918f8062bca923c29e0a1ab1b5f3245c6d661fb80c2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 10d3b63f5453f492a609c57db3de74d25e17669173331cae91d0c9d4e2ea23cf
MD5 9a2c6b20326ee99bf691a08bb111dcdd
BLAKE2b-256 024d56d0122a7ee3366f884ea3c2e7eb60dc6b35445b57f6916e80cd0214ac5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4441a14db57aadde35e1012d1c847e383b5e84edc82292e58e67fba6765b4e37
MD5 8dbc0299689cfe3b35b919c5281bfa29
BLAKE2b-256 f7465fe76fc6adef9203d2a06807990b8f7d9463547434abec12cfb0b7461c8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a4b2cfeef660819e4a8c43b1fecaa45c71676ca50f66c3e14c31a55b7c1d1624
MD5 88da1df875a4a1d2877ff9e45d8a33cd
BLAKE2b-256 f5b057e8858b48f1bc729ec761d3a3e6b9bb3d77415750c0a6de90259e2a2500

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5c088664492a2288a39b595a467a354a2b546ec8faf2b58014064773c9c90811
MD5 5919ae7ffcceb30a05d6d15bdac4f128
BLAKE2b-256 8633b7fa09840e9ec524e1beb859a872159c888b71c15f56ff0cf52a5cb68d6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 808203284d1a26984a4f6a3c609a8d2d4983fa83e16b1204c13816d7d911af6d
MD5 f0618897c968a3d7842107acaa7f842b
BLAKE2b-256 d1ca4818f93bcdb973b3b6fea1491c26767be9e5fc806ed5b71c4145c279be07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fac2b03adccc9ea50037639474006c5fcc9cb62e08c0521aa4c0a26056f634e9
MD5 cd28c02783cca64205f5176521f392ae
BLAKE2b-256 8f087724286f32f988b2297b6fc4573968ae769ca322e672a347b14c656b9699

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 069c75a9173ac23275462b5a543d1676c1af1fa084d0fe35a283528819e6b332
MD5 a086b2d57ff37dcd2f68f8bc815a4b9c
BLAKE2b-256 7e2d7c14833c33a0e6c05f839dab221be9c987022662d1fe0950b8c9875a19af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e3908a076092ce7d19d92742ad9eef97a495d3c9de4c055d7df878d741ba3022
MD5 08268cb2a641fc648ddeddf441f64740
BLAKE2b-256 1974299587bc81fcd456007fca2f94c73890913c5ef895952bcb164f4961799d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f06b78c6354f646428413ece8007809657a9ce041ab3a03ccffabbefe7d305b0
MD5 589243e5594d0e56c3b6932cb3e63975
BLAKE2b-256 7ff760af14d5996855a51234319c379ce47e0b11416c986dae766d2d20c5f934

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bdcfac40552e29bc048191724f149256332e11c3104038d192f60287eba9612c
MD5 450d1bdc1c3d4dfb853af26ee2dbe492
BLAKE2b-256 444f0a0644bf70324a421bc0f2a2e2ea9b680399181e5865b0e4423a4428530a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8320d781d22f3d6bf7e791471f07dd5a6f9d8cfacac26f3d2b409433081ea4b
MD5 76c7903bfc70374696e0168bdf409c58
BLAKE2b-256 d5d3d45ad4cf94b22da8cd1b143212e8e7dcdf1684677881d934832a707b0107

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8bec641834c7eb72e27ba59adc5f9c24d3f85d9f4c9c7e09d1aa706574fb1d69
MD5 d6443eb8b2856c882371434ffa537bb2
BLAKE2b-256 f6de0cfe04112ffb40300e980841c32b565f2007ffaa46b9891e23dfffa607a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 94c934e5f35ae3bdf41c70b9a185bc9de213bddf530f1ca2baa6ba489a647f57
MD5 52877279c9d420490b9fe294195038c0
BLAKE2b-256 412103e360f07d68846f3310f3d30e993502cea6197ea0be389b70ae694424e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6230cfd3b24898e068de6aa8bffb62814d5217e72a7bf00f9c4f29592fb9056d
MD5 2892d7b0e7e1b9a3f235f6abf887d2af
BLAKE2b-256 8454fe9e3d40fda8102885f33d94144f0d2d76e079f80806356d63f492c40d4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 026001c473b02ece18ee7e1a134680123a7462681c8c078340cb5ba248e4ba9e
MD5 50aafdb864095b0dfb7098ec867449fe
BLAKE2b-256 129d116633257649b937668fff5212c9a18ab57cf89f0fb5033e5b3f0474defd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 77c106ddec00e5daec5d0eb6d50cab417be983cd6d9a323744125527c4574d19
MD5 d0515e306a6a7beeba2ae0277c12c0d4
BLAKE2b-256 5882c6df781b2bcba92b58764de26edb998e03e7edce8b4005fb40fad1c6ea62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e4318f5206766465d44fa6b2b6f9c7bc3815f3737b5f641da559e5a7bcb9c236
MD5 ee3c4e54781414b88b18c0f027efbfdc
BLAKE2b-256 0de389cc587e3b5560d9514cbde6178cb2dcaf4ab0803a2c02d9791b1fdd66ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf97801bbf7dd0ce5e16706b2aec32bdd2f90da2492faad1f35cca23d8fce4c9
MD5 f92dd6b03caa4e2dc4fd60ecd0a6b2dd
BLAKE2b-256 d743686ca52ec9a8d7d88eb815f0d6fc51691c52682889a4408718e0120766c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2ffeeaaca974c0c0353523bc5c3829d8778e9c7237d3d441e8ef7ec90558225d
MD5 ae2148b645673fd1d97b0e87710c9ff8
BLAKE2b-256 be0f5febbfdc89b653426d87f91c7bd9c9f82016e23668bb85acde2ee51b02dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6093ccf8ca8a714c5d7e774d25c6c5050f45bd573420b51318733324f0cb2f60
MD5 c7c98f66fc6975c4a9deccd15b1f472f
BLAKE2b-256 2b4854f6d57d7271aea1ced146e9133a444f7f00f7fbb44b56aec145bd9b0bb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8b53a9e69f1b824ccb0fafb798104023b2a60191ec163940b844e9e9547bf21f
MD5 67364d26f0d5500603dc1f841420ff51
BLAKE2b-256 e0ae5aa091ee74515088e3bac73e80451cb0190f8fe1d40d30e95ecce4982d5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1833545ff6c5c4a2273efd6321c873cb145dd5801cde02f01ca6d69a61beef89
MD5 f00119fce051cb8b345fedabb34feafe
BLAKE2b-256 3a6b6ce017abcbca64ec3b0bd27de667d929eee965f975c3754f37d8a31691fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9830213b5ab04e9eaa1794ef15d2040da58be059fad6fa83200caa482ea820c6
MD5 f55e1f577d4ea2a08fbb6c67e9931edb
BLAKE2b-256 81b52d09aa112ca49d209e91311f8594992c5dc9ffbf90219258320f0f891aae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd87c89bcf757bc4d74ba1d5555cb445adf02b7333b13297551f91d4487eedf7
MD5 e0876cf6a30cb3cf0f9c80b189c017e7
BLAKE2b-256 5f2f76cf85b87d17bde51763c02aac18ed98216fa6f7b3a1266fb74a3dd2e6a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9a2ffe97c9e7aaad1c1013d8534eafede7cf9ad9f1c446cfc3e45663b8352a53
MD5 ec59fc33bfdda3339c119786d87bf828
BLAKE2b-256 8b2e2e92bf09abde54ac0e97c2ed0d907c678c8bda91eed90c6e2db4e62ca5cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dea19bb9efbe1ae412175221d3d132ded41d59b3d023465952249492e5bbb216
MD5 b95957d0eb55cb80571b824d9537afcf
BLAKE2b-256 9f52c8ad0bb99441349b2f11823ef534e3fa8254058da2981e9d2b9565755054

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d63ace18a212a7293375dc0e9f0765e35d62a8c886bc2936f4129d932e344888
MD5 ddfcd0a03388defe892e297bf3687c71
BLAKE2b-256 67893435de37c4edad170d24aad51193e60a3f4227290f985cfafd197fc35ff9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4a8e2513f150e9b53a851032bd34b489aa2e75d540bacd8d64f9a9d0da8f1b95
MD5 ef7282de8dee2d19a1cc345e8dbdfafa
BLAKE2b-256 7d99103016934ace64a88fe858e414f389a4a980d275b7ac5d746cb1cfda23cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e84887a49d8dff6d2ddd8da31866638616ea52752ff633c518e21a6e2d3452a1
MD5 cc11f8d12c538218d35647e8aac64152
BLAKE2b-256 dfb8b44897e0735358f13ec3276959c75f353a5de73bb0ffd32c4ea67268a762

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b3023f90f6f8480cb098274034600f6b02b768127ef9e8b1db41d29fc9684f82
MD5 2ed10a32b3431df059c5e1d47a707aae
BLAKE2b-256 ac3cc6949ffcf625434436a2fcd81d97a52b367f3c196af84d35278298828a08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3e3cbb01d9251e2b0e48f7be70f832a806f95a9a7c7f9392b6f694b9ccc1a71
MD5 021ea340eaa7a7b2031b99c7d71d59b4
BLAKE2b-256 ed73663d908cabc5ba10b2d1e7b38b315df78dc78432485910e1c07b17596bcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ddaa99d7faf1a3aedf752d0d9880f142a45edca9a9e4ebeca1d523fdaa8b3be0
MD5 e9928b15c3cb6704320bf502683bf767
BLAKE2b-256 59a4b3b67758e472f8058423d6f30c38133e1b547283fdc9483a394f26256022

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 229825975890c29694c1a37137bf12d811a91ce0e0b0c852d59599d768e1e4e9
MD5 37063a74de69bf4b99033ae0d3eff65f
BLAKE2b-256 cc6b7924df39831601c7a5f06fb3ec8719cff8aca7ea83cb28c77db51ae42358

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e5f512fe68ef5fe0ace2b44cf4b512a0aabc394210bfb198fd532f3c2ec96941
MD5 4bf8db55b38beb6e7441ea4f7d37e4da
BLAKE2b-256 babec1a0b8127ab23928bffd8b8e7e1995a485cc6ca96d11c1ab06c12d5e88cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0b3c5189081aeaa7cf41a22e1ac2ef0492c942033d17a8dd89329be95d7c1d21
MD5 23d2c27c696229c629b2bd07ef5d386b
BLAKE2b-256 7bc1d6c14b1bb92ca52c08bcecf15b23ca0075908fe9bada721bfd39a73ca48c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b961539b58d9f4bc5d05a0686c6de14c28192e4f42d2157abc39de972dbe39cb
MD5 5b342d5e4e593387e63428241e2c4829
BLAKE2b-256 b53a0e9e2630061a1988c1d5eea6dc57e263a87a8649c271c407094b1300cb5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0998be4893673ebac4ab3b533c4c5147bc47aad49cedfefca453731794f6acca
MD5 1f3cd55a6b3408d30b512fb317ca95f1
BLAKE2b-256 a9e50066b8144fd8832d4f019e1d799531b9a64e8733b2ca8a2893a334b46249

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 08c112481c5d67b0e8804efee37231efaff6b2bf970daafd4751c7ade68f9fe9
MD5 9eb071b25569031ff5c63889d8943aa5
BLAKE2b-256 759f5ca2b9042b6acb51d2907b3aae7ed133cbfbb8cb286bce3163af330ae8cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5118a1c046f2c9effae540273a2face16f5f164977c96c0abfa250842cc8754f
MD5 eae8532b68bc3671ea0866883c1cd47a
BLAKE2b-256 98762b85e90e1c3b77f1bde6c5e8435a13cfc6fc01e06930810d6ff0543b6078

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9573ecb664a5ba8503e9cd49c69bf2a8c57f388742efdf528c42961d33219766
MD5 6d10f663bbf148b933a2b53cfbddef0b
BLAKE2b-256 07a3919f2c84f9c5a19b440826584400cd908f9443f2959eed5d2f7e1d495eff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b493ec77157c3e6303bfe0df2f2c1a1a746f3e11c46d23f79770238bcad623f8
MD5 2007e30e95c08841bfcf13754b5e55c3
BLAKE2b-256 2d96353fda8bf117593f3fb977cabda64ee45472eff6cb6d59f92532a3a99dd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c68ca56307062c663ed3bcbdb3fdef7aeeffd20e491c90e08344a3f56c264378
MD5 bde9e6140e69c2620b79d4d18be6e74c
BLAKE2b-256 3ca6e3f7121ddcb217428f14463d54bd3c29d45f11fb2cd759f1dc4360a5a114

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 426e46e18157b4b1b970e81045ff72fccf90e07529484d23761f7743af264938
MD5 262af137841ee8bca61c0f7ccade599e
BLAKE2b-256 3ac89ceb19f4bbceed88e8382b6f433cdd9e13a1164e51ead5d0fa0b74c85492

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d2a344e7a6bba4a402283e2fc20f6187682b09804eb6558726cdbc67cdfe062
MD5 2971a93c50d0b471486874bd45e9c1a4
BLAKE2b-256 1ba4a8d48fb696e226549cd2ac804d7eb07418cfbeef9b2c7976c809491088d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3520edeaabe73e27c53f7b6e3448568faf8faf07b8340d5edb8fa11329f2657e
MD5 f21796b6b85937922b309f53dae77170
BLAKE2b-256 385979a4e8e5524433771203f3850215238840483214b4a0d31072236aa21e05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0b23bedc93b555ede1fda8dac34871dc22c2b04bdf8f7f51cfd992f9f5fab54d
MD5 6ac2285754bbfb32b9d16bed93ffe7aa
BLAKE2b-256 3fe063eee761a7b1a2aadbafcc22d1b6f01079c0d4d33e5b6114458e9aabd4db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4efcffff903a59b47fb9d302baa03cbb8600b6aab3d1f1e0acc86fbc5f642a72
MD5 6a7ef213277abb33c37d303f1c91f07f
BLAKE2b-256 6038e208352bbf5b7236c208247e648c3111b40b66d8f7d3f1380f5b59449d8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 489bacfb5f1ee687e1f4a5999371b4dc66a1905decfbcf382d4e7fdd83237594
MD5 6f4a82052cf2d0220693541f08752216
BLAKE2b-256 1087f31e5bf33637abea191f687d602854d9f8414472a6639c2a2eaf30bdcded

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b141534caf45342310dd7221302734dac7cb11bd57b5218051c7a7b91d0a2682
MD5 9b152129bf3ba7d5dc64cca3062a224c
BLAKE2b-256 730c9f8e9c9348cd1e302bdcf83d3cebfac191c1ddc0ec0d9fdd31ed1fc53788

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 825d588f4563e1e582dea26de978b032075b2379384cdb39c99c8e201976bc17
MD5 0b83d14a6b38ccaa71e4cd1812363991
BLAKE2b-256 9266c3320ac7ada9ce401c9fb3e8b2e34d472c66d92751391078f81dcaf9caf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 40f5d1d7aa4c17b27aee373a9aa324c6b06b1aa1f6d253fe4974d1e6f41d5d39
MD5 778c2c37a96ade82e441ae14bf17bb72
BLAKE2b-256 b8f4fdb0295601dbb1ed348a8d48657f53e23d2d1c487148e55ab487e8c7017a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bc682864d349e69b6383d651b7785c4094006450cdc2dbd38dd19b1db0c7b137
MD5 2667192a0bf56e43b521c7ee32cf53ad
BLAKE2b-256 37f42a2910d9138ed41751b1933e2bd484dbe4e3d24291f99726aca6930bbce6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 53187798771b3403637d5e9ba529c83661a51e6c7c9e952432f016d1d6c94ebb
MD5 99a247a3a469298335e124a79d808241
BLAKE2b-256 4cdbbd2bf38859dbd05213078e398a2c96e5f91ef20f4e012dbddd046318b255

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97c201bb7dadb6149b85eb547bab1c38e44e12d0e80f1c4abad7977c1cd77d70
MD5 7d0ee62cbc48638624e1f35fd47e3b83
BLAKE2b-256 6096e4b181ba010a9df67df57957299062c09d8edcf07b1f48c23007a2005bea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e53988018b6fe8b9767874532b4684f3b42403ab915f000c20300422a10b4863
MD5 e1ff1d081c79e629db1bfaf2b647a63b
BLAKE2b-256 44648bddb75a3b7b5fe232d7e12fe2f626eafcaf2a76d8cbacb2c9dfdedda357

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8c53a7c4e14126e084fd4e47bf4938feeb74edd76c279437783525b82cb98b99
MD5 f1cbdc71f747e15eb7c11ecc9d058923
BLAKE2b-256 ab86b35d7007c20c348dc49fa1acdbbf022a72ff49b67d4e11627fc771d2e257

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6abbde63dc041f40a3a60d6267f9b27a16e05186c30047b11a4824fe23721d52
MD5 a09d6633d49a126762dd0c3ba905c25b
BLAKE2b-256 c8d232153503dd15ad780a3ba8826e35f93c3f06f97cd48a1a9e8097736f79e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eaed347cf7944cac0fca50bf578e49674717b873e56658477875df58d646ae57
MD5 07dca6b48fe7fee546e6e2d35cb0ebde
BLAKE2b-256 604ab98ae47141298f07e0da51ad72150cad13ff7aa57560c42be03ddb585a5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c8861945bd241ebd25be2cb92218b2dfe4115c8aa2e13a652d0db3910ce27f0
MD5 ad37e73857687a655e3a81c8e6254edf
BLAKE2b-256 ee03f41af9731652be614a557203774175ac04f66aa23fde9e8a99dd69ee1154

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c7b2f0343824253b6fcba794919910501819ef8b1f1b3530459afc8b5c599ba5
MD5 c23688825c7017c27a5597f9ebfdea14
BLAKE2b-256 09053c4696a83ec9f3dacdc21cea84915b32d3c120332cc291b11b335b5e49e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e7ce855d6549ff09f7910b348b8f14969819a264c4463dcb64c313cd8744bf67
MD5 74d65ee80768d09c3064393b5b5331b1
BLAKE2b-256 b49c423bc889652c539f64d7dfb915cedd7a7841260c42730e3c0712ab7d8137

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f8a7a04d247d300aa2d9965e3f5fc6fc01b783c160412dbc471cfc2f96eefd14
MD5 f017aefb99b0a0ebcf7a7ed37a489661
BLAKE2b-256 a06522528cb4073d681c83ba50c65557e5121491bbde00e48eea661a8bd842de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 286b2214b7e66d10914c8469f3f5646d88fcf37345ab888318cf80b3c7129e13
MD5 5004f16529f1ea3edc5220b84e6b9af9
BLAKE2b-256 83f74c7b55b4c72fa30add36da65ee54600b602294eeb86555f90872379ac266

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2a14d90848839bb3fa2f50c299f9cbb987c4b87abd912cf28f8554cb61b7d077
MD5 f2f6016f2f9eac59c424f4bd7d3f294d
BLAKE2b-256 40d0108a108d35cc104c0e33c474f4a73e40709e5818e52bf92e5a9a42598274

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fde1e42317e569543f60ab3d0f54853ca5ce6cf20789dd8a0674623b1ac5d1f7
MD5 2c81446de813262755b50c436a0d5f83
BLAKE2b-256 da3d0f2a0422802a72a8454eb9875b0e8ce4b1a505cb11eefde95840b4d05f6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 857fac9a0eb4f0912462a3b3560159396cb95cfcf9024e55fc47d766c5597939
MD5 7419e9c76f468c2971bdd6d5f0984aea
BLAKE2b-256 34a23b94cb53a5489fccde941cfb8c776d794f304edc0601f26d9bbb57973be7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d6d16a42c27f4f7215e481251c5e64319c666595c90d52740995acbfd9d8c57b
MD5 12f44a19f65bb8a32bc6f760776fc629
BLAKE2b-256 d85c9946fcbf8c53ed1f37058b93c7e42b4a2762445d7b307727ffe3a0c2682f

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