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

Uploaded Source

Built Distributions

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

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for attoworld-2026.1.4.tar.gz
Algorithm Hash digest
SHA256 334d6c8a38b6eb5bbcc3dc10cfcd97a588e71e206c38dae8b1758cd9c9d3e22d
MD5 e2ca7d0caea15340a5109339673aee7d
BLAKE2b-256 77cb13cbd898e405fff8243bc4fb4421a6a411080ad3efa9a22b60b948aa4a27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0515f56675ad60ae56b54443632d52fc6a2aedd67c64cb60ac6cd61414ffdf49
MD5 52fd641852a4e295000c46ddc2647d55
BLAKE2b-256 09d9b2301c7707ea2bc7931efc051e25ec5fcbea7097eea993c98cd35cfe155c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 21a219d20429c43eb818e491f6f39d689cf2ac6e542a06c21b67586ece41c199
MD5 bd6047125f018eaf31cab0b1634005c6
BLAKE2b-256 6685a2f4c43e2043ec9900afffa8deb669d32a3e30da6d067cebf6445dfee29c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3e857be3fb4585b8f84d31a3ac87fe2671e83bccbddb00407c42841356b49689
MD5 f8c0ecc0877a276341b824fe58cb75d6
BLAKE2b-256 6790e9ee7938f394f5a950a8345daa644e0e41e36c9c3527ab6c7de463111c39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dbf57004c48eaf3dce569b926fb92105f030b77584cb367e481ab5737ba29082
MD5 3674f566f16b6536c904478c00d31f8b
BLAKE2b-256 584936b23529807a362e610d958400bc06cc5c85513f063085082cf8f659c98b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d1eddc5d390ad1082b940c90045f7d6275defc11d24e3a82e6a70234330b105
MD5 404141edda097383b9fbc2bf6e671fe3
BLAKE2b-256 eb0da857206c9e9c983a5fe0fa659459c48ccb83be8fc9296388f46cee70c0e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dbada0eec2320542a6e127ea0ba009aec710d1b5db4825374b474e590b14b532
MD5 213d037723fe578686631444f00f6a7c
BLAKE2b-256 d3d36130a7721d9f488f313c55c82fc18fe6382e6a4421fb7897bcfce2dce91f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2f556ace1c6da7d7d9a0c3094f7b9d54cfce334b9daa09c8ddf120fdaece7fd2
MD5 ffd09540606310a0c0347481748a7bd0
BLAKE2b-256 76c8d504d945e3cc2abe7cde4d900731af319cec280e277a8b9ab125787922aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 879bd4d481257de41bbd018a7bf5be175a27a44b68908d85cdb427f8c81e6461
MD5 e4b318630d1306642dbd59f064c2309c
BLAKE2b-256 d93292a3db695a4a8ed3dd8c30f581e925cf7c2009d772d41ac272a389f3771c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3edaf82b1e0011b12ec3e67f63884601555559e15e44ebbe7f7572c29fe8be8a
MD5 4301ffaa4be7f859fa9b346100c4f4d4
BLAKE2b-256 99000e25ace569dede84c1f792045e5c8cfd33b9521c270a4c7e9a7e0eafc462

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e53bfdf8a628ddb596b885166f10ec2edc7beec89d8f30642a3f6a102592e537
MD5 454c6b8448e937503a873a434dcfaef4
BLAKE2b-256 816c7a578d75a69117bfc9a36fc26683bf930ae0900209189123391e548d201c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e3355432bc2c64f085ef14a0b1a6994c9d0a261652999cd5cc10ce752bad43a
MD5 09666639c3b01cd30515835a2e9bd309
BLAKE2b-256 335f6b7d8c63c92fb1ad4bb8e2e9234e41d39dcca4cf6c071479b068788a95c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3791e7b75146a926c0252aa9700b1a2d6ce018a2213284321ace3d5832eafdd5
MD5 9a138257a131b852cd4d2e9ca4027161
BLAKE2b-256 404c708965f160292ecec47dacd908279fd5394171f88750088b28d6cf5c72c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2794085f47dfb85fab70c379e51e5063d53f44927855ac04399e3ca84de642d2
MD5 5c420f28cf35219b8145d28f0571a0f4
BLAKE2b-256 1cbf8fd9d7b22c398d9e3c831b7451657ef56baba2dc55728aba6525c54b3b6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fa58e9232093400a6d2573df77392ff0989c10280ff325431e4458c358cdf89e
MD5 3fe0f7380c6d4ef2b4b9dfb454da1522
BLAKE2b-256 eca1bb7590d87074bc60c1d74f33a98a059d9f1925a30129091f323bfdb82ca5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 64bd3a4caf467fec5b24f895bf62f5fd0a8c69da3777fdad9db52d838d694dab
MD5 87860143e4332d6a01c6a03d159b39c9
BLAKE2b-256 43ee192352de752fec291047ecacca8d1f092d7f9cd364fc60b140cc66ddf83a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2bfeecea9f2dbd514c191ca51b643e5d21fed72fae8e013b062b89007aebed62
MD5 5f5cfbd52e7ff3ddcd79d352a4abfd28
BLAKE2b-256 dc6f2d8a9cf554b3df9a3a9f37fc88c148a7a4bc9d139e3947ae286a78488c12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 41a23ec110391a64224991b9b74825639d79c16a52fec81fa903c7ad0f6c54d6
MD5 e7a5c4db9d73be52ed145afe6e8f36b8
BLAKE2b-256 2aaf1eb38728ac3632334d67860683303f1ba993b5fe5de71d4b45c68bbd1112

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7f6d82a5703eeb7b784138783269712d322d8f0535c56e552e85060b9271336
MD5 d98cf8f9fc7811ead1c36596199f8a0b
BLAKE2b-256 4eee232c8de47ce2bb40358258b1867bd3a6ec00bf3207d5c6fa76275a4efbf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 836389b4d649d18fe6260f6ff5ddb697f2f71284ae9f4e5ae2ab17efe54f4906
MD5 fa71e68dcdc3d61208d3c1764514023d
BLAKE2b-256 dbef556d709b107ec675b13ef4a8ff4ccfc686ee662e0da1cb78d1cebc95e694

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e370d8b63c29d5761144b1c4d60f3fa1d7dc7e3ef0dbcafe3ee504d462a4f94a
MD5 97c7d5aaba07e642153ed9dbc980fb36
BLAKE2b-256 c76b28fb6fa418b6262895ead8077c52b944e17712666f86068f72cf44f9ee38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7f5423700b9980261cd3b2af897cc4432659e17b24a33835bdd667f6d1fdb989
MD5 b96db32de5fbe401f1757d5042ec9d08
BLAKE2b-256 e9241d27c7a633650b9529a734f71d9bef7a0eebbfd6d72366a568719c3a5ccb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c5b7d45624e37829dbb2ea348d2f9a3cdefcc3345c2587fa0be8f2cce637af42
MD5 509b54cb3bb2c4ee15fc94d04d63017f
BLAKE2b-256 45dd3058a14164c01d881d6ccfcd238b9d7cc6c652d6dbcb67a6f76ca6197dce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 975274bdb54a121c64917399c566e4ecc49b16ab60ec156e28140044cbe8deac
MD5 7fd142e48178fd431f40324e50917d71
BLAKE2b-256 c1dfa778c451d5796db11d2c606dd4ceefb6d832e51cd3e3eac55ec183fc0068

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5b7a106dbee34cb302c75305b6f1c846edf89f6d713552db37fef857cb984624
MD5 4c5404952ed3a6748cfda32e750448a7
BLAKE2b-256 a613c54e049821d1a22871a4178673d61716bb6624e56731002fd64b88aeed59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 be1af9f98fe76a8b2887b3a222557bcd7848408bd4c17c58f14fc32657a812c5
MD5 12339f065fad7da74b27ee6e4f80b5eb
BLAKE2b-256 079928376d1f14756b18b0bb9930a06cfaa65d230c08781dcdfae81605426178

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 50223c508936d7fc5dba4d32d7f89139bec9fbad3b68e4150110eea41fe99124
MD5 3659d853dfca310a3ce61f308854e422
BLAKE2b-256 e186be0c69669aac112cf375601583e03dbdeca33f8be0fa3d3ee4425dd44fce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5517daa4ed7de56123e87aa58e345f3afabf5ef8b8bcc81bf89dfbe70806358b
MD5 45b7e8fe7ab11c800f362ef1e21fc5f1
BLAKE2b-256 34cada8c3f16888f36049b243b5ec3239ad0a416b6a453306139acfb8ac474ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 28310c9c7ba417d525b7923c73ef7d17fcb303c8953094baa7d4600990a45f29
MD5 564337b0c55137f95ba4b2670e9048e2
BLAKE2b-256 a1c2e1e689e6a5ec8abdabc10e0847ef8be83ec7f4b03dc3dc83679dd95ef3e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 61e846edc803e80ab30af7cecdc0aa0dd311bb53dd3ee0b2c7910d9ab54ad1f3
MD5 ea3a3306bb0c2671c7d149fd18ecc97a
BLAKE2b-256 d1272e131135af4b8e439bbc517cac8b301258727ba9ae215c724af1ce4c2e28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 74f2c7f9a05e27d1c73e284e6e3d46e768749119452ab6fd00f182d360e63508
MD5 233a8a3e5ef0f329d377cb837bad9695
BLAKE2b-256 dfedbb08376b2f727fc9ad9b52b3ed7da38d075b8f5cbeb8417ecea42e983ee9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 79eb2d94af9ab1da8d49996315a3b577c815fcf1f91e84d61f4eb486b7fd05bb
MD5 d624a209eb8b15d44b9155aa7c077cdd
BLAKE2b-256 709f339f072d317fd6b95c4337ebeb8ba0e5606cdcd653c764631247d2bb2371

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5946fd1e27bbbd425efc04380f5c4b0ad5468ec3ef818987f86bf326f89b2153
MD5 957f48b39307617583d553b76dc1d8d2
BLAKE2b-256 a268a25e2802c29411b44c4a47d34eabfdf13ddbfe2fa2234ca8a8dace946bc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bfbc9d0331204f5706bf9749dac63da692a0771ca2c8ad100a7f41a6b1d4c49f
MD5 bf4e5ae5c68a4f7c035539ea604eee20
BLAKE2b-256 9b37d6b8f548662b8f80e814837d78521208ada6ebb89697ac1bb45612beeb11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc1c30335e615d4cb62f7e6edf7aa5759ea03e130acc1f891f59bba63736c5f7
MD5 28232df4926953e4d68583e9311cee89
BLAKE2b-256 2bf5c2d5b03e3a35e3a0a0ce066769ab430eeb527c5d7528371fff5eb58002cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 717350d686f6a5430c5e076d9bae644417074d5d6e7fb5423e9f32e57824ee66
MD5 adb8b8c30af0b6ec3afb7fda5be5538e
BLAKE2b-256 4454dc72e5b8c4c487e041ad412db6a3dde7a404a4e649091ae87ed61e68f8cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9d68b30f5bbaa5428f59b2d6fb7d269c2fbc23b5ab734a9cac87d15591e23b59
MD5 1d06ee4bfe92404a17e32d36a818b35a
BLAKE2b-256 97d395d62cd8cff6b02f2341924412e97db113777cfff43fc4332ed285f2db82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1894024d28fafbe7afb27ba4e7d6f6e07792a4caca0bef849060099508a98937
MD5 81e95027495a120f8b3d9d5907be0a35
BLAKE2b-256 7d9afdb728a64e575909218fb7e4ffb4466e97593f4062163d1f67f847a4e19f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 027f4dc25a162fabb00dd3d69c7efb0a7215c4d456cea9a35ca0043b2743e589
MD5 2cc3cb29b4c3fde03c8c63aed35a5a84
BLAKE2b-256 ba2c4790c32d306b580fccec2a838ec23b8e3d1b8c03527e481dee9cfd007902

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 06eb859eb91b7ab59fb46d070345c97884dfd865324542644dd985e308fce4c5
MD5 c5819c26a58a334e8a6055e7a7e82c5b
BLAKE2b-256 7594bee5a6f33c2c22423d0cb96e3e211346dfdf9faa1a8de86c710ec74574fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d48fe04fdb66649a195f66dd17e31451d16dfb48cbdb484ba722ac65e7cebc32
MD5 2b7ebc22821bedfc6166280978777f37
BLAKE2b-256 409d119c68c5cc8f8fb292cd42567510b728a67703cce19bdfe519a8247afbc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff68e12b7747e87c66805e0659b4a6813b9c3bf3b213925c3f540ce7c570493c
MD5 0f56f1f380d64a10d140fb7222ae4ddf
BLAKE2b-256 8f264622c682ffe7ed971a00c6dc831ee72dbd5167ba50df7e53fd0f2bf476a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4f750bba567b52bdd33ad22384f5258c114cf109c91dc2faf3fa6508a34e7d6d
MD5 70172beb1dfa5a87d1ab28fa5c9aa3cb
BLAKE2b-256 0b2e0f4044e530995abeb293e91a68d44a909f0625b131136c58cbe732fc2a37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cc409065ac14e060f913eebda1770e4439294484da0990931ce9e6d76b7e0e1d
MD5 e33977ba41574bb29bee107e29c93926
BLAKE2b-256 6ebcd4247295e6e426eaff5d4b9a3c41f2d579c22cde94a5f70fe0f81a17e8ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 75c21a81e691081ff7c33f44fdbedad6f8548ea02d5ceb450b6651074a7c29c9
MD5 9e210643a18cb61de71e4815a359f267
BLAKE2b-256 62035cbf80e2ceaabc0b71e3a93843fe750c6b9ee3f2972f9d8ce1ddb23ed654

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4db7ae2c910d46f4e2454f6490929e612849ac29bb4b32766275a1a95520fe49
MD5 2331d2a5549cab5e1f06953ea381f2bd
BLAKE2b-256 f2a3d8962d5564e23438ae9ec527341d25181daf63cca43125d08691c2f821fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5a52a3597eb31cf3e9c636733e82e2ce91a7ed2cc3e6000b129b9ae3d4736d0f
MD5 deb87f5b1803dd64703c1d1ad43312af
BLAKE2b-256 326c304d09ef6a3fa351959dbcf5818b3408ec6ef180361d28360738e4fb9eaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 acf83f53969f7ed1f3d749c9664b050c879bcf4df5ee4043d23cdf6b0ef31df8
MD5 4e460b138cb265a3a2f2d03fd2ecabcd
BLAKE2b-256 768c2c4cb2fd1e88d6553d822dce0059eaa2e11972e947dac2c40701e7ac22ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4f3f8c53198e707e0a89e2a0df641edf0064c8ca5b04bd1192b715e9706e5fc1
MD5 295ef77fbac91e178e5384b65c1c3e0d
BLAKE2b-256 5a5b9e85c79f1a79df6c3cccf260f1f9250b600846ae8a434e511cea553c1792

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7637dcaa4d2f9bc469ff07d2742c1ebc7ad95ce76dd3386161a93d44667a6861
MD5 f333fd067e5bc2e6032adb1ff5ca4d90
BLAKE2b-256 d364c48597b02a97f85b78a797d9f36e2f154c2b027ba40e1bd9e92eec942df4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ec017767c262bba837c58f0d61a60715096810b2214467a701179b286463b318
MD5 29d702b0221b37bffa866a2179f619e5
BLAKE2b-256 2cbf6362a0abc87d3d0dc53ca633d0c6763e3091e99d18260786314a74b2ead0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b319da05201eef9effa04eae50433f3037d308cf89a6ce3207483a96b44ead83
MD5 50d69a36a67dfd21429117bf7dbc3dc7
BLAKE2b-256 abc07b426fef73dfdfff69b9ecff2dbb296d63cff1874db94ddda749ae57284f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b894e77e3a470c3cff7416ab0adff0560511631248fb76181164d3d33539c63a
MD5 492e15c020ccf4332b59b8bd44d6b05b
BLAKE2b-256 cdae20badf1785df0ee75e943e42d2ed7589c7c31cb6afb5dfb3193193b57053

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 de5f41c2db791fa3cd5829984bd37edfbe950eb5ccfa8adac586202a6eef2108
MD5 89572a8bb206e9b5fa62033d611bd8cd
BLAKE2b-256 d11294e17265d8d397772ecd33ce27fa12f04478495459e4374a803405c1d184

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ffeb8f0ef389af893a2248e6d3846212ed22151992e5c49d3cd098f311d8c002
MD5 00aedf0c1a5edcf4947beaff28fb5ddf
BLAKE2b-256 b673e5204999bdb0ef10a7961c53c5f7b2fd67b6baf19f995430d6ae85aedb7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a14180de5ff3a8dcda69dd2d9b432d7cf5adf33e9786bc87ebe28021856a3e36
MD5 9d016155673105594f694cfd18dd570b
BLAKE2b-256 2361601f0b2a4e4b88e359d1041884744f59860c6e5dba95644a7699b9e8193c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 973f42d1609f2e9f8358d9d485df41f7a8480adfe0b9f60f0b58b40b57e05459
MD5 c272aacfa7b7c3bbab65dd9607b28b87
BLAKE2b-256 845f906f77d74f51b93a3032790b3861a74c5908555921587eacd9032b2a4abe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c735c569f535d8e8d8c8299b3369a2219f1162a2178e5411f36f462a00bf9b82
MD5 612348448b78a9982bc258514d12c3bc
BLAKE2b-256 15f015a5f2f002c9bba03d37f1f5ad49146c55fcb74d2090ba4a55e6f14bb6a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca82e6f3c6f66f62ac4e89e10678936f322cc4e54b80014d78e2256d54fea5ac
MD5 8dd23c5c9aaf7ebc8e1faa3ecae17a5a
BLAKE2b-256 c1f0349571737bda13ad9c41cf6ab9bf3dc5a76042bc8d38125617187a307eb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8928ca9e7de3de39ef34275b9f476738f58b1a4b71a2e1d7638a9ac210601cfc
MD5 682e540fc03bcbbe600cdb21a90a7898
BLAKE2b-256 82f19506a79b5f75e6d0459f6582828d5ea5531abef518a0211eb62abc5f92f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 470d4435d2c123c9cd2027c9be8eae7f4bbefabb05cc4921de04506a1411c45a
MD5 cc8b4e28cf71ef9c2a9b4c72372a1760
BLAKE2b-256 062495c4bf326b1cef3951ac1534aa273bc6afe27b81b6edeae5a97e59c078dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6037c20dafd30f83f03afab4f193588e2648d90127d19a285687eae5d479e92c
MD5 be7ae5d783f550b521204229e9ba6b0b
BLAKE2b-256 c1d5990099ade078635de7cf168bdabfc4adbe1413f5ef305064823ca23db46b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f5d88243989cb2a325181e8ad48760d4fc10920be1a539119236361a40a2591a
MD5 38dcdf615a0736e87ea07958b056e636
BLAKE2b-256 bb6a7a394936ca6a8aabf6b2caeafd157592c73b4025bb21e5ab7920ab737343

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a143827f153158ecce9aec77df7c00686279e2eca76745a4f85f9e746b55e08d
MD5 3bfdfcdb78017d444cc258abb9d1da3f
BLAKE2b-256 0deb9ac1386a9c8d057486b77d57d9b4bcf6f3648153ba56a5e67c3bbb5fccb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a051cb3ad2ef048d38549fa604dd8dbf2c48ad99a1b5f660427f01ad9fb7f1c9
MD5 ec1069c4ea7e38e5221b61ff6de0e687
BLAKE2b-256 dc578bca2def1e033ac68fbbbca63112037f051ddb95f727684a52f8c6ff3bf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f94bcc556fecbad1833bd0f117d72c4697e732acb08cb1a44f75b34d717036fb
MD5 0d7ba3bf88fb240027d86dc3db1c138b
BLAKE2b-256 d3d6a7d212ffc63e56f173ea007059aaa22a6735015d94f94afd000368d9daa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dbb739971653c8376e0bd8a5d6027e44f726bd72d3455d998c4771bb9c91ecab
MD5 ecfb6102577483a48edbb40a8afc5cb4
BLAKE2b-256 4953fc57432efeca520b42ffad10e8b4dc7b5f7286293c59243ed6c7a5e1e3d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b5a3465901c112aeb72dfd0b0dcb23dde9493de2b2c019c112f0bbc305256d9c
MD5 41c53c177bc39b80aa3e14eba02a7103
BLAKE2b-256 4055d728a7d0ebe0a5ba38fbb116e61e1a3aea3f58612b1e91047d20f10f2095

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f1c2c9ef7ec3fd93406141c73b0268f455047cf3ead8aad85ae5c6f50ba02b4
MD5 e92b395f2454218cf6c3cfe23bfd3c40
BLAKE2b-256 14ff819b7d6935f1d77f744185b97d0ebcd1d5180f868c34850e76f4566bed1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 375aa85752851e06e1d1810ff972af1d4a937da79b9bdd027cf07c6f22465b5b
MD5 f9db3472772e2ee2d5bb313dc0ce7af0
BLAKE2b-256 79044270eff5371d68d6cc83e42448797903dda1524285ab01bf9b5d8e8e0eb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 baa7094f2783a898b8ec4f14d697dc52a2322220ec21e7e1f0fdfd335c9d1253
MD5 bd34159be80751b2815e3014fc0cff1e
BLAKE2b-256 2971aa57c06a511cf065a95ff6140c0a1866961669cdb07d79d56c4ec6b07124

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a5a5ad40287e8ed25ebabe2c01885fa6c74b20f030a9a27b0790da5a84fd717
MD5 46a8877fbbb40b018cbb228df9c092d0
BLAKE2b-256 3ecabab5160a6b42d5e440fb349a57ab950090f8432ba236811c96696b4809b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 db2492e7dbe2e90de68f5754af1be4819c6a25f3dcf402a1437a82206b2dd99e
MD5 96e38035b3106af899ad5d7bb9a8a573
BLAKE2b-256 665df46316568315602bbfc41eac08af1f6c80b1c65fb2c0d25af398fcd24abc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3cd3a0967c4abe3372f01201418a73114fb9af482c710bde84dc0f842c0b4337
MD5 8c732ba8464ced6a69fcac09b3d1295b
BLAKE2b-256 596a2283f4b45f3a02376e5255ee56fa9f83f92285ed1cb7d4e211eea5b39ab8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa6c9fa2083dd03f9336cdd4b015bf31d3589d20f39b629bded32385620934d1
MD5 7852e64f6945dbaa917621c63c0e32c2
BLAKE2b-256 c3ab0e226fc6b5b6bf53336a34039432e16629c64dfee7f4d4c1e426076ec86c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f752d0c3cc6966bacfb5468662a361b33b4b3a621c1dd36877b9567a4ac95a98
MD5 3f0f45ddc36d67b01bb051d3e040e600
BLAKE2b-256 b92dc9ee5dce21763a286be9ed4f70123b1e54f03e0a882e5ee651e1462d437a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f97d48538b06adb69da026540964dce753569f03ecf3df3b5f368a8a8582dc39
MD5 ad56a75cde95c65b218be75af1e14047
BLAKE2b-256 d42430ed9dd2064958a09bc580d7465d4cfcbd52acf5a7fec0259950dc0de51c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c4e43ddd6b5ee7c06d6b6e2f260deaba39f0b60a1c234e4c17613b3f12c14536
MD5 9fddebac0b1be5c831b3ea1b1a1c509d
BLAKE2b-256 12283ee60c5bb87ae953ecfb030ddc8b06073dcdf112543d3adfe5275635aa1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 70aec51cd78020b56e22c5916a26e589c876e0b1856fd8f7457ffdee4558d20c
MD5 8081827090d65f235fd63a6dd2a11d8d
BLAKE2b-256 d45956365c157727196f24f5fb9dbfd3521047723d728a52d6b4027aee59ad84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9d615499078533c32cd72e14350d91c3d8e072438b416caa82f79443b1b83b21
MD5 24b18baee1d4931b2b875f56f0b82b0b
BLAKE2b-256 beb737da193a837dfaabea0f433579b42a895d029c9258a38739168989911524

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 61a78108275c3f6e43eea9b34bb774ec954ff0b845a801740313bd90abb787f8
MD5 29fd78ebdc45e3f7b3047b1503d88e7b
BLAKE2b-256 6d655a3f124b953a5557454ea5099fcc228d463041655be3015d78af30370f2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1661212ffc55486ffc57e93a89b5d8db9dc3153a51465bd4cdf554aadeac99cd
MD5 83b799ac69e6b5b92e2f48a0f7a4f557
BLAKE2b-256 cff8e5f4341dbff55912fa67b0933624fedeb8ce7863738929a77cde36b9ee80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 514d46a2c78c59a974ab29be52e56f9c44b91fce99f3725dcebb519248d77843
MD5 e9d16ccff6e57b7c297435e966169bb4
BLAKE2b-256 2fe86a7fa35f24fdc321a1de1cb34caa7bae04175b07e5921c98df4e5b9efada

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 546fc77c390005e114f1403f540c607d7f3178c06014ced271f59a607f1311eb
MD5 b02a49424a8305cacdb430ef33f13106
BLAKE2b-256 64eaa2683a63fd6e0a47ceea75080b830111563fb24d1ffa3cdf3c66a77e1375

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67a49186b445e75fcba54ca5ae2f6ff97bbc4f0009782da3b3ac764324bacc5c
MD5 abbfc6945bb08e2d2d98b1b111767577
BLAKE2b-256 7706d323c484429d3269138b5ee7957a2d2e43c45348cccf7aae183f78f6a193

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 247f1cdf8ff3cc75d38b50f05f002792962652fd6ee29d151dbea526d18b0c9c
MD5 d0d5c315580b7562098221100355ebfe
BLAKE2b-256 7d554d0c1219dc4f65f0927e5e9e57353284042b096b3ba02bfbd925b863c657

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d3e30545ee9eaec9fe6e1e570e8df6cd3548980b514b7319416323a54a0bc3e4
MD5 15a07e401a0fba1cff92a8daeb8c7b4b
BLAKE2b-256 a8591a7a47416eba6152252f0cd6a4e93083b340b88f53bada8cc4944b934990

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ec2992dfcdb761113f5b8ac7259092a75cc732751b533427fd4913f45b027ad9
MD5 00f4b96ccf56f3dae6e8857772df89e0
BLAKE2b-256 8f71a098d0c6961f62c4bdb226bc4e4795c66d22551d78996f30029c3b9a3a90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 154cfd758aaf71c4adfb631396980554aae59e41ad1a5c89e0c285a4dce222fc
MD5 c7c962f74f16f77dee8443265300f0e8
BLAKE2b-256 6897a3e437ff831e19377ec1a41f782a301f811c52d5476ae1a7b48f551a7304

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 408281410526d7abc129a19ee931dbfc0da6cec7e7d0c3c7b40ea968cf310949
MD5 5772505ef0abc6887b4a27074ae40672
BLAKE2b-256 da46db6258d49008b25c4c0b49aa0a518d944e5d643b01e0a8e983d416efdaa7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 13a36bb8a313d56d4fdb95467911ed7d08dfcd9a4b34f2e9fcc6d0714bec9bc7
MD5 daebce598db457449f78163964e4fff8
BLAKE2b-256 d635b028bae15e1e3ccdacf25c03881f6ade950790dfab99792e263b653c9e0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 883ac544be94562cd7ecf7873a43873d041b722f6407e5a1b05315905c5ab9c1
MD5 b40aa3e3e64429b1e4ae0b1bb6337b4e
BLAKE2b-256 eb88baa789c337ff0a66b778f50e1f539a252ffc0f61d5bbd381e5b553da54f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e37118604b2cac6b7a672e4b930318d9787de467d2d0c3d24641442286bf7452
MD5 261380f3f3218bbfb67b545c15541822
BLAKE2b-256 d6014319dae77e631700f2dde732ff1c87682b4b434f7d9feab89cdc6c48bb33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 71546a301b6d3af60516d7fecd02cddaf39a8f1993c04c0c03366a135bdac1b7
MD5 a994fb89ae56a220dce870c8d4f525df
BLAKE2b-256 196861fc013c29aba81cacaba5997f5971403f33df25035031225a2c6d1f02e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4ebfd52a44f108ec6845ce4d683b01ad04587b0c96a24656fdc8ebdd6a395f5
MD5 ec499e90c9c09b459b49add90bc31b80
BLAKE2b-256 b5f4c271d36b22ba49d3397c7fdab2c8b946e1dac8ed4953ccb32547edf0f1a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 650a7b729bfda470447c862f536412deddfb83e99258c5a5cf63933a5572543a
MD5 a3191b3cb03747be7f6b740284118a38
BLAKE2b-256 0875b123d915aebb4a959dbb6b6e297806e0f8ca1b9ad33bb8968c385d425921

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9ee3542459621845b103de5b998dd7a2e14ef415306ba3eea7924783c78b8f1d
MD5 963be9101f33b51994a0d5f19628eeb3
BLAKE2b-256 8b2c2dd6fb400cf9846f8ec83d31ad3ccab5d5474e77137edd22182155a52019

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9edeba315070d91a3c155357ae8b90a9233ab73b444d6b85685080735ad8ef40
MD5 03a7897fd2c47c9f3292515eb1ef823c
BLAKE2b-256 fb08a8195c939fae2579da564494b776a221859a690f1cddfb9e8c755756a074

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a49377ade7c7c201877b99dbd769fee20c8283aad18349bf071fddd51b9c8ba6
MD5 73a431cafa10f95652197541e74eb788
BLAKE2b-256 0c74c46e4975541d89f7ccfc18ad88176a5e245631f93eaa9e30ad8c333c3262

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a340e4d76a94aef84d3e0837c02e8e797e9c53d433d921ccf930aec4824488a1
MD5 f50c2194eed813f7d1e0da8390a88bd2
BLAKE2b-256 4e55ef1409126dfd39ba3c29332a49a58e4feedf4728119e69f6e0d5ce082bde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ade68655fb2506d65390f32c8cd7ba3eb198140f539e0e0ab950eaaf93c1965c
MD5 ca2d7a9a4b1beb72661590243be40a0f
BLAKE2b-256 e73aebf6603a1b0880b124f32aeb830f902fbc3ca14b1eccf3aa008badb8bb96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3bbb767b022bf1c607f41ca6c18ce5d27cffd3f05c1299e76f4efb7775919ea2
MD5 fdcacf0b1079b6130ef626f219d621d2
BLAKE2b-256 de0e430b93cab5f44f6439f6677c286045944210c59dbed3b0d5ff3618f6c262

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ec9e87ff10fd08640fda1bd0bd385a583db33277e77904f25679df37fbe1be2f
MD5 226556f9fe13cc8ae225a001df14019e
BLAKE2b-256 5b75c121226859a50d692c7ca7a465593c45f284a116c082003e31f765e04ad0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 def743260eb67045786922d2b2de0389d9e84b21fe2c675fd5a2763e9797d11b
MD5 a31a0c8db283b4eb3a1fba516833f5d5
BLAKE2b-256 c267a68d539d054dc34ae51bc60a6cd72bf107035367219f53e0dbe38e200c00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d8842b25c730ddbe58d256f5ec60dc64c51f04ea4abd81b9256caea30038b860
MD5 b3012061f347e3a6cddf34ec6c7ed956
BLAKE2b-256 ce5dc3b6ff49ee4f2248e5987786fbbc9eb518900cc35b6a2c43920d3961de0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b932cfdde4a4818dcec8c6dd6848700b569c99930216866191cefae4560c3a78
MD5 075b9d8b3e62d3835a1fd045e375daa5
BLAKE2b-256 01a3149a912800b752dc081060df55dead68a2c49f11feceadc52714cfa6ba0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 12b85d8dddca85e6eae29359226f9267a690f7eebf267bce34bbab8acd342dc3
MD5 e9ca473f40684d6c8c9b1f4f00fa5b94
BLAKE2b-256 75bb7386c517a861cc66e749761cda200f6b753abaf8dfaa3e403d385fca4ca7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c6ec9af06380a61a05d20ef9aa07a591e198f8a5b3edcc91ad8d83baacee7f9d
MD5 6509dc2a8d2902d10ced505e7920a5ae
BLAKE2b-256 636a67b336f53a3a96693d22e6de317eaded89b487232e9311ecb575c44ed33b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 42a45f0331fa3e56041546c5bb65f71ce31fd637c4a8f5ca04a3026a63be959d
MD5 ccea7da2200a225c37ae5f892d1a1eda
BLAKE2b-256 78ff248c3d6bb8b2066f56e84b4889aab6c5bebf0acedc48e424a12060177f34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 19dc61e8ab562cc28ffd35f415f1cd601a08d17b21c5bcbd0a2e444b984fa5f4
MD5 065c9f30ac78a00b8ab8824f2fbef3e2
BLAKE2b-256 b77cdf7709b346167058f128119ee5d2119156aa42210e041bdd194f560192a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 784795af9367f2056aed45f6afba3f1e273fa770220c8e325af183c9f3aee0c8
MD5 b3200402a50e08990593eac13607dbb5
BLAKE2b-256 9c385d23e58b918dc96b3f0b68df0ae0788ef026e6d42bc7bb5e653270951916

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c2f94a814eab68937aefc13101febd4540c93cfaa42a70e275feaef6ae60e52
MD5 72ac27ef3a2c3e038eeedefb746c2feb
BLAKE2b-256 1fb0c9bf3a147a4a7939216dadc21d81d66b85805368b785976641d7e7a6e008

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 34ecb92f225dcdbb8b40f137365d6079c696931fa7387f3571eb5afd3a3aa131
MD5 35f4fa45e14e9f9111b08ec4a48c0574
BLAKE2b-256 70b77ec0055a47b5d8f87ec69a988ac235dcd25ece8c1a8ebf11562fa522b5dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 be39469d0fff21c8c3ef273dac695f2aae110551339e3a0bfccfe4bccb919028
MD5 d9e305b18806b5844c0736619144d202
BLAKE2b-256 306985fd15e49897a097fb027419e9926fa7b3b864a01cf4692a6f40830d2a7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3cd6fd465f2257d04861c7810bb7d3d73dffb1be46495513821864caa6a71613
MD5 2ca2225c497fa5b2ad1a42e927f2bd20
BLAKE2b-256 286f23b22800a16276e578ef6f6b34f5f15340fbb1973b354f110000586c7890

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e5bd2c8e1da763cb50bb011a4ebded01319a4ce75fa2b8da98c52b5fe51d7b34
MD5 f503fbbc54fc99c8d1b2ff2fa834559c
BLAKE2b-256 430d61b4b8e2593f8caa2efa01b4bbff683067862c77d167875536fa614b2396

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9a60aae434438c09066b8733a41e405915ee5fed871ac7e4e4b0be019e92c28c
MD5 2f3eb7804a03d4232e66e195832aaccc
BLAKE2b-256 1db5bdfe4e8ae81fa17a289d169edf9f26ceccec1467a9dc3e7e328801c6ef7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a7a7cd541c8f2662563600cafd5205f1f48e8f8382e385db52ca48cf8ae273a
MD5 6e98adc544996ff68c749e317e033bb4
BLAKE2b-256 ab6111a3e46883bd46b8eebe23ed69e951b76785f04ebf8793b87d658d7cd992

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1091cd3614a7235ad893c06c7056034d7220875446bafc6216557e9defe7c094
MD5 86bf8d1616160138764aff866710c29c
BLAKE2b-256 cf1394960e5f5bbb684bd7f8c63e641a350c76b6f2020a5bbd592ca0c2c6cb0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 22bd0560b5e3daa7161ea16d18bef3a0a14cdabde98f442c8bd444a38d85df01
MD5 c77f457772fcea561e301dfa08556ad3
BLAKE2b-256 cd29052eba61fb03510f5d96c760c056802d25643c81dd9e720bd69c7b21a319

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bedda3c7fb1be13809d999affa2326a5d30c1a5d4f51dd4e6e97afbab5f960c8
MD5 d0ee943b76380f85d1a5a69187f38d36
BLAKE2b-256 0ba52eea3dd37443c0eabba49ccb2a7e9f07f6c8c5242ae1516ff8211bba13eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ca44217a25d9fd9b1b95769add998112fe1a7985a9993bf7b42763454b22130b
MD5 2551708a5fe32cb70870038341c37a92
BLAKE2b-256 75671091d8498af29cfbe0846f0d6e25ae9bc0f132235bb5f915178c7f910750

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c55c80e9dee3a4ab7a82ab658b50755eaa2b3c0f81420a2a6b91525636f4002b
MD5 f6d8a81d0f897cbe00b96ddbc2c2d2ce
BLAKE2b-256 a365236c97012aa5925f0611adcb807d41acefed660f5a435ceff3ffbb11c42b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bc0ba28043f84541953bfc7df1c10eda74f95ecf2ddb47f3fa0fa0ef6ab293f0
MD5 90f1d27700b5bcc63cbaf3b43ff0c8a1
BLAKE2b-256 7aed8340aaba2a718e403ffbb37b0c353a93fc2f6f0010e49a305b79a8a4c05c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2026.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c922f3ab5a41c4ab7bcf319edd669768e32c8a59ab76dd0271576b35b4b3c67
MD5 5aae436106c42f658d987541e096dd79
BLAKE2b-256 32f9553c74da30eac25cd79bb1fe22df443e0d9104dbaba8c9aab134ba790c66

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