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:

  • file: functions for reading/writing 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
  • 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.24.tar.gz (201.6 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.24-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (739.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.24-pp311-pypy311_pp73-musllinux_1_2_i686.whl (768.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.24-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (829.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.24-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (742.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.24-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (568.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

attoworld-2025.0.24-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (595.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.24-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (716.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.24-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (592.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

attoworld-2025.0.24-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (566.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.24-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (564.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.24-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (739.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.24-pp310-pypy310_pp73-musllinux_1_2_i686.whl (768.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.24-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (829.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.24-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (742.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.24-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (568.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

attoworld-2025.0.24-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (595.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.24-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (716.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.24-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (592.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

attoworld-2025.0.24-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (566.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.24-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (564.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.24-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (740.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.24-pp39-pypy39_pp73-musllinux_1_2_i686.whl (768.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.24-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (829.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.24-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (742.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.24-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (595.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.24-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (719.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.24-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (566.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.24-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (565.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.24-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (566.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

attoworld-2025.0.24-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (590.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

attoworld-2025.0.24-cp313-cp313t-musllinux_1_2_x86_64.whl (736.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

attoworld-2025.0.24-cp313-cp313t-musllinux_1_2_i686.whl (764.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

attoworld-2025.0.24-cp313-cp313t-musllinux_1_2_armv7l.whl (826.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.24-cp313-cp313t-musllinux_1_2_aarch64.whl (738.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

attoworld-2025.0.24-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (593.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

attoworld-2025.0.24-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (711.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.24-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (563.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.24-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (561.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

attoworld-2025.0.24-cp313-cp313-win_amd64.whl (406.2 kB view details)

Uploaded CPython 3.13Windows x86-64

attoworld-2025.0.24-cp313-cp313-win32.whl (391.5 kB view details)

Uploaded CPython 3.13Windows x86

attoworld-2025.0.24-cp313-cp313-musllinux_1_2_x86_64.whl (737.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

attoworld-2025.0.24-cp313-cp313-musllinux_1_2_i686.whl (765.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

attoworld-2025.0.24-cp313-cp313-musllinux_1_2_armv7l.whl (827.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.24-cp313-cp313-musllinux_1_2_aarch64.whl (740.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

attoworld-2025.0.24-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (566.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

attoworld-2025.0.24-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (594.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

attoworld-2025.0.24-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (714.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.24-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (590.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

attoworld-2025.0.24-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (564.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.24-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (562.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

attoworld-2025.0.24-cp313-cp313-macosx_11_0_arm64.whl (516.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

attoworld-2025.0.24-cp313-cp313-macosx_10_12_x86_64.whl (527.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

attoworld-2025.0.24-cp312-cp312-win_amd64.whl (406.7 kB view details)

Uploaded CPython 3.12Windows x86-64

attoworld-2025.0.24-cp312-cp312-win32.whl (392.5 kB view details)

Uploaded CPython 3.12Windows x86

attoworld-2025.0.24-cp312-cp312-musllinux_1_2_x86_64.whl (737.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

attoworld-2025.0.24-cp312-cp312-musllinux_1_2_i686.whl (765.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

attoworld-2025.0.24-cp312-cp312-musllinux_1_2_armv7l.whl (827.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.24-cp312-cp312-musllinux_1_2_aarch64.whl (740.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

attoworld-2025.0.24-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (567.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

attoworld-2025.0.24-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (595.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

attoworld-2025.0.24-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (715.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.24-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (590.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

attoworld-2025.0.24-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (565.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.24-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (563.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

attoworld-2025.0.24-cp312-cp312-macosx_11_0_arm64.whl (516.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

attoworld-2025.0.24-cp312-cp312-macosx_10_12_x86_64.whl (527.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

attoworld-2025.0.24-cp311-cp311-win_amd64.whl (406.9 kB view details)

Uploaded CPython 3.11Windows x86-64

attoworld-2025.0.24-cp311-cp311-win32.whl (393.2 kB view details)

Uploaded CPython 3.11Windows x86

attoworld-2025.0.24-cp311-cp311-musllinux_1_2_x86_64.whl (738.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

attoworld-2025.0.24-cp311-cp311-musllinux_1_2_i686.whl (767.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

attoworld-2025.0.24-cp311-cp311-musllinux_1_2_armv7l.whl (828.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.24-cp311-cp311-musllinux_1_2_aarch64.whl (741.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

attoworld-2025.0.24-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (568.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

attoworld-2025.0.24-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (594.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

attoworld-2025.0.24-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (716.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.24-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (591.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

attoworld-2025.0.24-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (566.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.24-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (563.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

attoworld-2025.0.24-cp311-cp311-macosx_11_0_arm64.whl (519.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

attoworld-2025.0.24-cp311-cp311-macosx_10_12_x86_64.whl (530.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

attoworld-2025.0.24-cp310-cp310-win_amd64.whl (406.4 kB view details)

Uploaded CPython 3.10Windows x86-64

attoworld-2025.0.24-cp310-cp310-win32.whl (393.0 kB view details)

Uploaded CPython 3.10Windows x86

attoworld-2025.0.24-cp310-cp310-musllinux_1_2_x86_64.whl (738.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

attoworld-2025.0.24-cp310-cp310-musllinux_1_2_i686.whl (767.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

attoworld-2025.0.24-cp310-cp310-musllinux_1_2_armv7l.whl (828.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.24-cp310-cp310-musllinux_1_2_aarch64.whl (740.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

attoworld-2025.0.24-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (568.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

attoworld-2025.0.24-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (594.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

attoworld-2025.0.24-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (716.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.24-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (591.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

attoworld-2025.0.24-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (565.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.24-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (563.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

attoworld-2025.0.24-cp39-cp39-win_amd64.whl (407.3 kB view details)

Uploaded CPython 3.9Windows x86-64

attoworld-2025.0.24-cp39-cp39-win32.whl (393.2 kB view details)

Uploaded CPython 3.9Windows x86

attoworld-2025.0.24-cp39-cp39-musllinux_1_2_x86_64.whl (739.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

attoworld-2025.0.24-cp39-cp39-musllinux_1_2_i686.whl (767.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

attoworld-2025.0.24-cp39-cp39-musllinux_1_2_armv7l.whl (829.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.24-cp39-cp39-musllinux_1_2_aarch64.whl (741.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

attoworld-2025.0.24-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (568.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

attoworld-2025.0.24-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (595.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

attoworld-2025.0.24-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (719.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.24-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (591.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

attoworld-2025.0.24-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (566.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.24-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (564.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

attoworld-2025.0.24-cp38-cp38-win32.whl (393.2 kB view details)

Uploaded CPython 3.8Windows x86

attoworld-2025.0.24-cp38-cp38-musllinux_1_2_x86_64.whl (739.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

attoworld-2025.0.24-cp38-cp38-musllinux_1_2_i686.whl (767.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

attoworld-2025.0.24-cp38-cp38-musllinux_1_2_armv7l.whl (828.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.24-cp38-cp38-musllinux_1_2_aarch64.whl (741.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

attoworld-2025.0.24-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (568.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

attoworld-2025.0.24-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (594.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

attoworld-2025.0.24-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (719.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.24-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (591.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

attoworld-2025.0.24-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (565.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.24-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (564.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for attoworld-2025.0.24.tar.gz
Algorithm Hash digest
SHA256 b1c05431111535cff1e0b2630bb8a5f337bd8875a14854fe3cf9be4b4c7c55bd
MD5 0403f10b4f699c8d16a7145dbf684a15
BLAKE2b-256 7c14b2171a07228d3e9380c2a74d56c5483859ff9aeb565759197b48ae5fbf2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 36eae0d8d3cbd9ea9fac8a719caebee5fa620775529a51e53f2302ab329a2bbd
MD5 74736670596bfb747c5b2a5be42d1182
BLAKE2b-256 ba76789cf5a9dcd1e55f5efa6f6b183c7991fcc247e46755675b7030d4231fa9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 58e96052c9256d1384aa6e5afb6615300d9ec3b9830a401dfe5e59faa1bf3e89
MD5 67ac229957d70adbb95fc6c953e9d36b
BLAKE2b-256 5eb769a0e81c1d29344f7fbac86329ae8d1777b13d33b75f76057a202e711b62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 32f7e5a000f417034b91fc245b1ef91abce38dcbf713a771c7fe22ad1ce73f96
MD5 b7b1edc9fe155406fdbf1ae82a5fc3b3
BLAKE2b-256 662cf3e584e382fde98d419aeb86f7559d866adf1942f2755c7c8d521df254d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5d0cc036ab64d463367c6698d3ac1de8e72d4a9711a11d404436def29e284c85
MD5 23e4105f1b69fb0b348b46a8bd302207
BLAKE2b-256 2dc32b77245036edf5b6bb81481483f98de19d16c003aa6ce6b70a097edeefdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82959a91a970e483786d4feb068a84a87bd0238fa53c56690f8580f4952551cc
MD5 5e6064c43bac9adcac1a143f7e04283f
BLAKE2b-256 565a5e4adc63e0928e221c8979ad1936381095d10af21b70530404d283147197

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9340fe9a6c04363abc3ff1117258a0af7cfa625282b02ca45eeb83108d6d4846
MD5 37d936f94a6ba89e923b4451596b7f81
BLAKE2b-256 c75e1cc1a34fd0f861304cb8e1c06ea195a33b87e3bdcf5f3966369194fb2a62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 688afe3dbcb96e15fca00071d11c5e9fad26dbec8d641f7418fb4b7a0f772a59
MD5 aea55c21371322cb0e6c70220b716662
BLAKE2b-256 a36183280ffee5d0e5f68ee11c5820ad571f6678d070c99d73190d6299fd8cbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 12bbcf7a2aa0906d1813f9023d072ba1f0ab04c77106ce3025db7958ed5df92a
MD5 a8d700a0468d3b263b8bbdfda9eede0c
BLAKE2b-256 66d113f74d7cc7d624614bb609b9232f843819d56e58458321551add108869f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fe98748015042fede7935207d4ceed30965c56378be97915bace6b197c11321e
MD5 9a22102c963e9d7f17151a7301bf90b4
BLAKE2b-256 967f3fa1f73191c2a51dff0166a07b3929ae16e163a53a03b72f05ad2b552fca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f98daed27d34e0eb06b4cbd448b221793196a2517f13a0f548c2ce3c131521c
MD5 d5adc5265dd9a5ab050475620c2785cf
BLAKE2b-256 61b753a6ca72b098958a2717ce1b60a26617c557425ade85e0d6b51cbf3ed012

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bff2d56b70de14fadac535a6353f7f79b1046830b000c0a53299726c8c042f39
MD5 5e8ea393188500ef3509f19b8403feb7
BLAKE2b-256 98e470fd22551d932507b938c0e3c1b3f41f9cb7834b38e18fd1b20569b7a776

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3ff20198719d5af1466f8c9fc1e4a74c631e7433a208ee803d466e0040de5d80
MD5 6c8999cafea5013dec06716d6e33c27c
BLAKE2b-256 39bde12b2868d0d81c24098c9c840d8a0616e93c222d78640ee99fa96c2be576

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9a8f91d5a8aa33bef7c49a63a88ffe6f52da0cd0c0a2d45f7e38db84bbb6d983
MD5 6a4120fe06099ac3c90c0d7d9d918a6f
BLAKE2b-256 4cf8d3a6e2acccddb4462b3676675ceec9b14e00894950236985f84db13a831c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d1c7da5192a7d242ea57ecaf9d08b81770336f28db47159b9a0c84248908f4b8
MD5 d1bba30c4ff765efc51e938c74da76e4
BLAKE2b-256 385bbd555984e2bde9be12a5f42be224a870fd4d8b2cdb9f39f680fc8111613f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb1f5c4c9649a2141d30b91bcff70cc8c318a3aa2ec7cb0c1b65db97811021a9
MD5 6c9b5dc977f3d045c5b956b8232c2185
BLAKE2b-256 7832c80627657a42479afded03d793102e5f23a83b1ab4315c1ea9e95c87d407

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 25a510aa1bad3bea6c0ebd8d72d254777e5582dee0b0d19d27a735c1286361b2
MD5 109455578aca77eef46b17c34bee085c
BLAKE2b-256 fd1b71658dd1040a7362e85b77c318e4f047d321978f0955290f55e78362fefb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 90df8515a451d54439dfb61380020c0113afedadad286675dd566351fd8b2323
MD5 2777c6c0435c23449ca37eb98bb9a87e
BLAKE2b-256 d398699be35fe85b13b038ecc67100a0f0b9e5b0ed1636d5bd64658f615a5615

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 31b602b9823bbe9e65a4ecf3e1ddeefdf89ea90d6f48f841eb9f64595586c0ba
MD5 e91c9c9b1b0bdff5d80451827639d751
BLAKE2b-256 47142cd2e3718aae8359e1a10e0594698d3283aad4eb8c47fa83693aefc31f00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 79d39cc0a3a9829ee18c02378ee240eecca21b378b2892b7cf1c6fa22573fb1f
MD5 5d08892ae5679039e8240b16516d543c
BLAKE2b-256 4d2cf33231681a862ca5ffa9354dc7120e1f5498f0d3cab825ce38e65dbc0518

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 37ef01a7c04253270e55b74ba62947ff1e527257d874966b027886e736756f5d
MD5 df607cec65dad4509cafe7e769cd0ce9
BLAKE2b-256 8deb105b5907499561d73479c3266639006044e7f5531b2158df7b1de69518c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d9ef712d80b6928712d8aecb39c31dd2f37a21241fdc75e3588c5338084a287b
MD5 440aa3e1f8e1bbbc766e1180d63e16a3
BLAKE2b-256 d1c6b20efeae1a92fcf7c0851e85bc67b6a58f5885f54a75cc211edaa4741350

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7d8c4418c7846edc87ab85d617b661d135120fb9824536499731c47411d51739
MD5 610b9d54393377c13d6d5393e22ff67c
BLAKE2b-256 a3eee7c605ed354d59111b39804a9e8e4601040be43b1257972f6fa7429ab21b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 163793e5337729d4d593491dd38742ec49e8aa3bb7b2dbdca43566cbe9ad6b52
MD5 ce37d1b72763a4d3cc046191b00aef10
BLAKE2b-256 6546b2e2e43c544c2917240bf41813cc0e13b52aafc85fd4d715bbac53e782d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ae8c103325bb115806088199c44267f26074d46ba1f599270cc79cb1d3633907
MD5 38ba49997b1bd5877742a40e7df3aba0
BLAKE2b-256 39c0f8540b8e979f3462ffa44ba790ab3518c5c012d9b676bf3efa833145dcbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9868898fd33fb1903add2fc3ecef6f314d17cf3662a0c5c1f008f320a2136c46
MD5 ba8fbd3b156ac9c045733482b99de4de
BLAKE2b-256 41049697df89bd13cc1590e915e8cc99e5bb505be589668ed3a265d434f036f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 247ae7607ac35da5241b1528abfd72851a071960ff76304d279e7a52415c4af7
MD5 b815350308eaa2a069ff7a26ec7b1eb0
BLAKE2b-256 22fdb048e90587b0138e0ef182c8890092527c39810cf468e47035e88a391924

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dde16f47b6d84bfc99354690b3715cadb64613be66759c0f9f03120195afa0cb
MD5 69aeee6d7dd5d3b2c2689ff877b17969
BLAKE2b-256 7a18fb09ce50c8cf773348da8c1dcd0d6f1564a642c83c28204e09dfcf7b8f8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1034ee21f18965f5e292ef2b4b9fff217c2b502e9a28a3c1ff94fd55ee725154
MD5 90bbe60d049489b5ceebb58304637091
BLAKE2b-256 338c19a9fcf55e6d8731ca0d5df1046e6d36195b3a51b8f316a4eb06560bbb70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2bfc0aa1a3a1284863e1fc7de77c8b1d231f9ae52c52d628e7aa1acc45f4ece8
MD5 334b1835ffed37903799289d67bbced8
BLAKE2b-256 92dc64a0630026e0abd2ebb554a19f23c130c920f7ef0eb49a56c6b78ced547d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 027bb2c05512edd6f950d1987008f6bba3d2d1902b4fa9330f312a8d2c0fedaf
MD5 01084223493de2e1793b996827707be9
BLAKE2b-256 4926e601b207eddaeed333210823a4321c28716573eb2cba42fddb52c64e2a4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a7a7fe39436250c2e75156faf9d40cc01812b2cec060a9ecb34f57a8fd1e213
MD5 7495fbd055d8dba1dfed8483ed3c40b9
BLAKE2b-256 f860ab9a4ee86bff522a810af0b98d29938f213240f328bfdced6ebe921d6ec1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d1633495834a99d08bc069615f90c5b37c4aa6b889fb30df8d4b465ed95ed967
MD5 bebb19b2c40e1cdbdb925e2b571a6aa0
BLAKE2b-256 99a1dcd2346e7c09daea9ecf498c04ba7afd92199740156af2ac8d28594cf990

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a51a4c3e4274d0ed8fd41c0d55d767f829e8ffc380dcc3cec45a100688fee418
MD5 0b5393ec8ad2749fbd5824594e31ed64
BLAKE2b-256 37995fb42396b599391cc074433c790905c9b75a4a60ad6dbedb16b3f1fcca7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2cbdb4b8ac8236e34e0fca735b7e606d2a17e5a3c38086638b96b3b57798131f
MD5 a010ea94e7acfac28217ed9446ac48f1
BLAKE2b-256 c7d078740b1f40fbbc1d8c65ea9bc8ea3aeaeab6f6f3d8ad9e95c55a9b69d08f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e8a712bd364c514f322a9c1661c11c5d50de292202f660dbd6c3cd39de7bd087
MD5 a64a8e0962870ed2d73bffa418c71aef
BLAKE2b-256 fdd78ed56088e7e600637ab7cb8540038a4ae86d4c5f87bff2ed7c93e44fa37e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f323d508f764c516b21bc88ec28744762894cb78b8a371bc55d17e08bc2d4a8f
MD5 65908a891f69f04a7d59c65f4ce852e3
BLAKE2b-256 1158af8f5e14a32d66c75d0216241a47e6f21cc48c770dc40b6d3cd9163ba7c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d5c87b5f893ba84c8f72a88f9042cca453bb8a1f05895d94caf26e79b18c4b88
MD5 d94714e4e9efc4d10a5e79e779040160
BLAKE2b-256 61ff6d9c92eed9f72df29cfa27225a874f638ac27b8f8b6d4e12f6a235ceebb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ade7c7e877c2f2a22a79103c68835d6d07a8726323e4dc0ad8770762276354a
MD5 e7753e793428f1f2806b2ca0d45f9c38
BLAKE2b-256 2065a0b2620268ab4b68272539ed6603448d6ea06a76090857d4b6d80c6ada95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2bdd72f5cd44c2e11338b629fe6e1bd6f609f175df74cbc65791eef2459492ee
MD5 410ee229c40acab5dce2a81b49fc07a3
BLAKE2b-256 d48f2cabd9fa0cc78a29b02517e309414efa49af7fe3146cf7554d5055d9d86e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b7644278e99204262fb8a5f1fc2782784f432e7d3ba1a955c149474dc44c4a58
MD5 89aff382347a9e14cbd6bba673b233df
BLAKE2b-256 12083b27c94939f2b41831db7381f4a16edab8b084e1285dcd46e1186ecb8133

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e757a0815f3b21265478cb234ecd3840ba0aa28cea376c62ec2eb6b8385a23ae
MD5 fbb3b18510bc28b8cf87e777f774f89b
BLAKE2b-256 c2e91819b00dacca833159e1f41a2ba1c658d97052eaa5a17a33d7693e14e80e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 874352c477adcae69897a36e52a6681623dae21a9e464f13272f2b67b14bcb45
MD5 48825e113ee78fc36440661db9205c1a
BLAKE2b-256 f025268d227aab454370c23a0572d639e7e6cbc4bf2ba9cd946669f4a794a97f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 da2b7c6f5c62b481444c6f61acdc039183e8d1760ef775116ccdb2cea86c2bb7
MD5 3ac55b0b2ca7b3da83ccce300a02b962
BLAKE2b-256 1c77bb0e4ae7c9e6d0c1ed81510d4f5229cd92cbf77670734f706dc2a6dad5ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 449798cdfbd56f9c7a8f9427b1c395f482d8aeb182fd4ea0ecaba508c01b0cdf
MD5 e12aeab192ddb97aeee53cf0f9c63dd4
BLAKE2b-256 adb3791ae8ef21012c58c3fb3a0d06dec1559246d99e0ff2765e6ad6993be4f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7b6b08db4f0b75e56cb2196951cbb62eaa4ff25f80a050e1562ebd416fce389
MD5 7a7678875ccb639eee0ccdf280ea1ec9
BLAKE2b-256 8c6a9d26bcdd2a2f04bce4db6c6541cf61df65c1684604d39d72f9a5a1b0cef3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1043fbee0aca9d6d85ddd0b0a47446e307954e0ae9b6fe3d2340bc1c536d7fcd
MD5 c07fa4124312b609c516acff5d02fe3f
BLAKE2b-256 b471a8d40e6cb29283df4393c4fd7f590913418b6a4e50193d1fad9a017a1a5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bfffaf388d1eed840fcc42ee0adfe6189b7f4736bb53066f5404977a3b7d0274
MD5 dbc9af9b3f748241f34f82f2612c77d4
BLAKE2b-256 6ed37e01d7e7052ce0f7730327a478adb8ce3b5eb2b35c54eaeb45b056e3ddce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 33cb704136c80a105a3e8624ed80244c1c9558ae2c2718b2bdc8a8e0ac5aacc9
MD5 6d798752f60628ae3dee8b66ee6b96f1
BLAKE2b-256 15643a162983d8d550fb67497e1343a08acd76e984fca48478b2b1d90fb97663

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1833e8bffe12ded5ea1d346f8dabc38b51524a8d55e3b64d6903e1a0bae6b7e9
MD5 592413931a166eb132f72df142e4cb95
BLAKE2b-256 8eb614b9142cd6bb49cedced9bcde7c755475a75794526df6f21e17476cecc7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea28b58f350c12b5a0c40afe4cfbdfe1a2960fdd246609697ae04fe7cbb227f0
MD5 c9fa1dd5c42c5587b82b19f7044932f5
BLAKE2b-256 41675a9f9444f0d35696b3c76b8ded2fb5a6fc1c6626414ae27040df687b9127

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b44b6628948709d96734afb5eb7b6db609e6426ca318c6c6313e8b12849ebe2c
MD5 67da9ad59d633b6a8c1de14348951266
BLAKE2b-256 f0cb32c48ce32d97bae7bbdbf0a8e9e04718b5625c44574a248f5ef8e6690d35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ba2c2306727358bd96fe5f844b3131c41c651e78eac3b839c86b4c6d4360d9be
MD5 2932f308dbc1e0f0f33823c39e634d6d
BLAKE2b-256 7f2edfaf0d1be0e32fd0c8aa31fc39f4d0921ca963a5817d73ee5b43324a6829

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2497bf179a5515524ae8d541b2fda8cac93498d0b16b0f41f82ea1a71e38191a
MD5 9660be1844e6b38fb6b10eccd0514f7c
BLAKE2b-256 51a7f5d944655ccd69f1e80d05fb4819e347297695509f661505c50b0b93859c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e680497c76f96f4373bf96d961c373be13f853d80eaddbeaec05e206522b600f
MD5 40b77c1f069655f6b7606dc64deeaf8a
BLAKE2b-256 6769cdc3339301575a57b909c010811fa1c8c0b33d505269b79efda7a72dbd85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb98cea56e9a487aecba08f1743608a5e57d3edb2e9313242cc5e4aec0ff24ac
MD5 d32ebbeced8b5b687d0f0013012f0a20
BLAKE2b-256 bdf2560497e4379f24968a9fdd91188f3b5eb9fc489ba4b6bccbceb9c4201e39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4ba9f38767ea0f4980e0a6e9fa125a1aa8eb5c6b10b7bfc7011200018a0d097b
MD5 7a181d0ff05fa93e65a3d65e1b7891e3
BLAKE2b-256 a02aba990adc1fd6fd03c95bbf6e905018ea49ca172702bfab42597f4b1bacc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9b3cf316dc15c1042aa40732b8184e048b0875c22039e7de1a504c658060621e
MD5 bfab5a13af8e9c569dd255e760000598
BLAKE2b-256 393c1622fded22935d88e2b7ee5078c5cb4cadcf9cd25f68eda31dc9d74a864c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 54a5b3ca957b2b7b2a7681b9ebe00b51d5c15027c237fadced0c38cfeb2882b5
MD5 3d9748c04cb4af62023237335d878582
BLAKE2b-256 8e42e1c94293de2483598889c2f9a776b2b5a0b094d03e2d89c146c5b4a13984

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0c3c1ed09feff97fbea980096fd1337c942185a3f30f06209b279a6d1b78c2f
MD5 f5bb9b4ce01015d6fe57c6813cdad114
BLAKE2b-256 5a33bf917d46820498c0e7138a51e5cfbe9467dcd018ace3ec1256f4c17ce427

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3768173d4bed4fc70567171892f7d8bcb43cf7309f25cd8d09068b75f8df6800
MD5 ba96f9287fbc0f5eb9a44997c394eec3
BLAKE2b-256 dd40ef216d70529a2dbc33ab9459d85ac99125833406550d439be5cb24788d83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d9a6c317abd8f407c51d279ed3003c5879e6cc8806b653a340f5cb48ae5392c1
MD5 55ee6bf6081a51d349e054cf2b5b488f
BLAKE2b-256 f9079e1c7265e49abcf12e164f17858518216e9b604492042f5f9bf32dec91e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 238fd59ae3252b4e99ed2dc7195efc5d92a8619df29a4121216adc393790ef7e
MD5 61d880a60477169b854579ff989a804d
BLAKE2b-256 847cc1f2c34be5fd1026477f9c2032329793ba994d36b4fec4f3f51469c427c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 26e0f88c319ffd39dcd862d2bac1a3eaa064cff9d4af0cc8bb05d01776f3eba3
MD5 5fb7a2357ae0c8f085035a417aea21b6
BLAKE2b-256 c85a8a592e614caed254dd4ec86b1439d6415ded9ccc6fe338ffb7e458bb53fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fcaf1fe85ab5e963a37e9ccecb4f4fd4b379a4d08c4adc7f4b9f7b8a56122e4d
MD5 3e6072c9d0d331b638b75c46ef6b3e21
BLAKE2b-256 be5d8bf44f66224e8daab7bdff06554cbffada211b73c8c0e56a35cc585288ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4271acbcff1d172f6bcddd84460c003ce64377db699b17fecd427a382a83201c
MD5 318f25c6e9827f7862f82e22cce4b521
BLAKE2b-256 b1d2278abac15cf6d41fcfa1a93d5e250d3a03f42af62171ac1da5d45a20fb14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ffd127db1228f20e75a7398cfab610762419c2c5ac517ec48baaeb5598cd18f5
MD5 38c8d214a3016b68c2def47a660c4d41
BLAKE2b-256 2b406c57c5eab8ae04d588822772ebed19a20874d9e4019035da0308e2e1256d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 56613a3b7da9e04b24c009ff83cfbc22f994014c60064b8e54926ade22b81bcf
MD5 b3340ed867b4221389cc850f4a4dcd55
BLAKE2b-256 448f3466c31b366fab3066b4278f890b78de2d06498333260b4faef4eab36f56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2f7bdf57814337090329e6cfc8378ce87565af75a950a12c168803f3977af668
MD5 b12f112688cc8b928e955390e48536eb
BLAKE2b-256 443156fd18bf82c8f481ce69a3655ea126e46755aba7e1a4d1dcd383ef28879f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f01de02a0c85803c4f7ca811c461bab37a61bc9554b03ea15cd76cc93922545c
MD5 a61f30fde446af9236394437111c807e
BLAKE2b-256 c6993569fbd0b1646f19060691cee6ac99ff4f30b872562e75fa9024169bf0de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 164481069156bda5789d3870cfd9495e485f92a6ad9b2ddc1a1fb6abc8a05140
MD5 38e669acb72325684fc989ed5db98a4e
BLAKE2b-256 36b7bef0a62be7f051bc32efc09a2791f3fdd02630b3e65ffe586470f169e751

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2ef99c09890bf5f8d2ecf0e631e8d4b4f956b722bc3502b2f2f0179b750f439a
MD5 4d7b690b50b55ba96cf7e9fb3da698bc
BLAKE2b-256 568617395ac1a843d9c33fa0896b80e182f1e8d7c75c2e625fcb8b82ca33ae7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0785d356129f1028f8285da49a8dc301143c20e7ebe2455e6ff1d4ef64d8bd91
MD5 6e2b19b08d16579378bca3c5d2cd2fa4
BLAKE2b-256 0c8560c845cf0b9693e523317e13169783deb52cceeeee9f2ed117ea4f8a0897

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 778b9008d3e20dc1b2bfa524b38a618b889437c15c096a98959fce234fdad65b
MD5 45deb9c2de57595751bd9d440e885976
BLAKE2b-256 00e95f5209d019d17ceb166191b4e14517a32f39a436f6516f31d752c3cf960a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4942b86a29b5f6bdfc76c84aae2c6ec4e8673f01e15d5e995748a7026834068f
MD5 ba1844bddb1ebd7ecee536e9771f23de
BLAKE2b-256 ed284c8d8c9be7afb435cab3bceb9c057c77b48931059382eb2365b6c50ff8ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ac18916560583c1a918ed19dd27f57a9fb66aa9462494f6e4bd96b6d3f68e41e
MD5 6fb9a1c377976eb2a925f311d38c6ef2
BLAKE2b-256 9ff14f91f49bcc33a48a092e5d18b109545aef632cf273e9356d772a3ffdc272

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5f6bd189e7f0f0bbf8c4d2e2f398218e99deb6b4267838cd3272dc9a53d917fc
MD5 3b798d34473bb0d7db0af01c892a5916
BLAKE2b-256 7b36aeb21b01acf878eebd72de13f36e7935bb1ffce61c7ba55a2d817997be10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8546d2112696185f35aba0b8f74e5b7e889678d1241aebcb0ca6bbf077a1d045
MD5 5af9443770c0b6e36d10d7c36a2932f4
BLAKE2b-256 021ba76a75abfc083893602bebccf980544cddde90fc5453a9b089b4f67388c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c4ed91f3a2f98d5b8f8ebcec22fe8e6ade5bc2e861007b038a61e44b7fa68aa
MD5 4a702c5fc62ff9852d19ec2586c33038
BLAKE2b-256 a9bef9da8facec9ca34185af92c734915d624052ee1e49d5cf5bf72affd06529

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7e62a5a6602ae2830e653d231aa9d530ef7ca7b54a39bf24c95ceda0dc209ff
MD5 a421b12c04709e221cef2a943569e908
BLAKE2b-256 7b3b5a29c06464d60203d4a5637c24a8362c50fd9ff205121ce7f388b95032d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8a23c991cc70138e6c7cfac356b05bbd8ea492272063697be0283fa94c88163c
MD5 3ee8076c5befa44b91c28532b37159e0
BLAKE2b-256 c6dba82f3d604823f062581d286fc9b69f2960e972202025cb47adc715df4142

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 608e3ce7be15efc0d6df0220c4c49487627d9e5ee159d3cd89776a620c746477
MD5 a501051b467a4ffb3888e67e7aa1b33b
BLAKE2b-256 5c831970ef85b549c8d3099f482d8431edbd3911e84af79dbcaa350b4ea0446f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bc65300208f9a3081b7ca0fef7ae245ae72522c2b30acebdfca3d397578899fa
MD5 59eba3a6f4b13ad6a5a4e79a382289d4
BLAKE2b-256 3e305cabd88486224286b5acd1bdd913dfa91e953b796615acf8896954521980

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6c1fed2876ab1dcdbd1ff5c95daf5b3d30c8ac6175599997799f87b4004c2faa
MD5 a16af0ddb84073fbd37482b79bc3cc86
BLAKE2b-256 bb6735b31f274d0205bd4bfed0434d52243c90b73922f05c983bb9c981d66403

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c2da4191d9d7ba3bf75cddcf0d0288ab67306564338a2e6539fb10baf795523f
MD5 0b323aae54adb285e7c8e9a3b44f9cfd
BLAKE2b-256 1dc4e111dfe67c3b585597e339bd7f18618593ca28861a5dcfd76eb66e6b10d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c70dbad0f5db0d5d3686632e1d9ad07b9b624690073b3d5ac6e2a21b67a6e127
MD5 b72dc71f3e94b46c72c134992b2cd099
BLAKE2b-256 54f0d396fe3d15cd3d7946893d1c0b6d4f9d9e8fcd8894e5a44ea9883b61fbe4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ef51efa5c30e95186245d1f74d63adb14ca2b72d3e4e20ec9f034801fbfc91c9
MD5 b12b7ddbb356f18d9e459a23cfecc841
BLAKE2b-256 0567f6c78165420839d24839baf1ba216bc3112a344753baa954170e3fc73940

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5d64eed8dcdfa0b45d20831c0ad511fcc69d3356c3465ae405c8790aa0353d6
MD5 a8a704a9446ab8dc792ef9d250849734
BLAKE2b-256 5c6489c99f6d3bd572e2dac8540a65005cad52aa2e424a7fcd1769529efb404a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f117cf08ff445e068e343f7d4147b118b5402adeb00955041b6d06b8c379358e
MD5 658b70fe9b4e9b425803d886e90cc954
BLAKE2b-256 c8f2692a0370d3686dc3ecf6fbc8c0a4fff6a73e440d6b05d58d7f404717335b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 56d71f62a0f0d434013a392c273e403b2c49edb4fc5491d7f9c3769fec197f25
MD5 35727042203d823cb942276537197f6c
BLAKE2b-256 a5123a80053a3056a44b9bf6b62ee1015f294dd18994a8e27f9dec618f0691d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2f76c77ddb42bf70208a1097a26f6917623c5328b9844138618d6b14abc99a9d
MD5 94221883552513853ee79265662f6239
BLAKE2b-256 a524ee6189c10c7226bee79e6b16090028997d93f7001f4ce397c633d3b406d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d2b1fd03e74f36460df13aadb62a70750381018f6c60a7b69bd8bf314dafc58f
MD5 caa2f89baa7ba52c3247f036c1e8a9b8
BLAKE2b-256 0e89708749c82d050a8cadc1abd174e2f685606ac305e93effcd73a86d44fb07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4811023ad3f5894f6edd602e8022ba382b778c57d386ffb3baa908163d75d1d0
MD5 e4dec8e50705e9559031a39176db79a2
BLAKE2b-256 f2b0a6e3f46791844c65a066cfeb97fe0a84f6bd8c5ae7abd60b354e553a740c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 61110679df19ff518bd9c01aead67c88fb07a847d86c173c33e4de1c02dbc759
MD5 8e449f76535c2b00f86d09aad27eae9e
BLAKE2b-256 d3467e746d58a2ee9845f3dd621cba90db3ba593335259b129567f078b3f84a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2d017186f61bceedc723804a5e2c2ebf41cd6916f6b9bbf25c3517210e2ddb2d
MD5 2c78ad410273b64164d3b22285da653a
BLAKE2b-256 690beed2cf9265e65c2139e5b3e6341d90360065c542e540eee3a1211c4b3c13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 acfd6dc48a9ed3e2eb8e5ff8ae581fbd8570bc489bf630b5443538ee2662bc41
MD5 098d953f82b8f41d75687e36fc29f611
BLAKE2b-256 77ba4833aa833d2ec912098e62e5147f0b4aad0a1fcd4bc427134adff361ed45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7953f8641179cbaa97cd507c9150942692d623c1168aff0378ca0184e57be61d
MD5 bc8182619c4e93461cb639d78731e4a6
BLAKE2b-256 b3b4ef990526f7fd66fdc3d8270453416d04fc9d9ebcf09655694bb52fbeec57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 53287bfe6f05528c511a2cfc4355071abee2301fd9a58b787ade9f7b84c0af38
MD5 b75ae35048c9fc513c8db6100b815d13
BLAKE2b-256 6d46ca6d7bdf72cbd90f9674128ed0b055330f85bbc27d05008ce25059cafd19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d2a4bbce053b14e87e61c235dcd5daa4d24940f0a6339b40d214609d43e839da
MD5 05664f236674c936f787949312164e79
BLAKE2b-256 a0c7aecb9f33a5b92f2643f25527166ab1496482e1fb4dce0e202278b42899f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c3f0c22e5f8a72aa7eaa0d17804df8b7fdaa53af294986a0972798129c69851
MD5 71f646ded36f9ac00a33d53f846d73f9
BLAKE2b-256 f7c4356ea3ae7ae7a69f012edde99b70c75e1fcfb362b6c730389bc8a50e1526

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 312b036692b95044ca70955a88886fe5a4af6ce2316804067673f595ba4050fb
MD5 a0083fc84ccd728e2adbc69723a3a73b
BLAKE2b-256 aa30d68dd6aafddbce03e4e6519400f13097129bc8a50c018d079ae95651c4b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f0610893c7910c57141c041460fd76fad1dd45153e03ff60fa9e42364b54b758
MD5 5dd92c8cd1903056e8f8e6afc2e26934
BLAKE2b-256 5958cd57c0df44932c7f1cd76be8f1b302fc50e6baea249a8db4d6ae73e69678

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2407ca83e8af69cd26e9f8bf51fb31e685c1084a1e19f659bca0fb31f570cf5e
MD5 45a57cf3ac4a1df0d94ff8d1da9322de
BLAKE2b-256 d937c80c368a74120963b1bb0c157f5d33706c4e83027b4d131709a31b15491a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ceaa70a0a556b25e47b52a3ca3fe15d90b025381599c38059dafdc2d6776d029
MD5 a3b4f2d0e3abb83e43868ec0414ff68d
BLAKE2b-256 0418c68c451323d43edf27dd42010d08074d7ab1c6df3e87aaf4f063a71cc6cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3810736609b70ff25872884474277dd0a2143ee175e6c69fd464e8ff2b7bcae5
MD5 2b039b851aa7858ec83e27864b0a7dc3
BLAKE2b-256 6f499a16f61ee21a0c05ce283778db34e02349728c4bd2dc7fe67d8b2b539e6a

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.24-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 458ce1a37c9dcf507f5657f7fc468bad3ad7da1c77e1f9e0822165a7da5798a3
MD5 36b738595cb0b8ef4c40f34474a85429
BLAKE2b-256 3d79b08b86047b83a35e972e4ebc7e07b608a0cfe52dc4cafab97bd891dc9082

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2174cb4121b37219fdd9350d59bbc84ff2c141a1855922742343007d178936a0
MD5 eec08ae82668fe478f3ed11d96f39cef
BLAKE2b-256 15844988322e958cab3de8df0fc756b103e20e460bce198c3fdfb193a97601ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9e167f5a6c2db5cc542717e9f463e10c13b4c76c72490339a349d2a767584e5e
MD5 87d2253dd85ce958964189733526948c
BLAKE2b-256 419a868f2097731b4e7db3b15e2211b4cd4c1c74abbecbcae1ab457a9e4d13ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7144bca82fb28adb67df10eda84f4864a997a90dd29b52b2289e28433e0d711a
MD5 60e09f5e9162c3dd9f3679994b985a35
BLAKE2b-256 8a1c9ffff4e13096e6dae46749d67b9221e241e726db0ed3d4d8cd86655bd1d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 215a11edaa7ea0c2ac4b899352e784824f786d095be2e874f06a76dc133e59d0
MD5 59af6217fdf284abd1a383692a4454c3
BLAKE2b-256 92b7d68bd27bba732c933d889d6e4070188024f712591b6bf602a9ffbf4e51b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b7f8a708fde2aebc244fc108e78bfa575a306667e0645754357fa4c652cfbcf
MD5 70f1d65cf6de2382c5f5482693955933
BLAKE2b-256 706f00333cfb173fccd648c6326352e1397013ff28c008678f3a9cab585e3a95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 968ffa8d2e7d2f18239d524116ebc1c7d469ba1130252da3aac079e56fb1b976
MD5 1951c816b836406db6b56b6bed1df0e9
BLAKE2b-256 362287fb4d2fdc77b08d60dcf682ee6b437e4537681aa70634806131346df29d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5fb931f5ee79ed0dd21eba782d102a21ed4204fbbf7414fc6f4c7b0a127bb5e8
MD5 800090eaaf62f34cb00dd7e61294d37f
BLAKE2b-256 3fb4937fb0ada3823e7ea9744e75f3d838433d3ea1797b74803b552755db47c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0d0347744056d1ade3b718de323aa596b64826a01405c9667516b0b100343e3c
MD5 7eae67abc4523344aa9086875c5e0a5d
BLAKE2b-256 6acf2d4aefad4d2a95ad9d031dec1f02994fd98f5111804f06906f6c20b4f57c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 810d9879971ca5bde013cc3c069abc6e3cc1eacee8b62db0eb940a7f519a6a03
MD5 6acc9ed5c20d916c70e8e029e6576bc2
BLAKE2b-256 c3cbca375741cc40cbd310df8337ade882d2daeaf4ddacf9d353d52ed0b56334

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.24-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac83b1c5270c4a552b4519b4332c0400a747d60d84647ec52e57be05bc83ffcf
MD5 18ddffec730ef6f451caa8c46669fbad
BLAKE2b-256 195b54c890c2c7f89ec5cbc50f198b9f216615fe94e11d1667d515f6aa549cdb

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