Skip to main content

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

Project description

Attoworld

DOI

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

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

Documentation available here!

Structure

The module has several submodules to keep it organized:

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

Contributing

Code guidelines

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

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

Working with git and Github

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

Forking the repo and getting a local working copy

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

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

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

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

Making a PR

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

After your PR

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

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

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

Developing locally

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

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

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

python -m venv .venv

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

Linux/Mac:

source .venv/bin/activate

Windows:

.venv\Scripts\activate.bat

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

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

maturin develop

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

Project details


Download files

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

Source Distribution

attoworld-2025.0.42.tar.gz (484.9 kB view details)

Uploaded Source

Built Distributions

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

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.42-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.42-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.42-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.42-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.42-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.42-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-2025.0.42-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

attoworld-2025.0.42-cp313-cp313t-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

attoworld-2025.0.42-cp313-cp313-win_amd64.whl (992.0 kB view details)

Uploaded CPython 3.13Windows x86-64

attoworld-2025.0.42-cp313-cp313-win32.whl (809.0 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

attoworld-2025.0.42-cp313-cp313-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

attoworld-2025.0.42-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-2025.0.42-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.42-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

attoworld-2025.0.42-cp312-cp312-win_amd64.whl (992.7 kB view details)

Uploaded CPython 3.12Windows x86-64

attoworld-2025.0.42-cp312-cp312-win32.whl (809.0 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

attoworld-2025.0.42-cp312-cp312-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

attoworld-2025.0.42-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-2025.0.42-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.42-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

attoworld-2025.0.42-cp311-cp311-win_amd64.whl (991.7 kB view details)

Uploaded CPython 3.11Windows x86-64

attoworld-2025.0.42-cp311-cp311-win32.whl (806.5 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

attoworld-2025.0.42-cp311-cp311-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

attoworld-2025.0.42-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-2025.0.42-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.42-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

attoworld-2025.0.42-cp310-cp310-win_amd64.whl (991.6 kB view details)

Uploaded CPython 3.10Windows x86-64

attoworld-2025.0.42-cp310-cp310-win32.whl (806.8 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

attoworld-2025.0.42-cp310-cp310-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

attoworld-2025.0.42-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-2025.0.42-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.42-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

attoworld-2025.0.42-cp39-cp39-win_amd64.whl (992.5 kB view details)

Uploaded CPython 3.9Windows x86-64

attoworld-2025.0.42-cp39-cp39-win32.whl (807.6 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

attoworld-2025.0.42-cp39-cp39-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

attoworld-2025.0.42-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-2025.0.42-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.42-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

attoworld-2025.0.42-cp38-cp38-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

attoworld-2025.0.42-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.42-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

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

File metadata

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

File hashes

Hashes for attoworld-2025.0.42.tar.gz
Algorithm Hash digest
SHA256 fbb2883bfeaa33aa1c076a5e27bbaf3d09fce71c22416f71b117b27cb60cdebd
MD5 081df2466728bed4eec8471f44afa421
BLAKE2b-256 5e62000d86ef3bb0b6b55184b97fe83db3d6dd16a1096ad7cb6990d2233373ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8af3dd139aaac668719cd7ef7dceaf1cf40ad91b9190cd8d69a1446d156baa64
MD5 8d11f2e13daf1af7e694247295cee900
BLAKE2b-256 e4a28389945dde148e65f3abc5f0359b4ef6979b21d3b5d2cb100892ce1ae6a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 12aa381699c5bef4656189c54fc7891bdfe01347f116ecb02a0d397bb4c10475
MD5 5c4381383e14d2901b736b2428fd466e
BLAKE2b-256 dc0401f9a14120b8d795f5817211fa046b3d6b2715ffc7b7d488a9786545f779

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fd7ff713fd2015c4d83d0700c3548d6db3b5e3c200751df5c6c44b08a6ff06a2
MD5 b679faef29e3c1f0e8028b1e8edf7a57
BLAKE2b-256 2a092e6b58480ccc6468abb250e06313ab706a2d1b50482893cfe3654d6e0dc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7044bc27abc347a83186c822b5c8165ae50fb2b358991a9c84e3f2911e775cb8
MD5 cd12036364aecbd6807a36dea4e619dd
BLAKE2b-256 5ede43ba5f4b23cedb6d28c740854a7cd4991d0d66fa312b540ef4803e1abbf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8999bf22aff0b7c82d816cf122ad33414f0dbc2b7a3266aa7cca41aa335ebb5
MD5 a694fdb1c5c7e700ad5a92b0c5b390ca
BLAKE2b-256 8eea76952b9e5368feaa5dc47f0f2659b4de6d3dde9eeab4c11d09ebcc60a8e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e9520f921f930dacf21d76ef38263e158e8faf0aa2366e3c2da0dce8916b5400
MD5 9a8781275eb3db58fe993f196c9947c3
BLAKE2b-256 8f57a912423a102710c5bed870d48ac49d36697fbca09b1bcb358342620e4252

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 46ae97e07642721b03ad1149a1663243fc7434bd7fdbab627c9d2ce9ea60ceec
MD5 48826b9361102c1f9163a064dbf77f82
BLAKE2b-256 dd8c645d25f86c8fca8272a2dcd576d0e55ebf708075cd7b612cc17a61ef0996

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fc60a73113138f991636c48c2a44609a29f46248105bac9420996d6a4e526ab0
MD5 a92a57fefcac31171f4cedd47a9bb952
BLAKE2b-256 5a9b7ab3e5bfdca80ac56d99d752491a0db2982e630d01da94c9f83ed164bfcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6f1ec13b861901329a4215530458daef0a7977437f4d29b0fd0a30d002bf30fe
MD5 faf180820c4549c293e795d1f1ae844e
BLAKE2b-256 6dfe8e3b7ee7d6b89d40adea6d0b716d2ffa77831e00977eeaf251dc70c39518

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 761ad034c4c8483c97f06c1704e444f919841a5ff61e1328c3084a9a521acf7d
MD5 9ea6d3f8c1fc1c52158d6f4867f91b0b
BLAKE2b-256 61eabf4a08fd8e9e915f8c454446a25a8840e7e467cf88e523faece982016243

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c66d38ba373b0d20d3dc7da17bd60964dafa8aa12deb66321ee77880b99a1c1
MD5 40093c7d8b04c159ebe93090ff12ba36
BLAKE2b-256 151764c8a1b48da891fa672d8706c873f01deb89200631a0d9f8136738adc906

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3b1673e104b788623aeb79cc0c49a72f701f7a0b7b15b599ac4c0e84c5ee300b
MD5 c4df70534ff0160ecd93cd3656b101ef
BLAKE2b-256 bdd8b3aaf39671019cc0cf8c1df9d687a2e3a112eb912720b028dd76f234cf8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c94ab093ce0cf4d80ff9bf605f6423e868a19c83f6fca8be53815629ae050de2
MD5 92c6ccd4b06cd92409768874c8122396
BLAKE2b-256 d6d217adde102bee5c9cdeb4dda4d7e3e43af20e2db0f642beb04607bb55514b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c987508f0a4563dfd11b1fe9591ebcf7c9a5e51d1d04954926cebef262d8501
MD5 564532bcc7402db89ecf93ef2aec52ba
BLAKE2b-256 280ccc587d3739e74cf86d61941b6f8dd1f923163c6a87dff17d6de5b14e25c7

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.42-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.42-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a1724e601ca628485813f4ae958beb2456fa1725b24cf20f58ff691ea3f82044
MD5 88797f335beeb99733341b6c0d245ae7
BLAKE2b-256 7b1e4e894a5593bfcb842d9d355244021c5e3a49ee2cc65b0f5cca65d18bb9a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3118dbbd1fb726a2fca3c646aa27c324754186d27fef937ed8d9c3292ebb901f
MD5 c1ed022b1972b3a897631045c9e66e7c
BLAKE2b-256 7b1dfbef971fe835e71b604b6a3eb85128df22bae662ac35add8242b6effed6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9ff49f2e78c7e5e50189d2c4de8f149d77e9a119383b2253c51b3675eddd1f3d
MD5 719aa8993d864a99196b213441a67d0d
BLAKE2b-256 2acb4e7032f14efa19dae93a51af5f48ef375ba6fc9e62f93a7de9af0d63968e

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.42-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.42-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2a0e38125a18155350028c75cd4426310438c034567f0a8dd8be4d5fc63216e9
MD5 03f85c3bc25bc24e12dc51c0cc8babec
BLAKE2b-256 98785fc3cc7e5ba0c8869fd377ba5c3ca74bb4ce0e93c18d47f2298f41e005c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ff157b7a2022d7c4e76c54b6704a8c9a78b0ee3b5a9284dce9c8c313bf7564ce
MD5 688f6ca97fe1205f9cdf1e6cd5df08ca
BLAKE2b-256 bdcbc030b27d69a65787b913ddaefaa864ad9bb4106ec75b6a2049fd0fa4da3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 60dc5295fdd1526c9d8f4b7deb3a1d62b8153e0cb75d76af49940666d0f50e9a
MD5 89bd1d7aff8fcca4658523cf69652538
BLAKE2b-256 bc0cf0239e462ac8dfff063d0437626c58b5cbea1bee852e03f4c95e9c620a20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 72d4cac05a33698b9528cd742e8a68a85e34e117ac3efa2a58844fa51bdb49d1
MD5 99b9dc6c283c5177d79974f873f0234c
BLAKE2b-256 5ff14699a5d312151e19b88874a55190c2512552a07d726e7d5f4f6efe9d665d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b0c3a10fcb47051444624e69977850ada5b6446cf632350c601903b7eca58081
MD5 3fce47f6f764d272c73ef3062850cd30
BLAKE2b-256 ca6d5e5b4c0e5044859b2dd31eec38673188f09c1543e9a7da43eac01744a567

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0f70ab8ea0846b49ac052341448ed1661c7f32d35fbd72074b0210aa089a6dc9
MD5 9de4af76762c952da8f138f8ae8bc0da
BLAKE2b-256 2d035e92c85ca2bb1112fa16688323339c3852421012f3d16a8bc3ff7fad10ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e9e9170bcebfd171a1002cb4c1989ff9f2a3d06e4936b643b30aad7bfb66d14b
MD5 6172ad28408db69e31f418b1c1c97856
BLAKE2b-256 abf74cd0abadd07d52ed482e53b01c51a5d66059a3f6f8e0a4b147dcdbab071f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2a47435dbfbefe949f6809f7aed3468cdac476319e81e2844831d4a7dbd410c1
MD5 41f232e53ac34ce057a4aef302445f1b
BLAKE2b-256 34818c26d44e5803f730420ee39e6369752715636cf2ebfc57623dbfdd47d3ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 55686acff3d7b490849cb2d07668fc798c4d5158e5ec03216e5f1f9c203ae2ce
MD5 f5c43b400630763002dd5831ced5d4d5
BLAKE2b-256 3677bb2d444b4a91afdb33a1f14ca788c597628be80dc72e2796072e12afb61f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f39651e63ee953036a13cf0357555fe7ed7633c954996a0a422abcb9010de6d7
MD5 9c753e10640c9127e8940841e9117579
BLAKE2b-256 19a23097b9d844dffc17a1ff678f9b1ac3c2f16dec335a29e86d477a2f8c2189

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16e3eeefdf9e378ccbf0ad8e7e04cf46c493c6fbd2275b86b83aa6c56d4dce4f
MD5 fe95c0c44293b060360cafd54fa99bbc
BLAKE2b-256 154ec87c9b4daa85ccd2248367634a551905af2242a6355a0e4d0ed79e1bc2a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4bd9cc9c7dba947baf1c0348667e0c60a418c8e5d9cc0ed34a2c2e58863fba72
MD5 24e15ded34a5184c1fbe6ce23034c8e2
BLAKE2b-256 e53022ccc4259a0e33298e7a47fa52cb0faf37f842cfa8f1e09e23257d7fc0ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 37ddafbc07b2f1ea682e036c65895f528acc207721eea306b38ca64f26418708
MD5 e5fbccfda93f240ac5c54d079e5d1980
BLAKE2b-256 feaccca212e0acdcbf9318dd8aac5dc1837e40efdb7dcbbb83928c8acb7d5fce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5e8c2a3a526eeb920276ec60aa2bd05d1b7b26cb4ecd43d2b98d70084c4f964
MD5 60d64aee4c5787f739a78eafa3b37645
BLAKE2b-256 db4ab71c0486a41035bfbcef05562f95c8b2b18832346a0b812dd981247be4de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8be1dd47a0914d5f3139a8bdcea584ec778d91af21f30dd9b09e9639ac080e87
MD5 dd32a0a5f9892917b84cda49e3d016bc
BLAKE2b-256 65169108dd171447181a731a49f7939d944c50e090c2e205ac02c08f23e59d75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cea7585f0d836ed465978cc0af8250208e55167f325addf5bcec169a9e641a14
MD5 729e4cd261da5be5fb02f2cd32d30f04
BLAKE2b-256 ef90b9ea6505bafcc916e1e436fa891554a99e26bb250edbfbc1d672b3e3e28e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e5325669fedcd6adc6406bd58e6fc49d7274ad7563147a79a2d83fb6143884fb
MD5 30e634ef8c9e3b061e75c9febd37588e
BLAKE2b-256 96c6b2c7c36cb0b82926d74a2f98c20ac174bad8591754522b3e5f3faad21b2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fed029efc3000c42305685f93ec5fa21a37b8b260f327d18846f6ccea49d689a
MD5 2860a1ca9e24e64b25f61cb18ab97bd1
BLAKE2b-256 5c725b2a997c32e19176537df7b95c24b809a9fb155f98be5611e29845a715c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2271312dfe35e228faeb45ef79abe0c004cd627adc0f9c3ed1a6ee5180670d64
MD5 0f88698a720dac24d0cf042064a18500
BLAKE2b-256 ccc816f151bc59d722fa1bb69cebe5c2b6781763cf4e27d9f2cd09d5be358af9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b429e35315c87872c5404016b5fb51ecb7fd6f3edc16798dc993c9793473f915
MD5 ef6792d1a2d8658da16532905c4225d0
BLAKE2b-256 80f1aad8d4a307ab980e79ebed3000c3876a1a6f5437992371574963de863c8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 91cf04731cb047a8bf7f1a7592659134c2dc867c3ed250318ccadca40aea3dd2
MD5 d733fd75886bee60e268d8dd053ef095
BLAKE2b-256 29745f3104a3c23a71c5fec43177f11f36b940471d4c9d689d723a2eeec290ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 81c57166fb0c40d10da1752596306dbcd98a4180dca1230a7b96c04af3eb9904
MD5 e333dacba75b42daa22db3f82b5f79a4
BLAKE2b-256 fe4369207a383c3547593d725420496dc16df0207c31ddb5f9adbc395a87b504

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.42-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5f4809bed35cfd06b6d0ecf6840128cfc74c9a6ca8e479f0262c4b08d8b46f51
MD5 fe4eba80f76239ec7e28f0e23f35eb03
BLAKE2b-256 b52a1ac8cc1186a4fc27cf3729d13694c24c6483fe17f5c352189bb5de99edf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2c094cf899a387ce020372211d21244a510d662ec569f3c69423818714ea8f0d
MD5 163267fe30a0465b18c2c5447635815d
BLAKE2b-256 6cfef03d4bbf05fb2edf6a966bf2474f277f5ea52bf5c65f82a0ec4301997ca9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 67600c51051821722e5aeceb7b1c2cf950db0ed49a92d5da4241ab705846d718
MD5 35d2b9b19b7bb94d02291cfba062325d
BLAKE2b-256 07b1a6d3cebfc0149a1964311a862bf3ec3c59750771b75e60c5f60b1cc791f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e83cfd55553e205b074176642b590aaf793f916153229f012aa8a9b2759eea4f
MD5 f47ea9fb6676d4e15d2db30b45d5f977
BLAKE2b-256 e8cff8d4478a331d5c7ddd6b89684e02628c86ec86b6fc5a7e34d7a28907c262

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1ebc17d1a4e949b6751ea633b6b68dff72b95656d4dcef095a4bce9bb5f3acd5
MD5 54f287b0e22f5d718f75487dd28692b4
BLAKE2b-256 9ca4871fda6d0918bfcd6622a84e8fa0249f9fd217e0b172e31f449219fc3cb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 817f289065a6fd6bf86445766f14c8261e2579325d6c5f9679026561ab2088cd
MD5 e9e7278ee953ba707daab2b86acd9224
BLAKE2b-256 8afe9559305571413b4f5cf736f611eede45c8eb50b2807262a7770d44fa03ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 21013b07e9ea165bc08cc3ca21f6f389133f50cdc5d487ef6e0237737085f99e
MD5 ec2cb2b86da2197ac7e0e754a92be6a5
BLAKE2b-256 1e19767d5803a0858db18123fe1e47459a747f0f04cfe7d09228291d5ef8a9f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b9071f2eb977f7a2eab9b25b60d5a1b8df5fa52e36df36962336155873610e42
MD5 1d6ef32d45b1f92cb6453d807b3e2eb6
BLAKE2b-256 9b2c36a8450af370c83b8d1cc6e026c2917a87aa5eef2631ea004d148190c8e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 72498835812cf35be6a30a496e4129d0e17d63279aabf78ef2ad5a5d1c8b0c33
MD5 20081b54fe79251f304f28137c8c93f7
BLAKE2b-256 bba85ad8f7ed07f2159971d6974da22b98d953efc0f77f83f946b78ef658792f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a6b9daeb80d389b29464440191ea94b3914b51d1fd561b8c8ce936020cfd432a
MD5 324aebc5412301d165a7ec8030e323a9
BLAKE2b-256 4337e32cf39102eedfe09805b2b927a1544b186edf2407c7152b763c31b78a6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a1b14ea5729d02ea9fba693129de06eda7f300f40811cceeab9b3d4b9a2e57b3
MD5 d417df8f1a83f0d40c425ded4bed2a20
BLAKE2b-256 564aaf5f0c5e4c87c05841292a0b79f449e4fd49414944afbd15dea0aae29713

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bdaafe7f2dc1549000b21071a9f154f1ee3ecdb711b00f20d4678b4004e05d7b
MD5 d1d3d961fec78bcdcbf899d9ee3d7d70
BLAKE2b-256 4d0c34f2d117af26a9e11e942f391931d17e5242e1fbb2d09c678cfc00a29479

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fb76e460c1799e33fe1267d3a7b33d57e57062331c895b067a93e228813fa03f
MD5 4faf11cea1453a13159b6a3ce3f26a2e
BLAKE2b-256 40fc76ae04bb8e1d391d41634a94c51fb5a01a2a7d0a18ff9f307feda377c0ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 62b0a95e4e270a2dfd24df15aeb3362c9b071f6df4258fbd7a09cb8c4f3cd9f4
MD5 6c69db7b766f5a5377c785ca53ea3b79
BLAKE2b-256 4748f0df77291c46eeb76ab86115d878a77b4aaadd2aa453cf860b0f4f914713

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.42-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 50748adb2af4892e873fb39e33674af45856d23248f39dd1a49836b79025b39b
MD5 6dbc84289ac374edad1d7d5bb38e218a
BLAKE2b-256 9931dd67cc32c47457e78567bd317c165bbab65e780572c49d45c40e2d284db2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df576ade561763eb177ca26af3cbeea18d43be55cb4f532e8b7c13560015361b
MD5 20bc49233d52455c33b72b0462444e25
BLAKE2b-256 8974a935f1d7d25aca1caa3b2d56ac06397203967177d56199db9a52030b3fc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 952c2d64c1b7cc62397d8a07619e55a7e09dd326edb2742a013207cf823049b6
MD5 a8aa5a8543fe8da6164fecfde62a932b
BLAKE2b-256 135f3570887ca6dfab391bd326c82ceb47e57c8c90d8725dd7e1037f8690d565

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 79abf3bb8e73da42aac7090ded46fedab65cb4db0007c1982d03f8f59228d745
MD5 86b076c013da86cbb7e67a0d7a414029
BLAKE2b-256 13c849db896b331da94f10d7cddb294b1ed2d8a15116e3ed078d3f927b9751a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e0d4eb5e1e70d88a9ec0d8e03707f4da122d18bf9f7800538ba7a25bba53ecf2
MD5 897d2c45120e5c9308feb86ccac634c2
BLAKE2b-256 4f96be88cf066f49b7570b0154ecf5977afb67e02f7fa2b0a9a005d558ba43c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03fc28e93cd967961eeb62d09af5923027823689fa0f8a473a468efda1974dee
MD5 32fd7a4c4c9790f60e34b6dcbb387ab0
BLAKE2b-256 a8e29e09369b44f1a3e8cd7b469a253e6ca7e459a2bf4df80cee6e7804f7c590

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9441c4c8f0832a42162f6952f7c0e275c0e841ca1c99f01360e2591543fc2820
MD5 a7449cd153be2acda0b7a8b9b514f39c
BLAKE2b-256 907ea5a2719b94c8b12ca87d350797063fbd2f8c6d25b61f3d4d97cc3f6d2e7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 249af777041a009225f0e116b74b0392d4a6c98ad711b81a089d1c6b04975d7f
MD5 a72d26e79639a9b67c28986f99c9cc44
BLAKE2b-256 f61d8d0a082b7c2e8c3180d71d5f104653a4aff7d137419f4c1f18f3897c5962

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ad92eb0358000392f79a5b6258d190e59631c6df76eb2f52a38c27ee459e4415
MD5 9ff538f7b9377ebf6eb6ab8118ded7a8
BLAKE2b-256 f8307416140364160d5d717eae532fba952d3ab06c5b36f5152cdf4b1395fb01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2d4aea8a72b1c6023553a21939c7651114540a88ffefe2af9cad48ffeeb29d99
MD5 d17a85e2b72a3caaab9c9429772d953f
BLAKE2b-256 09a4acfb7af4b98533c51939fbdd634f7dae30dcd57c7ea9cbd564405992966d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ed6061f49799821c20b67a87cb86fcafa89acdb87d7d527112dba931ea8b96e
MD5 91b6c06a6456374ced0ababab21da3a5
BLAKE2b-256 efb5856caefbc51edea07bb64b15b9928c420aaedea9a9421887545696fbba70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa528c016310e46c59e5bed7b6ca76d7d88cd6eba2a67ce809925fe3191e85f6
MD5 3a06d7d21e4f0d11720d0e680cf6c359
BLAKE2b-256 1e81d9559a9eec73a7fd5a87f3c2f40f0e32cf58a20aec999128e6be85b6f9df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bf7b4be09edfb13151d323d958c8b21f6753050566bb686c436a9b67552d49ca
MD5 396c65cb1eeff398cb5a8f25aa3afb0e
BLAKE2b-256 743f8060b03ff8db45c0edee0ca827a4bfadb76e48a7eb821f4cf41943ddcec9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 20dc3faf4768b76e2aa10cbea15a2a2c64f5a34294af2ba7205873d78b036120
MD5 87443b811f0f246131eba2cbbdcf5597
BLAKE2b-256 741ad142cd7eb9ff43c8aa210f034b65a5e3d5e8920cfd3c41f4aec329f17e56

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.42-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 df2e06d1d3be9eb69a5ad5a621e32f5a25b3cd9095101f0f40e78e355a11496c
MD5 3e66a5ec5320c6ce1de8a65f4044e94c
BLAKE2b-256 c7d576c4724f8468914f86723de2ef60c5edfc8bf025e54791235df8c6183610

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 31508f0cdc8b78c356ac51acc98de042b83af2ba16287ccefa10ae940457d918
MD5 1b0ec828a65640ded0e68102967d8948
BLAKE2b-256 a438fbf5a606270af7885feb1addeaaeb4c057779971400217cf48f8dccb05d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d7d5e90efdc30ec17aaef322358e2fa5f4a33c217dd9b14d4e957175bfa20f4d
MD5 b38bc291e000d2819d16599fd90919d2
BLAKE2b-256 8b7a7daa5eb08526cb4510c2631559801b372c891ed4f6cc4b605399a48fec19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 90fbfbca0d93bf952f9dfbfb1abdb534cd549e8ca42f808df33a22ec2eb52109
MD5 eb15bb47d8530cf44c074980521f48c3
BLAKE2b-256 6fc001218265c7c29c01b8d5d6a51bf33167fc8133433c6edff1f64ae429bdff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8fcef0af92e6bd70e8f2bda758ae910c66936d70590dd39ad14463ef24cc3417
MD5 c58ee90ee62ae2bfedb348203094dc6c
BLAKE2b-256 98e9bb8d680fd7b96a3fbfec2c5e983c3dff5aa2c3a997f0f65449faf06cbcee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36e74267de9d9b19b1cd57e1d2a0c4d2223bfe8784d5327b93314e245fd1e646
MD5 74a13f89ea44e9c91ed7c6ae4511b1a9
BLAKE2b-256 20c2ea63c772c89a6793bde79ffb37bb8a3fc23b790f46fa98caf447c0b5f9e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8580f29517f690e2e91677357dc2d946505b6ec8a161cad4ea0c12c74945a41c
MD5 d03079c498d70a0eed44dc5651acf86b
BLAKE2b-256 4f3c6024c6368acf106beeb62a02256b64935a3f7217691fdcea8c88ba16ac68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d8125e7acd0156e492b95dfce964dda5be16972a38c083b4513d35fe96a83113
MD5 43c9241566f0b35a90e0fe50ce1d76c0
BLAKE2b-256 3d7e588f39a529798da93ca1f160c740f04116bbdb6ec8ae8c92f0f3576461a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 af7297ec984cd5b7f1215e7c362fe7af9a468cfeb2ef1eb7f9f55305f7246e03
MD5 8ea0a6179dd2c994e75b5615e817af41
BLAKE2b-256 ec7d3654253c0a5c2c95791550be1a9d37263ac05765a1b48adadbd7f6c46d24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 556a344e0655d0cebbca2dccc171c849a6456387361d94fd4775f8244b41af01
MD5 aded8ca26b83a87380a05c0b7885f107
BLAKE2b-256 9a26ae794c2091fcda1ac77f84c3983085c3b705547df8cc242fa560d9f10ee7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fbd474dfd414371bfbc014929a3635a64c5328f747d9c5fe79a8f639f96d2e5b
MD5 8069e81cfbae42a15cd3a39332060804
BLAKE2b-256 248454bec5227ecdba4e1db79ba102769c211581a8db98a09e83f365f8dab9a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d60a84825e9e340e8d9e0c5e50e2b1b2b7695767a5965f0f9c2cd89a58569395
MD5 4f3f66d811b964bdb93b7314d4b3bb27
BLAKE2b-256 d894320f53d701b7dc394cd19397cd94c77d86eb9ede59adbf5443e7eb6e5757

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 76d11a60adc94018a61d0a9aef4868208a3c44aebb8b7f8b38f0b8b86cb58340
MD5 0836364317f91850ac6674b0d17d6f96
BLAKE2b-256 17a3d7093629c6b9cd459512b76adb67361fdf50ed78a5f9258ec61133f999f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a33a26e4c8251b9768986e412a803b1cd849d5e2dceef0161d2c495d9689f136
MD5 ce2104e3811a5495eaa442ae76f49ae7
BLAKE2b-256 ba231eb7d804c0e5d3bd8770e67df5fb5db83692e87127c81687faa67147dbba

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.42-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 89b292ec707d3cced9a2ff55d09ac57ba14a98c699f3b042f019329ca7cabe6a
MD5 d2ac619c9036c58d204d3158104b9a44
BLAKE2b-256 db52760752c5079f0be0bb0d4a3c17c9a74bfbacb99baf1bf0400f6888d3b774

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed7fe6dc74b24187ffdf477db1d77d61ca18c315ce521bede422de4b636d2285
MD5 882031fbd0b1ca345a137f0478140343
BLAKE2b-256 837690e05652b8e15d6702a9d395856fa9b9e533bfa8a81fc989517ac19ab088

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 05906180fc63a1f86a978c3534c612ace43657866baa94580d9ef6326459d479
MD5 75e79a49df0cbebf6da6a9172ee7d4ef
BLAKE2b-256 a69632428e2464a79c9eebb3fbbd59545ef582e6a5fb821a80f9fc50172136ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 69543e925c7f62f3a69326c840fda9053949a1d5af4f2573d279ec0e928c952d
MD5 601eb5f55cd58188e5273f28b52a552b
BLAKE2b-256 b214396f37e96e628fe4e73f488d21b63ea48470885d8b29c67323935b94f8b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 157c3bbae327e46226268c07835b79ccb9cc14040cf66f650cf8cbe95085c319
MD5 4bc3c30cc740e462110dc0877448ff43
BLAKE2b-256 679d5bcc3d014df613337759ed394f8e31b9d7ae3c71735d0082a46695d4a20e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de6b4b2fb89716057400552a283e4cf66f46c0cfaab8d630c5de7336f44b2cf4
MD5 12dcb65d6e6717a1ce64925fdf221330
BLAKE2b-256 fb65f5787ec74f61044b3b4aaa9647d446643cfce0941c91b6311db5b6cbc6eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6fe1aaa900eecc8c769828d9d788fb56660ce74d61b07e034889c7cbdab08089
MD5 1bccea7203263eb1fbdce1f067d5b629
BLAKE2b-256 1affa192de1f431faaa2dae450a2c64ab9c227a627589547d83e41af530fc0a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 29fd24d64b4825fdf2f07ac0f14e6e991e5fe1906f4b695df9e60da39fb87aec
MD5 f7c81eb5db9bc0c61ec62abe46e56883
BLAKE2b-256 80406b2fabff414ef4b5c7b0fe66ba945439cb6ad18c9e3c75f3f6a084abad48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 285e1a5e2a1a755b68719cb537ef883a5000f42d725c09e40152f55910ff9a52
MD5 5c42456b4db05d07e229e97b9ac852ac
BLAKE2b-256 7272cf2d46f8c9b39482daab6093affedbbed9113b0c0b90ad042f988994066b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5d2a939408d278959eacadd3fb6af924c4705431ef1a0455f163715312ac151c
MD5 d3cdf030221ceb643aef36637b0a6db6
BLAKE2b-256 e6c73df97d60b8823b035066418ca22f587b86a9c659585407e648022fc96f98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a37dcdb4e9b668694a0bbd467ad2123d185c538ac2d266fd7e89fe836025f4ce
MD5 93367af5cb62ac23ac62abf1b61878f3
BLAKE2b-256 de3d4fe6adf216e3c3c00821fb3b210afcc69e202e1f87a9c305485930b79511

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7f1bc3e470abf76fd542da2619f6452719ebcf3d1ba8a626e4a16c4e52186aea
MD5 bc522d3b798637385651746791be78d7
BLAKE2b-256 77b88c4bdef70e261e866536089cfe95f41fa12fc29a1e5640650c6be3be8369

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.42-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cf5eabeb5b2b12b6feb8d6b8ba90613ead210f95cc66756970860ad5fb4ff18f
MD5 bfab8be04ba5ef4e55321d4010486a74
BLAKE2b-256 2a84a5f08438eec7b0041723677793569ad0d549d42c7e4a702b3808d28e9a3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3df73ddf9ed5be4593faa828977db1aba2d2c15fedf5aec9be24ea5f2bec17a6
MD5 a2a2ff6912b471e4a979840f9703a38c
BLAKE2b-256 a1db7b39bbf140c08c6d8eee1859262d1bd504cbd4c7cbd1e3e5c15136aaf638

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 64ca3c0fa6468f6665bae72de4ed8f7c1a6c53875e2cd891e36ed3adeae30090
MD5 281a4fa0b3c04e28543a2638b94d2dc0
BLAKE2b-256 633fce732d7762a5e1d892dc5be2b99936275042a2f6f1f17a9ecac499f03f8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cb57cdd0da97e6684c7d4390cdf453f91242caeb3245189eeceebc854a31ef66
MD5 661ba0e5d17ee847238d005753cc2e05
BLAKE2b-256 7cd23e1917868077311d1d5255c2bbae706095bf9d9a4e810f9d2e530b052d8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 038f499d7104e2c19ffaa4c19c968a0ec2d4a064378992086a86fd508fc964c8
MD5 0edc212fe486d8a0fcd7e09311fa8293
BLAKE2b-256 28e801725725a5bc5dac343ad4c36db2cb3c1046e40ea5061a8d1aa24bc4c6f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b483290ad1553f76a968bc7b0227b01920e0d854663f83d9f2e792678a151410
MD5 bf942f4a91bc0ba644771ca112dd7966
BLAKE2b-256 7e7b894b2d68bcd7af0b66ff469835d0609a379c2575045c3eea39bc12b7eb39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dca432817349585e735753b068a986f83a347b2af95f08877210935bf6f6a279
MD5 25c7c163b82bc41707c1864eec388ea1
BLAKE2b-256 d1415bbb905fd412da5e05228c9e3235b6237d01f40b58b6976b5328147bdf7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 336bfbbf0b454d67aa9001d8f70fd998ae70e5fdb62c19fbfc59daf7b6faa58b
MD5 4993b9938746d80ab190781dbaa0cac6
BLAKE2b-256 8d5b4536ddefddab8b9ec989ffea59d87bbc0ba0cc9bffa361d1a3aea0578d56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 19b1ff186b5d8f37f64092e90701c813a1e4c53e4210c30342d610edc06e0133
MD5 2544277104de6d19fcb5df4c4ed2f9ed
BLAKE2b-256 e7e8ccfbde146997993ec73f45cb80aea20bfa5882f6cd49ce7fd3d4204697a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9ef9e359325222e434712806c4b977aa521960399ccf0bdb5800dda065239aed
MD5 123c050496043952d71972621e5994f3
BLAKE2b-256 9710528fa3b6f3d05b90f211410def254e8846838f362555e40863cb0331e247

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b5549472c5565a6f55bc998fae434bd974ef317cecc27dde97b738f72374271e
MD5 b947ec8d3462ceac49a02f138590c800
BLAKE2b-256 2dfe50d80b66a1a71f304cc98adfb96be96de4b90b59d4e3d6719df338dee759

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b328f59927005d1f4712dead9d81d551e510200addc3816a3fa52aeccb820f40
MD5 d39bf299e0d1fb924aea8053b5723c5a
BLAKE2b-256 e7f85270be6ce789e2c910be43a9fa90ca6868cd623d07e1a03e22aac17793d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5c3699bd9e622257d3075ea466d7c53c3843bfe3614825a0e4a6fa79d96e4d84
MD5 1cf231068c23c6ac165f77f0259dedd6
BLAKE2b-256 930e65e4f625bdcba0f22849a125b74a18f1ddba0ae8fa2faea71abbb53802f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2e362ea4fdb4f3a698ae45a02fcf58773aad67273bb16d145b6de3fa92b0102f
MD5 cc241102889e636a2e503bae1ad55ab4
BLAKE2b-256 35f4813c638cc45c96285001be3bd885b3189a91c77f990fd1ec7afccbe62b46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a9b067f5cec7009d67cba9923346468eb7a6e28d678ecc51468d65e5ef76b587
MD5 c1096fa5d3deb9a1b253599f53ff579b
BLAKE2b-256 fd10fc4388e62cfb7a6f54227279ec5d2bf24fd4c1ea7127c56095fd686a000f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 367b4a3df38d4ba39fedbad42e8a0c768df9792e9945adfe5cb1d8adfe12b9e2
MD5 80cc1f18db4ffe6b295be86ac586bbad
BLAKE2b-256 4075476fa80a51ba6ddfe41da2025532c2e81f3742954d1d5d35baf8a1278eb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fc8811084399e4e2f4cf3dcf968363b45ddc605d079271a80fa1cc610965ca93
MD5 ab2dd47add4e343424c4b35dde1a6c19
BLAKE2b-256 aff31654979cb52a278e1f767b51f6847aec85c6c3867ab91e27126840ed8edd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7f8a8a3f5700505f39ab2aa40b7ac693a36e2a5e25b6a1c6f044447152f7dde2
MD5 36fda5bf7c2f141537ab1a66bdfd4e34
BLAKE2b-256 da5abc4fc471683c70b7e2706ee789d3e49614678dda075ef903c802e30dea1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9c2541de40ea971b7b67bdc93d7b25303a5a3fc084b38911a0752562d672c895
MD5 ad63b455545619b7c9bd14fd0a291bb3
BLAKE2b-256 df3d8394f13b585331a04ec385d8e31b2bda8b95ebe50464a3a595f6dadc7737

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 990f9616f060bee4235b1c2b19121ed5f3d6da1d7ef8740dd8ff842000bfd846
MD5 f5c432cffe5398f21800cee28dd469f4
BLAKE2b-256 a62f797be4579896345093ff29376af8d00901c64a8c3f147d223a469a31e28c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.42-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9023da98ec72a9790dfa2651fdad01ba8ec3500befda4b0c51b07d8c8c47458
MD5 47db88e84ccd9e6fcff1613e86961f22
BLAKE2b-256 ebd9d01d83b442973416875061afb3f6fbe4e7ee24db88ee9792c102a8bae339

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