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

Uploaded Source

Built Distributions

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

attoworld-2025.0.26-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (741.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.26-pp311-pypy311_pp73-musllinux_1_2_i686.whl (769.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.26-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (830.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.26-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (743.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.26-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (570.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

attoworld-2025.0.26-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (596.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.26-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (718.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.26-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (593.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

attoworld-2025.0.26-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (568.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.26-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (565.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.26-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (741.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.26-pp310-pypy310_pp73-musllinux_1_2_i686.whl (769.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.26-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (830.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.26-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (743.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.26-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (570.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

attoworld-2025.0.26-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (596.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.26-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (718.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.26-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (593.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

attoworld-2025.0.26-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (568.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.26-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (565.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.26-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (741.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.26-pp39-pypy39_pp73-musllinux_1_2_i686.whl (769.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.26-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (830.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.26-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (744.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.26-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (597.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.26-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (720.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.26-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (568.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.26-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (566.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.26-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (568.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

attoworld-2025.0.26-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (591.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

attoworld-2025.0.26-cp313-cp313t-musllinux_1_2_x86_64.whl (737.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

attoworld-2025.0.26-cp313-cp313t-musllinux_1_2_i686.whl (765.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

attoworld-2025.0.26-cp313-cp313t-musllinux_1_2_armv7l.whl (827.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.26-cp313-cp313t-musllinux_1_2_aarch64.whl (739.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

attoworld-2025.0.26-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (594.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

attoworld-2025.0.26-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (712.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.26-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (565.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.26-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (562.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

attoworld-2025.0.26-cp313-cp313-win_amd64.whl (407.6 kB view details)

Uploaded CPython 3.13Windows x86-64

attoworld-2025.0.26-cp313-cp313-win32.whl (392.9 kB view details)

Uploaded CPython 3.13Windows x86

attoworld-2025.0.26-cp313-cp313-musllinux_1_2_x86_64.whl (738.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

attoworld-2025.0.26-cp313-cp313-musllinux_1_2_i686.whl (766.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

attoworld-2025.0.26-cp313-cp313-musllinux_1_2_armv7l.whl (828.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.26-cp313-cp313-musllinux_1_2_aarch64.whl (741.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

attoworld-2025.0.26-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (568.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

attoworld-2025.0.26-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (595.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

attoworld-2025.0.26-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (715.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.26-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (591.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

attoworld-2025.0.26-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (566.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.26-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (564.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

attoworld-2025.0.26-cp313-cp313-macosx_11_0_arm64.whl (517.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

attoworld-2025.0.26-cp313-cp313-macosx_10_12_x86_64.whl (529.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

attoworld-2025.0.26-cp312-cp312-win_amd64.whl (408.1 kB view details)

Uploaded CPython 3.12Windows x86-64

attoworld-2025.0.26-cp312-cp312-win32.whl (393.9 kB view details)

Uploaded CPython 3.12Windows x86

attoworld-2025.0.26-cp312-cp312-musllinux_1_2_x86_64.whl (739.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

attoworld-2025.0.26-cp312-cp312-musllinux_1_2_i686.whl (767.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

attoworld-2025.0.26-cp312-cp312-musllinux_1_2_armv7l.whl (829.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.26-cp312-cp312-musllinux_1_2_aarch64.whl (742.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

attoworld-2025.0.26-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (568.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

attoworld-2025.0.26-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (596.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

attoworld-2025.0.26-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (716.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.26-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (591.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

attoworld-2025.0.26-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (566.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.26-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (564.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

attoworld-2025.0.26-cp312-cp312-macosx_11_0_arm64.whl (517.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

attoworld-2025.0.26-cp312-cp312-macosx_10_12_x86_64.whl (529.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

attoworld-2025.0.26-cp311-cp311-win_amd64.whl (408.3 kB view details)

Uploaded CPython 3.11Windows x86-64

attoworld-2025.0.26-cp311-cp311-win32.whl (394.6 kB view details)

Uploaded CPython 3.11Windows x86

attoworld-2025.0.26-cp311-cp311-musllinux_1_2_x86_64.whl (740.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

attoworld-2025.0.26-cp311-cp311-musllinux_1_2_i686.whl (768.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

attoworld-2025.0.26-cp311-cp311-musllinux_1_2_armv7l.whl (829.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.26-cp311-cp311-musllinux_1_2_aarch64.whl (742.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

attoworld-2025.0.26-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (569.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

attoworld-2025.0.26-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (596.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

attoworld-2025.0.26-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (717.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.26-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (592.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

attoworld-2025.0.26-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (567.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.26-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (565.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

attoworld-2025.0.26-cp311-cp311-macosx_11_0_arm64.whl (521.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

attoworld-2025.0.26-cp311-cp311-macosx_10_12_x86_64.whl (532.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

attoworld-2025.0.26-cp310-cp310-win_amd64.whl (407.8 kB view details)

Uploaded CPython 3.10Windows x86-64

attoworld-2025.0.26-cp310-cp310-win32.whl (394.4 kB view details)

Uploaded CPython 3.10Windows x86

attoworld-2025.0.26-cp310-cp310-musllinux_1_2_x86_64.whl (740.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

attoworld-2025.0.26-cp310-cp310-musllinux_1_2_i686.whl (768.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

attoworld-2025.0.26-cp310-cp310-musllinux_1_2_armv7l.whl (829.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.26-cp310-cp310-musllinux_1_2_aarch64.whl (742.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

attoworld-2025.0.26-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (569.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

attoworld-2025.0.26-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (595.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

attoworld-2025.0.26-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (717.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.26-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (592.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

attoworld-2025.0.26-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (567.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.26-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (565.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

attoworld-2025.0.26-cp39-cp39-win_amd64.whl (408.6 kB view details)

Uploaded CPython 3.9Windows x86-64

attoworld-2025.0.26-cp39-cp39-win32.whl (394.6 kB view details)

Uploaded CPython 3.9Windows x86

attoworld-2025.0.26-cp39-cp39-musllinux_1_2_x86_64.whl (740.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

attoworld-2025.0.26-cp39-cp39-musllinux_1_2_i686.whl (768.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

attoworld-2025.0.26-cp39-cp39-musllinux_1_2_armv7l.whl (830.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.26-cp39-cp39-musllinux_1_2_aarch64.whl (743.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

attoworld-2025.0.26-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (569.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

attoworld-2025.0.26-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (596.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

attoworld-2025.0.26-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (721.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.26-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (593.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

attoworld-2025.0.26-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (567.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.26-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (565.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

attoworld-2025.0.26-cp38-cp38-win32.whl (394.6 kB view details)

Uploaded CPython 3.8Windows x86

attoworld-2025.0.26-cp38-cp38-musllinux_1_2_x86_64.whl (740.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

attoworld-2025.0.26-cp38-cp38-musllinux_1_2_i686.whl (768.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

attoworld-2025.0.26-cp38-cp38-musllinux_1_2_armv7l.whl (829.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.26-cp38-cp38-musllinux_1_2_aarch64.whl (743.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

attoworld-2025.0.26-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (569.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

attoworld-2025.0.26-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (596.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

attoworld-2025.0.26-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (720.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.26-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (592.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

attoworld-2025.0.26-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (567.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.26-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (565.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for attoworld-2025.0.26.tar.gz
Algorithm Hash digest
SHA256 d2182d0a735735cac0ec5ab4e6382ae00f01a24a6e2eeef4d574f4cbc8a9a393
MD5 0bc161349812d4681462ae4a0a6dabe7
BLAKE2b-256 3a133653a7deb7ce4e9813458041b090f479f54ea21a76632f664679034e6cc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8138f2a67bc42015de0be7d182c826698a656edbe021d993dbbd83806f116bb8
MD5 67e2f7ea91198e04d70ca86ab31e2e97
BLAKE2b-256 611169cf5a23c9fdb9b3bea808bd0c09182ae360f2cccb2f946807ec02b168dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 415ddc6967e542ac6f3866ebc38023fdc34d08f2e6bd39da24f234126f703065
MD5 9360a06ad4afdf08182e8353f812a675
BLAKE2b-256 6143b184c229e185c47a4543d24e46e7c39d8b0190646d28cf3bf29fa4612270

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c10c02ab3ba3429e57c14f2467f127ee7b21a8071fa72f3434fce07e8f8d73d1
MD5 d4206c99019fdc86652135a48e094085
BLAKE2b-256 a5f253ad65b4e9f357715dcda4821026d6d6a90e71a485a358904bfb6c17071c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 32a07336612132e602ebd5da7052620fd6892fe1a053e13b1591974e510ea798
MD5 18808157d0b7de97977ccb3bdf0f22ce
BLAKE2b-256 ac16d8273b6d3bc2a044e564a048ae7a0eec31e812533a16ea7f6f53cc38b1c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6612ffda92afd9bda0558c6020dcba4d32b1d89e7e843975b1172dffc8d81f39
MD5 0793fb2e40d46aa553ee055ab2f51073
BLAKE2b-256 9b7507b63fdc4500f33f5e4a78a3eaec72e1cfc903428abf6fc82f42c2478d96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 50a96e19477aa239afea66c8ca1062a88e490554d06bc00d7877cbdac3f65667
MD5 e0575485c3f500501653f899211dd0a4
BLAKE2b-256 b43fb3e1120e4e4eb82910494c45f255df885e25beb26355062a9301df6775f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 50ee32b87d313cce5bd93ec08e06cf9ac445ec1300655ceadeb980197ad84a3e
MD5 98e49671b75ca91cb91c34fdf12c141c
BLAKE2b-256 98313f8dbfd873d2c682fffd4c42fc9e05d314505cf4010eebcf38a7dbb34fb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 898e6a97b1dece493a449870183b41fb022db7a7a987f41c809c4e88d9e5ebb0
MD5 b646cebddbf62a865ff35bfc2f5455b9
BLAKE2b-256 2a52f7f6c3c169a49f4bbba66008149d4519b06b1009b0a9a55e10abad94f0de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6d9888dcbcd0d4950dd04d2e9f498fef17e511cfb9b70836da85c9b8f0246300
MD5 02c730a1e8edd71efcd0c17e8cb26fdd
BLAKE2b-256 a99798110bf581b258d6fee5241ad1a5fab6b48fa19ee8e9fdb3d2b085ee08b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7fb4ae4deb8f29abd31ca74740c6270549ab5a8b7ab3286b1993d428f4f968ca
MD5 391198a6d082675cddfa3f1e631fc8ad
BLAKE2b-256 f4d147b1c353d055f3e0a5beb9390a21e9eb8385b67cfa9e658feadb6c901192

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 db7f11ca9cc0f56b3738c3e5423c74a455fa6b293fd6740730414df513ef0e99
MD5 d594a5eac885d59be2e9dd5ab8de6c78
BLAKE2b-256 87b24612d5261bfe8a47eb9d914d7913af7aa3ba26e32ffbeffee91bccdf01a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 51e581851158f3276ca1facf869fece7911dc1f716d0cad3ee369681f70c5c8f
MD5 ab2cb3c29e63b9c7cf1fa8d5a7402dec
BLAKE2b-256 7dfbe76f595b8a6f4af3dca3772bb8a44f5b86421b6fd3ab9ee02526a57d7f4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0183ac220f30b4bf78d0d214d2f5d66addde279f024f77626d23c5855915de79
MD5 3a51f92b23c0cd4d4de23a0403cccf64
BLAKE2b-256 b5928910b6fd75df2de04068faa7cb85fc16bd7cb1e893a4bb81ed4bb6ef0800

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06a66ce4552a70421a1b242d51495e2c2cc702afac4f84f89efa708aef4a2353
MD5 25457d515ab9d3cd7cdd5b86d725869d
BLAKE2b-256 d3d7075ef163174f78756e07f6df45a6b480c75773e383f7d49c39a8f39bae22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9555ce2af3084fd60cdd80e8bbb9f0e2f4e52c1c88948e49256b8dc69cf04b46
MD5 c11bbee69b0b64dd0af5582e445573f3
BLAKE2b-256 434a94243cb99b84c2ca3b2bc95eb851712dcef13618a9eecbacede829777837

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1edcb52815383616d924cfe5550c97f42cd7c2ff11569a59aac4a5f9ff678069
MD5 71f385b04ee4aa27b9fb9b622cec2eb2
BLAKE2b-256 94b5be574233e50e06373a2b13aee92ee57df6165cbfa2169c8cfc7a3527593a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 856042b653b3301a540caa84bda34965cae597ddd2ddffd26d5a273e29b4f06f
MD5 54f2863ab7c7a9104b6294325e5cf192
BLAKE2b-256 2c1fd9b188993a8e7e0d625625884d45d9af2b5f99ec8e5c3554e93df147ba43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 37917842f7d091ab3772d97b19fefddba69deef3b967fd425f036c2f6623cb06
MD5 d15db6b75b47d2c88159e1e263dd55d7
BLAKE2b-256 3d5df51cb9eb16a81d98b63f3e00366009438c22f150e4270196689d15014e3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 78ba88d802d5e42fbefff4dddc6419ac18bac43675d319956b91137cdae6d43b
MD5 d811ce5c69468f078872982babcca4be
BLAKE2b-256 0a182c0232a35222042bee36bf3e7fca3eae095bc51974335cec332e0bed37e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5dfbbd671836a0bd5b4e4576fa5f8e46fe1d5c388181b5d0008e3da6efe87d00
MD5 2e706d5bbf72315d5f190dd2dc015ed9
BLAKE2b-256 654aa823660931874ee98a852be4400f1c3d76faa4db40dea08cde5dd0950a64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5dcd0cf6f3108e5257a05424585e440424b75a53352d12291dd2b8387180d7d2
MD5 76d3edb64cc6870bfd5b3e26a471d9e7
BLAKE2b-256 062df8813d83e418b85dab025e6a740c55e2bf570bac808ffa6509342d053f19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f6f9f26c091f08b753822b25f90abe6796708d827dbf249d92a562fc0b033dcd
MD5 a5caed7eb44d5e3a733a84642319414a
BLAKE2b-256 d52fdfaa0abd599dcc5e0503d43d477a9ea76bca44acbbaac1a934ace2efc6fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 247ca38d98f294c145ee91beed672cac267fa66f9bb8f69e5fb79e1c309138e5
MD5 262246f8f87aeeb7b782018814a9535a
BLAKE2b-256 afec4595ca3832117905d0162f7314b3b491fd8a1a326855d6a6b075b6a46b04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f8386a6239b95e02d54bca2dafc4c377ba3c707d932ebaebafbe7ee92c00e1e5
MD5 da93859e736eaebb2328f87c9962c7e3
BLAKE2b-256 f1596c20d60776d80ca6d760c9c2717d5d91abf96cc0f44b4d7f075615288760

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 124cb548d0a770aeb61e054f97c8fcee363dd321fe9db71fe42b080693e42787
MD5 4bbb22fcb96e8646776564583982150b
BLAKE2b-256 e454b64ab3a9066a0354da8b42f432664d3d1debf0638e4e851f666a470f8ba0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9a2b361381c0f89255dd1084072bfaba4d6479c5967d78fec988d36641a576eb
MD5 f91058893f1e8af414c3ac3866386f22
BLAKE2b-256 e848ae760b7998987db92e74fae1b2b3a193a0003b40aac8aaf5b1ffce888e83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 75c762a789e01669c893d5035486d7a5e5cba9d5bd03cace51031e9f8665c34d
MD5 5ca893756e8c7a4da01590be65ecbb4b
BLAKE2b-256 80e8ba70959977714f021d6f56e0e6e7871ce3db564442815cffe1f49dbe2381

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bce663aea528c68ba796e17d02a6d102a4b68ba0647a80f79069e8e9ef7146f7
MD5 73084faf697de1fc6722c3727e305507
BLAKE2b-256 41dadbe964f1d7a4be53f01fb779f1cf19d5c9ec6dc58926d16c720af4911887

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27aa8121fdee49973ce1d68e5565e74025b100b6fd882910c2592d19bdc6c1d3
MD5 6b62feeb08b3e69998ccb32fd4004f3c
BLAKE2b-256 8a4a77b06a4975d7efcbec2abd7f5438f47f28e72cbf3153bcc19f845f96bcc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a7f39a066aaa02e290a56f8953c5cbf772e3d32cb6096a0d412107fd891c2aaa
MD5 699ffe7a2a7191bfc620ac27795faffb
BLAKE2b-256 e7a84069ed713b495a199ba46672320d15b6e7a75618459140c0d873d87d56f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 98d16625a4b613ffd4357d65c4c8a5d9dc36b1d20fb45e4cabf2e90954a7a6b8
MD5 c625c770833ad29e6d3bf64772689035
BLAKE2b-256 8216b3e8b45ac9e2fdbe2c314f7588a948ec275a2ece27a998c95c81e5ec4fa3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e55b05d51f3b4fefb0eeda9d190af615a60c9d2897cc07459ed4df32e825c613
MD5 489a837d1a780c61ec70a1c0da86a6db
BLAKE2b-256 6f4a13d37f3a5dac6ddce31b8e1bc1f61ba845b4d3d6a6019f70c4af78a88094

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2366b7c813916b7b9ae0e2d9bd94bc90ec8bf5b0c0f7c5d1f617c5313fb4c926
MD5 5553952a961484e441a20c1e430d365a
BLAKE2b-256 04bbcd53fb887ee675b78ae2f0ce19170348449c67bf0d411d9824b2370013b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9d0e0cdf32d054e0500c8d67944f0ecd4f8d70f71a431e245ecae5d9651b3647
MD5 33b840c82c139e6e988e9575185d7a3c
BLAKE2b-256 fa68f8ec82f3c11b072a24e019dcfc101cfd90d79772323dcbaadd92cbdafe53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f39a2243519f28a2976c735cadb0364d32f392cb367a9a26af3bf36faf1f4c01
MD5 4a33e0c5b2516b6de27d9d69cdf28000
BLAKE2b-256 ccf88b6a99996c85f3a5f680fb67851cf477a906472be77c3fb8eaf8c0f201cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 61e00005d8173ba6d4a071511a61cdb0b87023914028595dd9ca864bf78f116d
MD5 f35bd4e215ac2233b338bc101f4ec252
BLAKE2b-256 1585474c31fa273906d6b70b89541c289188cec92846e06bba64db55d83e14ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c9ccfe04d5120f123059b3bb3a429a1e7cac1fa6872987397700ec2265b0fb85
MD5 6ba663338e73f3ca7f9c1e050f4224f8
BLAKE2b-256 9d2f51d4d916bb3976cb3012847d5a8249bf504d308eea71558000cb5e4a7d63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ffe630f6e1167d3a5bab4e4ca8b674c8f585360395c97bf896ee3740ef4b0990
MD5 6fab10052290c13d043726888aac54f3
BLAKE2b-256 a7980fd3703f4c8724aa17b50fe2b7071a0351e8fd10c69629236f0b1b56b9b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5b0bae74f555e030a7360a705241bfd5915abea2859aa5a63a90d0d09d694814
MD5 532c82460be59ec0e7ee1f8fe3e107e7
BLAKE2b-256 78c51fe4e40caa1b7801e98429bb1ca88f0a398a91764d277dfd632985b7bff8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 746758cadfde093d29af123fee98949e281f9bd2e448c25450a541051bda5097
MD5 407888f83e935c27be8dad50810cef47
BLAKE2b-256 aa42b51d214866d453f6c03894b19e50c981dcec880bfc17db74619535424463

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 25ed88a445f1d6be8a396dffbdcd5998c32a4fdeda3d362e02f1721432bf897f
MD5 ebe76fe67fdb16bbdc0f5006f932274f
BLAKE2b-256 23b851a9b6a310127838d25cf8d8826972286adaa186ea6e9ae78a6a28264eb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 77da1f1f6747bbbddbfdd44532cc123f73990c8e0748147be12938a01ef308e4
MD5 3e887721a64d38b41b697917610fde55
BLAKE2b-256 69e6e9a0541cc89d5025e4d2d5c478ce6fc90212dc7ba3c5d29040b3ab2cea59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a76684bede38e4b2bdea02699313dfb12d6558ddc78255532fc76c76217b2038
MD5 77c5eca9eb82b60749919f7e2950ae95
BLAKE2b-256 0e3fff8ff68cf24cc4e27a275e39bf21f131a8ed048c276a83819664c79ecdcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fd264aa047b9f6235be5d5c059782580874c8b7f6569e21f1eef183f6c3ecaa1
MD5 3c1594fe31222592dfbb3d2f629ee5c0
BLAKE2b-256 66c9c9002c8728213f17c56cc57a558a07b77b1b26526ede2765b23bb92f87be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3936a9ce69b9e5e4714f78628febedaba257aaa70699408e25df4fdb5bb25374
MD5 0e91564a5dd6ab3748847e03067904f5
BLAKE2b-256 a6dc339f70c1d5ad7f1ef605f871d15632743a1f46f448334a190994e46e0e52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c6e145e96a58bcf9aefc40bb40ebd79b1140b1224ba0c0ae08447dcb0be742d2
MD5 8518bc5db1cd67261eabb45213ce8d63
BLAKE2b-256 9d92dabfd6d5067c471918c7b5a3c963362325ab1bd8021e65bec3d7ece02c86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4da6e1bf304dcc7e7811861bc9ff07e1aacff486134347353176675429052f38
MD5 e39414e1c044b541a888c5942fafc83c
BLAKE2b-256 423836786bcfdc1baa09ebba037a92a40ebc46102f9b558884bca8ca4166bc5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 45553c21d48bb92cfc91e66abe78f91ac3b299f7c85c5bd2b763bad16af4a3d4
MD5 f6bfa3a7e2093126626d19a5a4e8ebc1
BLAKE2b-256 9c317e311855e97de34fd4d4a15d42b001de76230578e50e8d65a015b007a9b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b968b9ed93c36d9fd3b57b16891c3f1bf864653073f397c9c1f874e519dedddb
MD5 df08729f68abb17d23fcdb1f778c44fb
BLAKE2b-256 82f384747e660d97b358b4eb42b73e7088338c4f75a6efc580c29c3b812ba855

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65932d8751c7fec4a53e7ccd02156a18dd3a0f3d2234ea914f3faecf52af4cc0
MD5 f38c7146ba48e6bc47ca1e5db6ec4d69
BLAKE2b-256 87d39a8839fe317933ba0019bc1403bbf8255010eb63236f4c668d7c0b99f5b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 735dab533cb49e9db8101ecfb2cfd118d0b00fd8a8ae43e26bfde3f11e28b497
MD5 668687f17d7b0fe898b70081029b6bf6
BLAKE2b-256 88aee27b4913cf163ebd0d7ebc32490b54ca497f885b4bc41a96c006854a7ef0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fc7e8dbe2767f216cf8744bda1e2256722a7a3855f842390cf9be8eec8eb7e8d
MD5 fbbf047553d9129ed9578d77ae49185d
BLAKE2b-256 7746ebdf9d8cf6c566f0f3f616382223ab8b64abc69c05839fb50155189587c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e14d512025219e2544baccb02d116e7ca7903484a3c2cab905f34b19308172f6
MD5 3ca772918210a2cf7eb172b795f34728
BLAKE2b-256 deac10deb7e9e7ee2f9127b8fa628680792bdc05f0ef31fa179cb2923aec4baa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5efcfea173b5043087e6c817e3dbe94ba9dacaec97b7cc239e2cfc014cda8c52
MD5 f47443385b3ddfc2b5fcb2f0e6fc391b
BLAKE2b-256 43f30c82c7490bc8bc140dcfc6762c8307d3680ca82c4f82c30b9a3b4daf025c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a4a8ba136abdeb7d43a06b0bd3ab1c181b2c31c7e5f95121b53ef5d53db8390
MD5 c132adc05fda885e4caecd62d8e6a884
BLAKE2b-256 563b08ab7c4f3a75359aec70c18e8d4cd7ea7b41058d41f2ac23de23970acbda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 618497c177a3616e6240b9b5536eb75a5c4d24cec2110191d1fbf3925c8a4b62
MD5 745610eb55591865eee5764b63aab761
BLAKE2b-256 7c36d6ba4cbaa70f8d1d76218e6ab8d46270ab34ef477ce55f6b092caab85fb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7c042bacc3e688c7c8102c287af63f221ee2d2e80ac615878763728bee8ba8b0
MD5 a80505bc3dc391a84be7227fcdf6252d
BLAKE2b-256 1d6f011fdf5ea31f04a3162799bb989eb76c356a36ce6fecb442f9ff5e912836

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a1344e6ae856e154ed9f36bb9682ad36a8d8a64bd19016cca57b05ee7ddc12ea
MD5 13d3b272f69b677c506756b0e32842bb
BLAKE2b-256 efb3df1602c4d07392f9a43ecdd01db16feb3256d08238e5476e8cac2066496d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b49ed0cdc49f66b710cf7ce06b01620d94d0e47936c41a733ff4245c2b5c5fd
MD5 fdf7c210ea1fdea535db3e3907572d9f
BLAKE2b-256 0753368039031e10e78e52e0384609c5105aabda574023393df21353c8a8350e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 80f33a0b420c11704f033cffddad6d7be2085bce6dc1df6230c5ee2c645ec81b
MD5 3544459b0a60943edce0050cd776a4b9
BLAKE2b-256 0aad7c37bb1910e68172268ce48df105d2e5601367c6260c120c6711d525637e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7f7fa52d13b047280a114d4ccc0ba4b8914f77bcc9d16658ac30b12a31597134
MD5 57198959b1e82fff57a8c7f86b05e72f
BLAKE2b-256 e34ed7f8eb31655190abb390623d91dcdc002ee34bd12ca75d2d83321378fd2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5bd4e1a78e321ecc4a960c6e4f0d97be903b8ff531350b410e0d67f36b99bf43
MD5 96d18cccc46e630342d78c59158bd8f7
BLAKE2b-256 1f7a6dabb7944c57f241aa3679acb2e52aa452caf036fb838c7dfcfecfd31068

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 10abd08c5e870b0fc4917350d7f78fe60ad37c06e3cc8f6bd1e3ad095162eaf8
MD5 ecb9d855cb5b31ec88d7e57d48510704
BLAKE2b-256 e3cf84c57ec11f5b823d162e172e23baa425c9feb934b4c93685d3308cc6be8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 75ca04fac8c2d65b9c1a55c5c99f72805278ae5e974faf32e22be84a92b24c21
MD5 9fb43846a6cf62effcc39bfbe1651eda
BLAKE2b-256 924d45dfe55486ba6a007fb4255c19a9122ae45453285eb75763749389054784

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a61d8c74557d13ee80ae49c803d25c9b05269c003399d7671b770766d86b595
MD5 ce82c250505e8816b721f95a741c4b2b
BLAKE2b-256 bd503fc5db8153f4acaba39addcc7b69fd37a793accea2b92caeb0219450959c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 94b54d2a7a14c424fc0552427ddd4bd71b03cfb94669ebb2fd18bd88c28172be
MD5 828ce5c5e9a393be8c6289935e3a04be
BLAKE2b-256 e450eb1b1fada15f10bdfebf262fbba21a25a43479c9501bfaab7d3ab69fade1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 974ab133e229aa9fce6454312f4da4b400f403284ff60bafde2d6d913ee5f8b5
MD5 e442d06e66141fcbc11ef712a7df3ad4
BLAKE2b-256 6405cea40494b7da94f727d484ac080e740095e93d16f974f3af0fb48ec147c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1a4a670d48fd075ef4695567a05001bfe3d79071308acfeb27321c2738a836ef
MD5 ede72f38bc62e2957f512b6626c19025
BLAKE2b-256 ae3aa40eb5b76721a894b9f2325772c79f9cd60cc1f4577c72da94f310cd145c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 56fb5c357a635f087dc98c48aeb4a4b5a82db27b8e6e435ce21c90dc7d2decfd
MD5 aa9ce385749bf1c63a51801115099793
BLAKE2b-256 e1299fdd2b06c9267f2e2651c5f616e2f134975557d60476cf4b84860fed143a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7da47dcab47bec7456fe66020d578d60a17a120918a3e45d9a499716786d3ba5
MD5 05970ebd0eb3718f7ebcc98ea90689db
BLAKE2b-256 e789251a220dcf2d8d3a5f8fc8b7e0a576abdfb147dc7045669363343cd854c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fe2bc04708d2e767bde7b36a0be2aef178f510e37c369bd91181a8ce5a515fb1
MD5 b58255c7f022316260050a4ce645694f
BLAKE2b-256 6774fe2fb88491148511090dd0d82a390bab64897895fdbd67f711bd997e67b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5920b8af96fbad0646e03695891acedfbc71ddf38c15fa3810605deec454dfad
MD5 9f600ef4968f461e6c6cd76e6af02406
BLAKE2b-256 6a41adb972bffe16b06b18aff7e3c3ec7cbc96dc853ee4ab1f009b2fa12f2512

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ea7019a3dc52151a81842d5bbb87e490d8d80ecd18ad601ad721b68e3159fd6
MD5 d28c6dffe368c78beb9fbbea75b22ff1
BLAKE2b-256 e84512c7f8906eff4bc1b6fddc3fa857fab2c1180dac1b6702754d045a253bb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 17a5a22256d9e6c47a56d6752fc3ca6083ddc3d2698e60592951464a986bcf79
MD5 27b071f876cc4beff9dc9474e642b191
BLAKE2b-256 9adc8977fd787ff33b0bae6c9aad510159cc1b4c1db5b7cac570d67254c48ec7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8add4c02faf49a1b09a12c4823f490fba72553ec68ba10104fbca365b04823c7
MD5 f1c91508b5ba377ec4cd446eb05e6d54
BLAKE2b-256 858b64e83f036576baa7316afbd98a2969c019fd4dadbcb5db89a09c277c15f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7c36e65a6a52453a86543d571200292d56b2a275f0890bab8b49ef4652bbd22a
MD5 03e2741e41c68a84e2fa6b0b99b837ad
BLAKE2b-256 4faf110ae4d7df5b32024c5de0bed509d87c4a3775241b7fa9cf6ae927e320fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c4862b06b763c904d7be1b217f5fc16fd23bc2a4092388c4450aacb0f569ad0b
MD5 85a0aeb792f2f4c2c899c1b701a08e1e
BLAKE2b-256 6c5c7e3561a4466a1984fd96265fce87034328fadd6db822be04b43f25592c05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16db6156b65d3f0825359a366352dc19d049cf78c932a5de67ec21fc17485a32
MD5 31827042c9bfbed2746c8c051e17c3e5
BLAKE2b-256 79f49783309a32c06c03bcbaf05207e501e034676f6eb45ac72c22ae0069fae3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c35ca6645a11e540739b711ca5d1890cdf54ea078bc3e97728c6e0ab66ac074c
MD5 cbcc76dd96d5ba665176ecdeb7730799
BLAKE2b-256 4f9f1cd862a92a9161a6d94b7adebadad42e255b12bc91534fb7732f78852d10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 93347989b4bef46ba8dfbccccbc2e710ea64e4eb1bf0d8722645444b03239217
MD5 3004be7176056d9db1710d9927a8f1bd
BLAKE2b-256 476e9e45090b5f91e29b8c7ebe8aa2b3d15d3d33ebe22477f1ba5fa71b763213

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d5899b829d7ab79fb8930c539759e63ec0f17fb12cd5db8a7863609cf1bf4cf7
MD5 c89f1c07bb5b35976328a0121d167106
BLAKE2b-256 3a025f6c6cd53086ecf321c6989efbe2542918620c5883e705f984b1ba055fb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f032e007e160b1bf551636ca1938e0bd9c9b39b5ab86c732575f044934dffb5c
MD5 56c1c556aa9ef1282998f227938a8ac6
BLAKE2b-256 ce583ce677c9dd5e56fa89fb7dde88562064d5acbf95091e46417a121fbbdea9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 45046bab1d7377d158bdee678d84e8860e5139fa20889ef7acb5025da51a198d
MD5 a8739246c15fd8986e017fc5382678b2
BLAKE2b-256 ec1b846fad4c2e4f42cd48fade1d9cbb25623dd2d1e56d85549768e2b9fda396

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9d4d3a9248ff5a95ef8e51980232b3017e8e4d1ecfecd898fc33f958537d377c
MD5 10c10ec205117f3ea2d9a22678715630
BLAKE2b-256 a21b12ad8e2140d4ca7ff79926c7babce9608218e3bf814583bfeb467ccf1855

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d30a7b3acfe3b03527a7c242df0d0e215d832a0f88ee14058fe8ab07887d843f
MD5 28fed96fbe999b539817926dbd653623
BLAKE2b-256 2236fa5b1dd3b3528ff8101c013fb92f1562105be0163fa399048dc221dbd028

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 40b9f62f519fde7e2ab6dad04fd8799a47d69a7a225403089a8aa290590841c0
MD5 2b0a67f9081b7741436e91e1da54aa70
BLAKE2b-256 0b3f801aec13976d49b88f007da5e1b9abcb7b7d32c73d361ba2dfbf40555c06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc1397b2a14ee19a3df0b2a3d0231878e7b1e99afafbf2d80757eb895ea60cd9
MD5 0f467ac4291268332cde32354cd99313
BLAKE2b-256 4cfeb2d06f2f30f80eaeef906da2d8d39ad054f8ca3f9fc5f67265e98520f6e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3f5fcd17ff5fefd13af380543bb7f8a2db67d010879089e2562d249ba58cef49
MD5 254763514475e32f865db46659abd217
BLAKE2b-256 86d5637253f66623762302ce67115a49d5d8fd112697129dfd2a27e3ef62d106

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 760356866c881a78bf16720b1bf7a7fdb56c4eb2c1fddce266615ccee894c1a1
MD5 c81e582652f7287a065855903e345942
BLAKE2b-256 c72a2a438956f1b47f4a0bbf094b796dbd4a2fa4f8b9c0acf1e9c0fbd965251c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dac2a0a0f7b5ce7a4967eeffbfa06a7bd13f538649fa20d2b4ca1c4d30a2713b
MD5 2675310fb3d75441bfbe2a3fbead7d1d
BLAKE2b-256 942f6107fa68fc0ff1a8d0a297c703a4506396446bf27fd9d8593e9451be9b02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6eb55fa3c830b27acf3fa5f73fde7d4f059516cddc2774fd9697455e7d5ec6bb
MD5 097c5b50e1d9595ff91736e1f42dcd6d
BLAKE2b-256 c846783e2b8a8dd45497d4d74b5006b9fbb9ef6bd2cd359be6db2ce78cef78bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 177a7a5eb758662d3d2c644ab08b03609ff0bc934a7f2743db9b0c2f33f0f84a
MD5 c3b9fe8b6d7f899ac59cd8347a41acf6
BLAKE2b-256 ee31f92b33e8c20b445637dc46f12446027822bed63cbf8e4666cf78c2e113d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d5a2f0e6b6bb40bd4ba3602dcac5d33199d01724a69b94a6cce9e980e9baa5ab
MD5 8b06740332e0c3a1a8018c61b1905375
BLAKE2b-256 4fca17697a79ee4a8e599459ce4e74cf05fa5b92c0e453b153bb56ed4218b004

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 01b9bc6e16760c7a38ed519f0394b3c76ffb3f1a0ff06c497ad0171c7eb12e0b
MD5 416a541ac7f59263c1f163a5fe15dd57
BLAKE2b-256 fcdf0fd12f9b70fada48cc9ca7e140513436f48f2dbc7bb7dd0166291f86a9de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d357b258633ae49b63c4aa8164676026b986f07e6d8030af344b5c41c9eb471
MD5 f8fb8df8fa1fca7c67863ef9ff17f19d
BLAKE2b-256 2b5532b8605f3f96e719b229842c61f8313e483b2bc2be6c7fdac37794edfc7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f21d6c89015d57c1db4aa266a5c347b8f3e22bf67baa193601fa4fa3b0d13e5b
MD5 76f5ee2efc9778a78cf249e519030d10
BLAKE2b-256 e860beb1183f045650ce591ca6b8ca108f198e0d566d30ea718000f6ce8c4eb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2181906c5120bffbded8b31f5f79ea0be225358524bde3115c08e049887b1a69
MD5 8bc1397d45121154856bef0079521a73
BLAKE2b-256 a202a3a393c10fa4114e6f8b2fdffa0de4312f4a768fd2909a5cfc4d77878961

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 50ae09a2c0b9fdd6db96aba6174698b514c5ddc6c73cb5c87840c5ca330116c5
MD5 475abd2615cb180deab4fdf722d7eac8
BLAKE2b-256 2502e00de559fa050230705d06557c00eefa4dc65f9445fd8bc4bf10a780777b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ef77515210f9297c3a70d6e3a7fad2a111a3910d24c59f98a3dcdb872927f84
MD5 c76b2d73537e3dc118d1ce17514f83ff
BLAKE2b-256 72e89bd222b0778edf6952c00fff2374d9dfe6a0f50049ee8aaa083341a1881c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 021da2b7e91db11d2318edca8301b34d59120da40130a6d4cf75c259907aa4c8
MD5 a0fc71f04324aee6eaf545ba4f39739d
BLAKE2b-256 4b141d5694120774da550c72d47a6ca8e51e393b35271b3e9bff3b008b86690a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d9c3a405ac528b160aecb870ac83c07e4a15facf207d1081aba82594c7aaec77
MD5 af605e18a15d7acf4921c5d50b4fa75b
BLAKE2b-256 785514c0eb02e177c089867d81f47065af929798b1face8ee0c9b52157f0166e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d738482e1b35e27e7fbfc290a507fed8c15cc5bc835fcd7c19849e08f31da56e
MD5 249e5d5e07cb1ad4da51cabb5cbae163
BLAKE2b-256 7f8d7b03b5fc76fe5ec51818b3eeeeaa82535a5f7f76e7afaaa871047388ce77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e65359296cf1126a441cacfd56fad5044adcf7c2c93622f2012849ff0bc8c60d
MD5 2de4a73c80b516549c6c9f7c12b51092
BLAKE2b-256 232613fea230d3bea6f1d5ec7ee0cc4a5919c1bccf59a849d0fc3bdf29fcd0cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 08259e2b932cbf1c2efc4a262021cd18508d368e4f81b26142df2d172aadcddc
MD5 5722ad203fb6857e778b079724a2274b
BLAKE2b-256 2f5c4bb373b2fb4cc06e20daedce488b29d40486ebcf5f6628221989c3f56fcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ea7f12f12bc05ffbb47aad8fe2309118247fd17f9e0ddcd0864bd74da1f19249
MD5 eadb80fc2b2f3e185f839af6f33c3803
BLAKE2b-256 2f952a3b225a882b6fe97e27e596d6d13ae45c059bb869ee4ac62ea0ec811690

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d7565d40c2256b6920f09ff00e8a9c5485a65b240a8b8b05acddede774f28862
MD5 b7b84594e89183378c37f853d3d42b95
BLAKE2b-256 a363d7942f5c077214b3a0b6911a72e59a46d357618045f37b1323bec06750c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 56418d241d5b0643db8164fbda59c80a5c732a4546dbc7b526c64bb8baf03e92
MD5 2c38da824201d36582df06550cc86a37
BLAKE2b-256 dbd40e63ed3ae8f9dc0d96428f5e70963061462788944d1b746efdafd41fdecb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1762ef0f33e622e69004750c35cf1d9fdae4c46e7487c19b9a51719601e02555
MD5 d2b2890d601606f0f3dfabde383e2a2c
BLAKE2b-256 81d27bcca88db397952093aed8cc13849497050e9b1a8588d38b2bd2e093faff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 971eaff8abd051cc48706d195fe4f2021819536f9fdd883c8a0c101e9ca6ba71
MD5 88cf9ccb05bc292db2785db02a1afa76
BLAKE2b-256 75403159b69850c702a3b327b3fc9e9e061a3b8546db8dd4edaa56a055f3053c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ac2379359127cae0eba516c4079d7d83d23d0b2b3a594bd531ec59d55bcaa0b
MD5 7da44bf544dcbeaaf0840ecc2d3b639d
BLAKE2b-256 6c10f919c9f120a6a793e14ddc3476c5d06badb3bbd840b52ddc66bbc9cb4818

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 15575322042de16ba16ce5a9aa3c1a296479ed692b4f890fdbde1725106fefcf
MD5 512966a9cd0fff8ec4a2079f6981de0b
BLAKE2b-256 730c2ba314e13e4f2c26fbce05b06971fe280c155af8edee344aa87fa926c211

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3904497dcf74986d22f59a7e723b414ae04d7e11167978e8347629fca16a53f7
MD5 ea1385f9d17bd2687cc51c71c1d81c2d
BLAKE2b-256 a9f0e63ca7d3128676b57c00dc7ca28f84ad7daebf742a7fbf9888b941af9f75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 98d4b44231e4e4eda7619ee371d6121951a5500a57b4c9bf95b97c63e0d45a21
MD5 e75a08a3bb7d1540260633e8a79587d4
BLAKE2b-256 705b88fb55e840538c83c8501545fe159feb6b51a82a45611554854a1c7c63fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4fa2e6d48e3a48ed80757706817b5bd6f32465a8913b86de75b111062d2cc93f
MD5 abbf34e2060491b7828a57699144ca20
BLAKE2b-256 7ec8172b57a8e198d5bb6e29c6bdfe21dde663870c2b6c9c56084f3ee9449ce8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.26-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 323df7e3afa4f9cd125ee5b6b9515f4745f9ed4754f80dfbba5df5a3a88ef1c7
MD5 ccfc752d95906e9a55458931ffe2fcad
BLAKE2b-256 82811074aec003b1a3c71257e638265cf1c3b55eb06ec3a8cf7ad70320438006

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