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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows x86-64

attoworld-2026.2-cp314-cp314-win32.whl (822.7 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for attoworld-2026.2.tar.gz
Algorithm Hash digest
SHA256 4d44a06bc25eafc83fc2a934e9899b4add40da2e131ec51e16ba4ff1502061e1
MD5 733038b9c87bac131b4cbcea9c01a3c2
BLAKE2b-256 9ae93737d94a28c3415ffc5725dcfb564d3676a17d1e1b567c60400334322f6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 245c5d4785aeff7fc80a662d92f575b03f98813bd71b89abc0acb78f5c6315f2
MD5 5df0006278f2463621a509870fb54f7b
BLAKE2b-256 738f3b530eecc92157b6988360f61fd4cc860d2c627975c04235890348394862

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aaccfd67855dc5f0cc68d025495c4878d658bae113cfd405ad963b930ec5bc6e
MD5 1411ee0ff146382e2680060d9a881ff2
BLAKE2b-256 1c50d845bb4c3b63fe6b1aa85e310eb6bf141370875167a55af6ffb2b23082ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c89cce28c4f60e37a078a689886d44d65dd2e27fca646b930b498b17ac023cee
MD5 b4fc9ecfeaaddd82c17aedcdce93f99b
BLAKE2b-256 5bb463d985c5731103ecc82925a59fe51735de7423c3de95780aced63668f502

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c1632c8cc55e6551cfcd1035e95975e412ad4a866c8c0967f9a4ebd81ec69c90
MD5 ae929b7e2bb319f61e80094672b54fd1
BLAKE2b-256 f06839c892b5b4bfccf9430874a3770182e0239e11f86e47e2a91e9c65da10d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 56556ab23db5b1efdf6c81e08fe9059580e8f5de0d404c64caaf0f8cfbb3299d
MD5 e87004bc1152206deed6d9bb243d5918
BLAKE2b-256 c06cf1908dad8669d07e84f6e216c2bbf24dc45695afb3d7b615a155d7321b05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9c599c91d6f73e7c47b39559cea764a3459fa6be5f9086f6fdcd2b3abbeeac40
MD5 4965caf990a3536e0ac05bc11eb17904
BLAKE2b-256 d37acc6fedcbad0164fbf26d7b79795aab49a77f64d18b506f73c8ed79d4ab43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b76eff0ebfafce8e6bccc547a9c19aa8a1d5e2a779326ac5adecd77e5c12efe2
MD5 99e5405f742f875cc6856aedb2f9756a
BLAKE2b-256 ca5f114b257b94a24107fbeadb07de3671e9b8b6c1cc814d04e442f18629ae75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1c598419ec705413f67d404ead4108092890538835fa6a938c7a6d043b44307e
MD5 82f8bfe18d22d099bac817eaddd4de6c
BLAKE2b-256 47a612266cddd75d87d5f888614cf2ef9a77ca7532b3f01b2383d3bd93fe0374

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ca9bff9907aa21650d74eed6cff46aeb80ae23459949fb4628694e79404b82f5
MD5 04cb82e7027c4b7eb098d25cdc48caf6
BLAKE2b-256 005c6acb1ccaec6856841dcf19cbd045e1e1731e798450674dc9c19d4246a19e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c255722149c83903e017b527d7b4705259fd09e5afd511183391cb8ce2ba36e
MD5 fa469b5745c03567dd438575ca02088a
BLAKE2b-256 bfb919b375984a6cbcd980f08468e20d4e1d9ff8b084ddadf583ac206bead91a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4748193969ba5110aed9aa6f4dc623281284bbf4661f95d850cd1d66e20b6a98
MD5 a67d93c2fb7fdb7eaa59e10e41cca5eb
BLAKE2b-256 741d69c0737c6d0e4d155b2acef294653f2520ebceb391649edbfa3f5f6a2570

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 738ad15f8a95c52d7b9838fb1863fbf137b6eeb6e9f7f50d794c79e9e7c17c6a
MD5 45af318a23fd0ecf84b967e8ee360474
BLAKE2b-256 bff0ad45abda97492d9121e0f86ceacbfed9929c3db3ded5911a0f5645e636bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 17050531b268b5baeec772704fdd12c887d02abdc30842801def1fb8283f5b14
MD5 4c4ae3f5545ab4ddb1c2e59b1339fc6e
BLAKE2b-256 65b805b8a1e313169beb1115e9ee819e424560a7b2017624d7c9a59dcf67a8da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 61fa1c7dda51b15e3f38d9f2a1d9d696316f4ab4141520e8e57a70f00446c8cf
MD5 02676ed50a3d54234ece94da143aca54
BLAKE2b-256 3e88a1875d285da643d0dfc9bade4632f13c2d482a89d6a4e916ff9b3f338530

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 35562a8c07087474ffd77ad769127508e6e761e2a1d3935640ccac725185351e
MD5 dd16f7dbd3a871660d0fce63417e6b31
BLAKE2b-256 d9b4e2fc38772caa95f30d1e3eecf0365174e77b96c54625cd4456538390ecf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 66f3c81453673c12690ddfbad389126f519f145bc05aed4ebad1dfd6eb2139a0
MD5 b2959242f754d3b2111ed3125635f3dc
BLAKE2b-256 c20f61918a193aa8ce2d66ca121918163a3b4ae2db9bf195d7f5c2f363755d44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7a5a0bb56039849af6eda6e5ca3f7b524273c3ad3afc6b4e150bd666062df736
MD5 f32741ceff945b92bb8d06c37c103296
BLAKE2b-256 a243cae8621cad8fb0b8cd683ed8151e72c0303e5874703ea9b45c5f8e94bc2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb03834844d81c615f35a8357002ab72d35e4ae8024e08bddd256cc001ce5984
MD5 94de6f054e4008e1782c1d4171e666dc
BLAKE2b-256 b5d9496d92a5cade96ffd9c3c2d31916722aed6c38dee783ac5599b917e4af16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 64b3c91702dce3d0ba4ffdf59f81c792fa5c7fab86515c36006b2bb171b1a821
MD5 803575dfbcaa6fd3c8890ae100ad59c7
BLAKE2b-256 5c08b2c80d8f5537e8fb59bc89f3e22b85031c80eb72b4f7270501f72ae3c93a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9bce7683639b0b724f73107a083991c21321caa144c965c9a7144fe53e14bbab
MD5 3549b738b8fabbcfac8c0de9c9192c76
BLAKE2b-256 030b5ec952fb7699fea7aca5981b7353b182fa7db1de8bcfdf5e395c933a1e25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a395abf99ada19de9f0326780a9ee6699a2358d9856f2819c2353ced601fb447
MD5 0f082b32ef0e43b3341f837dd1adcf36
BLAKE2b-256 0daf111c64a369720ca2568288dc06c8ad8fa32c1915ce299dc0a17a84e7b8fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 71e47f691a33ebc2ceca328d0f02e152e6eea3f0fdd165c780504f0455f3dd32
MD5 89e6be00eca21e57553111d29acf683b
BLAKE2b-256 87251fc8c034d454581d90574f7a8dda435e186c39c8266d850ef50679745219

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7ae25e35e1516c40a545df97d34c8dc06e392712d200ccb73bcefa3dc287e047
MD5 157a52afd248bb672822b7edfbececb8
BLAKE2b-256 e94b6df4c279f6e389223c4ca8385b06febc29307f2009c590e647bd71341a79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 254247d4f068d338586627bfd7694668d37ab731a299a63252fef4dce5b137c7
MD5 e92c743be92109b010e9abd88f7e5a4e
BLAKE2b-256 ab522bcc28cec8512fd0690edb2b2ebaf94fb7dfcd0bbbb28e6fbc2eb1cacc46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 80343312aa3f096da1dbc201a06c7992818f3342d938d25e5601c4d34a27233e
MD5 8f3c37772ac59a9b884cc8a9929b3a42
BLAKE2b-256 7dc26a6898934a0420ffe2e966610a0a19c461bc63d8b5651c018e7ec0a5b0ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5024cf112ec3a0514f697fe3dca8b0825728459094c1d4c41cd8ad1e0a7c38eb
MD5 a62bdc72d0fde5af7a3bb8cb39145345
BLAKE2b-256 bdcca2ce581c2c203ac35064aa3011395017cef1db028c8ed5259c58f968d01e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0be824353e4b439538420b0aaaf5d7e4e850166aabc4d32151a33fe2108dc802
MD5 0f29b7c280f4283bf63452c14b915047
BLAKE2b-256 c0fc2b9664b83727e055dedadd89e1fa9664737bee1ad7dd5a4ac323c9c90f12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 213a234d7a8917004d3cc9e9e6b078d84d7676867130ce98eef5261e7bdd5b36
MD5 aae04e3386428e4fc8209e10966f456a
BLAKE2b-256 6333955cf33839f4f7939778715bd7fbce5ca5d6af8a9d9c2024bda33f7663b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 efe6b262a310b6815933a5bb957c063a2843831ca85f0c229a2b1d64f46c6183
MD5 60c3eeb22e5c71a3efb1ce53b14c6633
BLAKE2b-256 4b3eb677456f0788e159f0fce88ed1eb3eedf4e1a3030223b66ed963c29efbba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1a94e883a6781d949aa0dbb62be54154226439e5f5d707e03cde6dd89c16e04a
MD5 b4ae1237194d0c16812683f03db1e3eb
BLAKE2b-256 2369fe2ec589aeb6fbced61b29455f0a4c3db7774a42f753e747b4f9c868c21b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 42e718eae0284aa148f712b190a7407d5b3a72eb5265ed1ac36ad189d9339645
MD5 8cd66320d37647c17a19a3d8aa1a825c
BLAKE2b-256 8f240abc958cb66594721fac018bb88529031b0e74541f596b4c970072541da7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 46a3bf204073df12970c105b7a01510df985fb2e357341790604af844341e40b
MD5 03480211e16bf62f0c7da4c9fffc1041
BLAKE2b-256 ec17969426811c33848d80e8eb395bee055d038f371f3fdef7fd99d167df8263

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c5aa13bfe30a12ba42339d7d5a5a89eb7e28e81cb46f968fdedafdf3dc3e153d
MD5 c25073b3bbbc05e62eb40079cb320f57
BLAKE2b-256 97b2d7cebff0b084fa43c3518416fd115fd596cc89c3bf6df3dc46c8e7d2c2b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d5a171c0c804e25dcfd1ed54131e07b14f42900c0072151aff69d438030be636
MD5 b19cb725e7f69b0488267d1c45ec51e0
BLAKE2b-256 92e64f431ed56f41b7ed12b2a747bb3d5d57953f37fdac93025e8bb82c82fc84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 31d8ba9d90dd5c9b580d3ed4b92360d4d5f361e9c689338a501c2d47bf7c3e1f
MD5 5c49588d0af55ec9d3fa3a78810e1a1c
BLAKE2b-256 4bb6bc4d76bcc6faa6e99bf2fe6c042772ae0ae612bb6941c5c21d082a03ac96

See more details on using hashes here.

File details

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

File metadata

  • Download URL: attoworld-2026.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 822.7 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for attoworld-2026.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7343b4d36a6b1d8b9995e52c7ec9f8bc66cc7a6cc840022e939784d5040d3144
MD5 f974f77681d86f3ee69633d03d624032
BLAKE2b-256 c11acedb0e2196dc10b17345012d91a66b37c8643df094c3fbcbe2216aef3ad6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cbac1dfc46d86b0b83a15145316888f6a86d4ae12cccaaa15c2aa7988c5de864
MD5 329db59d0b5fc489763bf52856fd0362
BLAKE2b-256 392773c583354972bab3cb9d6a645e7894c89af905737431878319cf24d6a8ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f5a82e7480d74a550da158fc02ffb93d96c05683b734b19a89e2ddb49d4255c0
MD5 cd2ac8c9ab44e3e5f270365fc408960a
BLAKE2b-256 c9bccbc71ca5f313b3cd664d98f0ad4feafdcf0ba684fc72ec87ffcdf18246d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 be822b15c4d53c9daa8c0383680c516e800ec245606ca31369ee50ad2b62069d
MD5 186e2bcbd947deed205959a4009e809c
BLAKE2b-256 8334afbc94313a555e8c71e446b8763a1fea72aca07ed71ab34eb43b8c4ff552

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 57622c677cef60517f0aa993cdd7708e2eb9b656783ccdaeb7025b42f7c30ce0
MD5 e779ef0871e03f36afef100b3891b172
BLAKE2b-256 baf0647a4a3b32c6092ff545fd8d69ff4cf095caeea0e4b7607600ddd1ebc5b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9c5f1d9105ffccbbd6e0acbf0bf6ee1cf2fa413ca62d712fe19622841eb78eec
MD5 0e90b6e0e21995732136d0b75fecc6e1
BLAKE2b-256 2dda6a7f21a94c3db48ebe4b869abba573f70ca1660a7f9b2f345e0a3db499c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b8bdab3d0daadbcc7e1740e7522919e4e172fac87978146a9cb7bb9dc0182ba2
MD5 ea764004f8cca3adfa0f8d3d82fa8b5e
BLAKE2b-256 6591f6d7f8044d2b031d0f1a3e85a9681565b59d1c1cc3429ba9f22fa270fab7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ad1a2b2f97f1aff75e0a38902693b2ea0f1749da2e1e8aff9c27f45d78bd6046
MD5 beb58c52335c48d4ff31362e4601a6d5
BLAKE2b-256 85fbdf7c044538aa2fa1212431514714048ca4f955907d01ffd410acc9205632

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 32aea0e26ad31b05c8df42acae1cb5cea1d82197d7a9c34563685d8abe0af32e
MD5 41ced213f4f366ea094873901b86cec3
BLAKE2b-256 13c2e847bc3cc78df8e77dad5d7ca95cec8b1ce2fe0b7eab9c77aa3c666527e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 10ae707c7730412a623531a0ae73ca6634fd57aa11ba41844b628e89f782a48a
MD5 cb0a7e0da9d143d87d47935443836b7d
BLAKE2b-256 835f7fd7f06d616c081df34aa51aa3f5ca5e6b375f8e556151b0ec3a16126a15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b00ae9a2600c123fac1b62a990d8fcf2c6160c6a3bbf955add4937544935045
MD5 f2d6c07e70fda2d1d8d57799c1d892ce
BLAKE2b-256 c29246aaa34b8774d21418a1e64b6fe933f9c4bc0402f56129c163fce149c903

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa42e02113ddb790d1d88dd8f1688dbe397a5bd319122ba205bf90811f1d0717
MD5 4f23b3547ee55402c5b45bccd12c73ed
BLAKE2b-256 2055d70795ca12a6827e475fe2a3d767447ba1a6fe42eb82cf38b2427efc5036

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a2f36388bf46f4621e4047090350a5a6fed5f3b99bc64ae2e169f587cb6982bb
MD5 60edae95232ae3ff6a15c4280a0e6a2f
BLAKE2b-256 27fb3531d07192d9c1891bb982280f6050df86decbc3cd683d0953e76d00790a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed4a010350a702e7ae8901b9e997d0e6b739c589eedeb495082c092087a39b74
MD5 07a181ba4148f3121de95c68bc925427
BLAKE2b-256 ef15fbbb57c5225132eb21b5504446bb565946c665dc4f1547c84d44818e50dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 49edfdf508f5b4b1d701b5676b96422e516edb80fbbf68a90347db1339db2fa9
MD5 332c41d06d6be2e21c420f9a527baf87
BLAKE2b-256 f9c7abb74a6cef827b8c15ecee0659e725e6c521a56308832e7c1fdea38ed28d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 213d36cdc4b0a9eb9b67597417bad83984f05f77c7328240cf00de997d3eff07
MD5 a22ff8bcd00a47d61dab0edb57c568dc
BLAKE2b-256 22f20d1066037afc9fa40b96c6d95cc38c3b70789a9d475742766aff23c23054

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 04dc763103d5ad8a910da205084b07e6fe9f654f9102b6c179e06fa37218b51b
MD5 82f4d6f76c42cb3a14abce0d20705cad
BLAKE2b-256 b931cb09b4a457abcdaa3161c18c926df3502008ac1922ad6bfd8090bacd3681

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 99534208cced98c76dbdeaa8a42c657890f0c0baa94cd7f49b388a26ca87656a
MD5 52d86560eb879a4f4edf56636ffbc34a
BLAKE2b-256 7cb61634858902de5d3bdd72e09a9b7f8a64e21767ae83ed39775ed638600310

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 98cdf38f519e238dce5601872a605c6faaeef55a3863fefdb9ce09ce0f9b8584
MD5 ca21c81769a97d496631ffe6eece2f8a
BLAKE2b-256 c5aa9b8cb9f43f57141ef9b9fb71967df437ab58d72e88dc8a3a758e694cc4f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1e59453323afcf27a206d6c3bd26a267a5dcb0417214b2d2dfe57b2d5b2ea300
MD5 912c5005b62e04350d5a673475789a42
BLAKE2b-256 efa36d5b3bdee8d006bb71bbaec455764640f5f77ebdaba89e63781be8540669

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 21c0621af4d864c711352be6541a3aa7ac67c971b0af5cb9df417aa6bcd9677a
MD5 b623304eab2985e7faab3932003cd16a
BLAKE2b-256 05c0c41a9f3b9631f6c561d0048697136a72d9009d7bd095e1289f8b7cb4c879

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6520954bf324fe4979121a2741e1bb83b2579fd10766025f8efdeb30d9bb46a6
MD5 5d0883ab2db69ac49e03c9df183d1068
BLAKE2b-256 ce2170153aed67619f266093f7ba6393723d093ba5dba4123dd932cdc1ea4aac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab9564e90b547c7de6a99c60e714400c8e03c8f23de3ebb3ba4ec93059ffe045
MD5 f32ad09a9ff4b726750db0dead79d576
BLAKE2b-256 bb6a9c319e3f3aff1c4142c8c48c8bf700f3cca7354819c043956a6018fc8913

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e3c44a82179b12a3b0f57d3a4ab2d5fb6dbf3aa6e368b3a7589e19243e35aaef
MD5 4f302702bd14b5a713c24076ec3bc12e
BLAKE2b-256 2ddfc89c1c390615f7c97ed7053e75710110acefc42a83685e8b945d941613ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e6f252bc4aa123299d4f42be035d3daaaac919e8071b0b5165ad4ba41add87b4
MD5 b7ae03ce3f1e66c6e7f4e1fb1ac7522d
BLAKE2b-256 40d400a2342705a5b9193d0b1ef5dbab7502948b58ed1dde78bc2a721436c642

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 49a05c1b991be391de079e4fdbdc8ff712910c793ebf3cb7ee540ad4872e369d
MD5 f36c3199727a7d3cc67a31f5f70f9015
BLAKE2b-256 f0f131a9d3aa331ed25ed1ddb568f01ea45a2308d7293be68444e983969d0a34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a7aff27ff5abe86e05eed78914077cdc7150a441912f806ec4c33edea1551d0
MD5 0e6966bac41249cc5b6d7eb24550577b
BLAKE2b-256 eb958fdfde0b49192daebc2b8c5f27261f437846e0a68d1781f42701d85d3767

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d8d0790797dc815567d250e2e198d53d66e7396ff0ea596d236d12f85734ae99
MD5 2389ddf32ae3141283b2af3d0c9daabd
BLAKE2b-256 28fdce3ef5048759b9b25774c9c0942f5c2f04bc9e068c7a0c5042b2af12f427

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7211b091621761e93412503ec030df7e060053641cbc6a29d4d26798c9efafdd
MD5 b619858351e66c62e795a12ad26495a5
BLAKE2b-256 0fce8587855bd9edcc8cbb6c3ee2de3a1a602cbcd060ea0f477c9b43be090c4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9d7605748653e1039e13aa0abf1ff48cf45464f7e5b252523104a44d0549b0c9
MD5 7440d0cb74f019a9898dff546367f397
BLAKE2b-256 886f30957e548e44e89ed9d4cd7ea848640dd32c98557c486da698325555f93d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 61d65d909d93557170d3ef4d1050b9092461c0e8ce28f6969a31bda25c8770b3
MD5 71369599e81dec83579fbda823247b1a
BLAKE2b-256 51a307475f6b79eb7b812ffdd660aeabec3a243de0681306bc8e6c4448d5fea2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bbcec8b31e32f3584c08ba9e30edff7be06bc10434c2578c0f6cad72e50e8552
MD5 27f9ec77bf1a6673563d1d0f46402d4f
BLAKE2b-256 e44c1ed5a94035227ed28f643914f824ccf26cb3851b1459e580bc0dabc4f219

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 18891e7be1a89ca9a27d601b22e14bebd26229905417bf5eef0c9dd7fcc021e6
MD5 0699ffe7cb92ab3dd5a82eefa0ede6d2
BLAKE2b-256 e84503a9cb25ecedde90a6b8a1aef80636b035dc63db8c5bff8973cc40641fc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 643efbc539eeafe7f24a587eff7f99ea564b4dacafc5adf556817d04b9534508
MD5 ae4172ea434906a8dc81db310b8849b0
BLAKE2b-256 63787b6fe5563216092983b63ba52459b66dd19a51ae00645759f8ebf0c00146

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 16903c08d07d358693e7ca964bb38ce7259ffac58a15b59a1a41e14210739756
MD5 53a904d48f2a49282eb43ae350ee9311
BLAKE2b-256 5a4137c4754a64ba7c03f93c6bfd8f0d0a81ad0f07760c36c823b7d35e051949

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02b9367d5947014b4cd8bcabf5feba88e54f83bc5faf5c1b61bca88d948aeae4
MD5 6aaad52199f39b3d5b3954c9c0be46e3
BLAKE2b-256 8dede2fdffc705240eb756acac15a3f136d64e172277185fd55704ca8a2f268b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ad23ec11a3ee4f0be1c27bc1639baf398ede6894df3b43bcfd246c7120cbc4f5
MD5 aedc341ce57eac951c68be757c7ffc39
BLAKE2b-256 2924aae79ba14be1ca397e82040bde08c68a4a1400e0056a37872033ec3a5def

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 85cf81aa6bd09400de9e6791eb2eb0d480adb99f3865f6ce059ce124bec342ba
MD5 720bf02cb9b292282537c7928c287bea
BLAKE2b-256 0ed57b6551781c64c9fb12a1207756a5790b4bdf55d4389f19ee450a42b92f74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b552b94d7541e4b1e3c89eda7d90bcf1993386d041c792842b8cb5402e90653b
MD5 3258e00aeee0bc1674ad6c62a2d5bcf5
BLAKE2b-256 799993574a29ea75fbcc58b7f99fd42f67cee997eb587a3ffb76acc3d8de2fc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e61264f5b353a717e9766d80d3c2e149b28ae8953c2f724bcd9feed2fa548fa1
MD5 cda6628ba72a88e5e65bba7eff827702
BLAKE2b-256 ac066ddc2bbbf4c93ad21cac0664bae1b7d8d6f11bd9d6c84df71ba00553906a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 91ebe58395186ce9a66ebe16fff7fbbe67177a73d501f1e7fc083e0d777e3620
MD5 886024240c9d89509f28d4c49dc70281
BLAKE2b-256 fa1a463ab2c1fc6a160a73a81a5ec70aee6087485898bd92c5dcd7c350e54732

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4628d19c816067890950b96acb23a6cdb1e67fd65da19a43bcc87cdc021637ca
MD5 da4a8b6bb7ac8322026576e9ec0485ef
BLAKE2b-256 4d47db2a728ad2c7e5958be07acc3601acdedcdef2b29d3c66e77ba94e5957f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b8e848c5ee52fb499c86d8d89cce725fef43b50aa477ebf9c2d965cb97eb8cea
MD5 f7bf5dfe312cdb1b00e21ccdc12b6cbb
BLAKE2b-256 b967e88821052815db566fca0e370e8ad33101b287ab9f70c3b0c7bd9379648a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 72027607f624333c19a316cc31b5f99eaa6b09ce6f858c2359fb633b9ea01459
MD5 030a19f8034c195b1b1cf2ac081ff39a
BLAKE2b-256 accc6cc8b38d9a8fb1122c84ba11d1288c9dadcf11d960dee53c4a43ce8d54b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac5b3fd9b2d66feb574debe1bae0a9c8ec369cff2d9d95dfc46a37d81e9ce2ad
MD5 cce6c9967b0c636f5f6f523fe33f7589
BLAKE2b-256 f3c410f6f1607476dd875a7d19d225aed72b7dd9b3ab98a23ea37a407e2f970d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4caea1ebef6efa669e9f4fce31ce388839b2d0255541fc62a87c3cb9d405c47
MD5 1608b8d6c1181863fa800a2c9ea11bff
BLAKE2b-256 3d6858a222421fefcdcca2c1fc2ba778fa03cfd9260263575d0d371e7793e1bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 17b66860a6d9e5877ce682245907b5fbaa68aca529453a65d72884370da6c7b8
MD5 db5515c8efecc6fa4b57adb02dc84f0b
BLAKE2b-256 81bd466159a3fde0ed476764609ff56ffdae143aaa1894ff7c5e23b9bde221eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2733d35a8c359e7d97b6fe70ad974da431137659a708a1a7b17ec5a68f92ba30
MD5 915d25b6db850c588913f9a05a25cfdc
BLAKE2b-256 0f184494073ae576617e40748d5cce9cb1712ac1b1d7202ae2c4c39474482137

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1cfc05cf63c99287da60a664b693223d9fc0011803b4e3d50a9f274492a23a70
MD5 70ed2d927b7f95e3676db1291420295c
BLAKE2b-256 83846b790260095c730cf77822aae9314d16c517cb5ea2bced1a5833bcd23b98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 edbbc127466c92c4291b8f4c179446f333c4d73988b63b866ca9a8e9605ce6d4
MD5 434b4b5758f5b1a8ffad6d91ec175f73
BLAKE2b-256 ab4a78071f77ada34a3450bf1adee810cb7db9edfdfa3f937fbfe9c0cda1cf90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4527e94630a3b7916c12310fda324eb90551865ba9963ad89f4aa679ecf55f7f
MD5 cabf54db2e2ad5ae34483bbe769eef56
BLAKE2b-256 8378f3b2e430b5bbde607aa018e6a9c257d12911dfcf36aefd247194d254f808

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c8da55b8555b596065cec53106be474bfb6f05f9e18a1f50cce5cc6bdf914261
MD5 8559883bc3512f8040cbcca7f1b23564
BLAKE2b-256 dcbd14c13286004516697daab610b3536b4cb979d681579822474735132d0c9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ea5c88e907e5af913a9d32d94b7d7f69c2f7d09e7b378916ff9188c816cc9ab
MD5 eb27ce62ddc1d9f9fb3cb8af0879dfef
BLAKE2b-256 cccc89907eeef36d9a27a6d77b45c564ba058539abbf5af5ded4109eea2ba34f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1fd2055801a175c43de9c271e57134ff311172c9226784e3795b01008392ff8a
MD5 4580886ecde9301fd01fcc7ad8067b8f
BLAKE2b-256 a51966641ec204b6d80f4d667135f4b34b58bb1adf52f500b90451a4f5ed0a40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4afcf76dbc8452a69cf2094bf5b17c770a134789a2364ed82718313752c718e7
MD5 46472b330db354dec46cb9e1c941adf9
BLAKE2b-256 c34f1a69e5da8aebe036daf08fe48df782c0dc9add7a9e26bdf844aa910baf08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 65d39a248084b6e4310d6cdf0d83ab5b5cecc8c1abf47928eb98ba2ff70405f4
MD5 ff92d5847f233d483109510f92808b41
BLAKE2b-256 baaf0518d6e7dec5391c1a0be68daae5be6d48c0c5a3d8b0b47f4c810f23025e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d149472a7aec1ecdc80d8bc71567ce4fde8293a65c0ae9cb2a234a71cf86f45a
MD5 8b5fc0031b26337dec77492c29fce324
BLAKE2b-256 48d0e5e22cdac2c30558b05580d59bddd2699edec20c07038072d767a3cd8ad3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9a431de6b235779bde8a12c5f2361a100b46e9b50a5bffaf8b5c51c528531b40
MD5 f1152ded288768c4a87591d55fc98dbb
BLAKE2b-256 6cee6d050b0610f9f93ad4deae49bc32fcd2d3672998bf5bf6010958067f185b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5e32a1dea7b3bde34230fd4aa6fc2680be5cfdc540db695bfc65797c36074a8
MD5 ea8596863ca8c273c53de946cac5b748
BLAKE2b-256 07b48629ddd11729417c49ad8eb918087ec0c1be68a9a44ac2827a81e6b03a22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f672bb3be5282c09fc989b76c678a2fd581256879aa341123271373ebebf2589
MD5 422af1657dbd2e4482c357578e5f68b4
BLAKE2b-256 59a195f8a85596fe09cb3d7ce9c499862afaa5841afd50d603591751a933a944

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 caf5319e1ccf009e73f7b27928758c4655e6404a660243c97db2df74cd0c45d1
MD5 5720755b572c4eeb06bbebcc00b7d5d6
BLAKE2b-256 ec7ce67392950f9711ce3b0f4c205b18326596bbfd1906c9da2340a037471bdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e2d4a0eb9dc29c98e1faec75b063d3af21955f29159b87cfed2cbbc5a22b3637
MD5 7ba0ada6bd904f62d92305bc3bf6bfcc
BLAKE2b-256 f43f85118c79213dadf2c721657389fe5e5b2f727b5d19518ccd1a50bcb59dab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7b163d28731929b5964156c01dfde7d5f3ed01f0caa1ab8245e2c593bf0f43c0
MD5 ef846c35417a140e344cd239e02c1f58
BLAKE2b-256 2fe06c9f66cac50e047a39583059be83b7a7be46c7e73a02bf5a0a8f8c2ab745

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d678b89765bdcebf3adeb99c6d420bc171b07ff687dd08761ccf5619eed54e7a
MD5 cbe05fba6f5045eba62635786e6f300e
BLAKE2b-256 37191c1c6ba618e293b480e76416571bfdf99365a3dc442c4e06d52141cacbb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 40f7eb0247ed782f4905917081a88891c5c7be79dc1c59a9043c3a55bb39aee3
MD5 fa59f3b27e9163d6be1762f74ffab72a
BLAKE2b-256 204974104e4388d9c7531074893e84a27654b2590f2ef94c64a6a2380d5a2ace

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5857e38eeb811c2c59e36feb87518f80d0bea7d4e25aad76aca2b088aa78d39
MD5 e7d8db51244f5fd7ab528fc03b1dda3d
BLAKE2b-256 49a220d8ea97083634f89ab58c14bbd4fc75c14ff30c00a1aec54f6259859c6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 69964a75e4af00578d935af55562a9c1a6fdb980ae5677b0ea5df8b2da8e8d2d
MD5 40151c92925469add3ac8cb6207c9fc2
BLAKE2b-256 1610e1273b950b8edebde29974c9556771381b3692f1e7b605bc8f0df90d37b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5624b7375bde9f3765456f6c97707b32c87e7b977999696b83ac861f3220844d
MD5 5a4ec685add2fd7b3347b2c1bc28dcb1
BLAKE2b-256 ceaa316032bf6332b2a6428c3ebfd2892b35450839e63e47caf869b5e4d9ac5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d4f2c57ec310e42d1e26cd63d9f60292d01f2e3a7b816bd34e21a4cdee4b69c5
MD5 1752e1111ce9da23593b34da19c28629
BLAKE2b-256 f6ac34cf43420a9dd0597f344aa6a5d765cf3593fe46f9b969218c8402fbd81b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 898d37c62cd1de77d2d57352905e6bfa3f4fb620534ac7c0b6de8a078ef1d279
MD5 7d6d2afeb592cba5f196c92fa56a9264
BLAKE2b-256 d6ae93aa41d926552299a7b4b194e0161e1894ca23ec57ad29c95d42824f5176

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4892aa571d1883021f81c8f227355d233becd72a21cdcece2b6f47438893b365
MD5 da1776be0be9e559294c27927de3465e
BLAKE2b-256 6f7e068ff2a49e85dff0bb63238a41207b64e1cba632bf47a84e7cbc012743b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a7f7e83ac145fe833de1b9ee01ef53d6728746b9091ae9619f4e5eae8db4c38
MD5 a7fc6111a52a9456aabede399ad70414
BLAKE2b-256 98c4e737770ecff969777feee4abf8b268ee39e80d45578e0e6c923327651fbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 56163fc63e4933b3045b3dfb86f75e5789942c818a0bc4b1ef06bdf903a1278a
MD5 dfb65a33e8d7d80ef107bacd58060a11
BLAKE2b-256 ae57812bd8af9581ce4982fd923d0e3f5d1981d1229eb7f753a3cca3ab8ba7df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 114de768e395a25d439259b08a3e6ff9cddbe7de6f3df423ec5442083b53816b
MD5 099b5a0e0be2ac40e8c5cbe54d4a1c9c
BLAKE2b-256 c94018b0134f0f7bc4419a38074f2c635239749173ace2300407abaf05ee8f90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c0bbed71a51ed03ae1a55cee9f900566e4954b39587515896dad16f86521eaca
MD5 750a0885f1ef918244e4d587e50fcf96
BLAKE2b-256 2f5683346e02dda32a14e77fc57624b7e71ff983651eb1565e26802d6729d9e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 457c8c2776381b74c9debee771c7ec73199d4ed6d8e51b3298919d0931197030
MD5 79b9726627335fb4cf793833acded56c
BLAKE2b-256 f227bce8b5967a98b1039a3bde13234c43809290ddfd148550ff583499e1bcd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 019de10f8aef0246a33f5f57b5aefc29efd61ece54b99f0b725a754a56a451f9
MD5 88ee002825d05180d0abc1d4b87063a9
BLAKE2b-256 adb6c867d36d365410cc09dacbe59156347a85c5b593264d3e767256e8b421f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dfa77400d698d37931360000df2be42c4207f3f1674a03752733c29a8f0fc7d6
MD5 47f942c4705bad4ab4b7b8b12960f70e
BLAKE2b-256 ddd17211052066781e5779a30ac2c61bae694e927d98aa84131c87697675a447

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 50bc3c3a9c8c10324201962689f15ecdbc19efb31e2eb4300f56c0d6daca40e9
MD5 12401a5afd296dcafbda98985dc8daa6
BLAKE2b-256 2e416a72c775ef71b4f2e52afbb1c82447f9f4c3398af0d1ffdc77511a9034df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bd5b9fb4445f3673e6f8b6b175325361f8b4813cb747ec0fd95f70134982e61e
MD5 7f94cc4fca9bf45b4687836d9be60802
BLAKE2b-256 ba38970d226e47ed644ec10cfc5b645769cf3e588fde2c841b82a940db3e08fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dbce2eac0d7632db832a5d861dd51326237797f2a71fc9a216191c6d7d6036a4
MD5 f2a2ac58975754b2e0917dee577418d8
BLAKE2b-256 12daf8989e1c8e58c4b6c2cc18db8e839440093a60238eb724e8a28ec38c703c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fc865cf39416879157fe01e94aa4293899bd3e1198899076178aece5ef115fca
MD5 80f1029351263e33fa5351b29fa68431
BLAKE2b-256 73557bc6d957f396f46100cbefcfdfae4a98f94ef79c416489e801a09a11f982

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e036b454c1ff007dee732a6405a850ad3f2bab866c7eb7ceb133beacd6ba37e0
MD5 7019894d20e430cd4970d84870c760b4
BLAKE2b-256 7960f3f33eb4e8e098d3383a2aadab9d90bbeaa2ba7eb351cc3d5389ecef9c09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bbdd7e73f970c98e89857045846f6c2e79fc3665fa7c8b536b5fca87121b4205
MD5 d24685407486b16110d5288ab789db63
BLAKE2b-256 c5b5ca52a89b28f33e422b22a1d20597897f10eae53b575f19dd67d7d988539f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 707645561d6d907d0b69185e8f6278b0fe661d5d34d6295d00ce613fdb72bb96
MD5 9aa40cd411b965dff3509caca299006f
BLAKE2b-256 9e955dd24623110c4e115ebfb8258b142de5e14a5ef46bf375f9e0d31ad57d16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e4f7f6604d042a71b25146707a7e7b0cb4c46dcf3d283962d3225d02be5292f0
MD5 12cd7358040794959cc4e1d622f5f35f
BLAKE2b-256 8f3417cf5c08e48f02b01a9d5d1e839a28102acf8943fdffe60b52ea9b421960

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4fa5015a7ebfa13747f660d299cbeda65e6b4021c669b8d72c7e20952fb3f15b
MD5 ef9fc9096a774b60acda247faab7effa
BLAKE2b-256 83c1090cdbe81fb1764a3856519614b818b439192e1ce76991eae39699e2c62e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 91eb966772f4814291b83521ce067fd2305678538f5dae12af17d741447ef392
MD5 8fd007268a873f8fdaf9d66d6fead022
BLAKE2b-256 2239c6508f4434968b0518231e45fa2bfdf446ca97e3379e299087bc9a8d0124

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 06f5420157de686142c76f2fc9e48be59bf4afa4f8d92a8d15f9a54456f8b9cf
MD5 52c8925c8fb51448de480753af2de2c3
BLAKE2b-256 058434a437de552d745e876f5778df2ace7064b06a3b127405340b731e146766

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