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

Uploaded Source

Built Distributions

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

attoworld-2025.0.27-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (742.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.27-pp311-pypy311_pp73-musllinux_1_2_i686.whl (770.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.27-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (831.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.27-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (744.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.27-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (571.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

attoworld-2025.0.27-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (597.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.27-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (719.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.27-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (594.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

attoworld-2025.0.27-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (569.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.27-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (566.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.27-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (742.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.27-pp310-pypy310_pp73-musllinux_1_2_i686.whl (770.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.27-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (831.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.27-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (744.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.27-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (571.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

attoworld-2025.0.27-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (597.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.27-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (719.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.27-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (594.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

attoworld-2025.0.27-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (569.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.27-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (566.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.27-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (742.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.27-pp39-pypy39_pp73-musllinux_1_2_i686.whl (770.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.27-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (831.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.27-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (745.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.27-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (598.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.27-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (721.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.27-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (569.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.27-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (567.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.27-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (569.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

attoworld-2025.0.27-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (592.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

attoworld-2025.0.27-cp313-cp313t-musllinux_1_2_x86_64.whl (738.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

attoworld-2025.0.27-cp313-cp313t-musllinux_1_2_i686.whl (766.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

attoworld-2025.0.27-cp313-cp313t-musllinux_1_2_armv7l.whl (828.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.27-cp313-cp313t-musllinux_1_2_aarch64.whl (740.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

attoworld-2025.0.27-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (595.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

attoworld-2025.0.27-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (713.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.27-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (566.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.27-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (563.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

attoworld-2025.0.27-cp313-cp313-win_amd64.whl (408.6 kB view details)

Uploaded CPython 3.13Windows x86-64

attoworld-2025.0.27-cp313-cp313-win32.whl (393.9 kB view details)

Uploaded CPython 3.13Windows x86

attoworld-2025.0.27-cp313-cp313-musllinux_1_2_x86_64.whl (739.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

attoworld-2025.0.27-cp313-cp313-musllinux_1_2_i686.whl (767.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

attoworld-2025.0.27-cp313-cp313-musllinux_1_2_armv7l.whl (829.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.27-cp313-cp313-musllinux_1_2_aarch64.whl (742.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

attoworld-2025.0.27-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (569.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

attoworld-2025.0.27-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (596.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

attoworld-2025.0.27-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (716.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.27-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (592.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

attoworld-2025.0.27-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (567.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.27-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (565.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

attoworld-2025.0.27-cp313-cp313-macosx_11_0_arm64.whl (518.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

attoworld-2025.0.27-cp313-cp313-macosx_10_12_x86_64.whl (530.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

attoworld-2025.0.27-cp312-cp312-win_amd64.whl (409.1 kB view details)

Uploaded CPython 3.12Windows x86-64

attoworld-2025.0.27-cp312-cp312-win32.whl (394.8 kB view details)

Uploaded CPython 3.12Windows x86

attoworld-2025.0.27-cp312-cp312-musllinux_1_2_x86_64.whl (740.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

attoworld-2025.0.27-cp312-cp312-musllinux_1_2_i686.whl (768.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

attoworld-2025.0.27-cp312-cp312-musllinux_1_2_armv7l.whl (830.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.27-cp312-cp312-musllinux_1_2_aarch64.whl (743.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

attoworld-2025.0.27-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (569.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

attoworld-2025.0.27-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (597.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

attoworld-2025.0.27-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (717.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.27-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (592.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

attoworld-2025.0.27-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (567.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.27-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (565.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

attoworld-2025.0.27-cp312-cp312-macosx_11_0_arm64.whl (518.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

attoworld-2025.0.27-cp312-cp312-macosx_10_12_x86_64.whl (530.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

attoworld-2025.0.27-cp311-cp311-win_amd64.whl (409.2 kB view details)

Uploaded CPython 3.11Windows x86-64

attoworld-2025.0.27-cp311-cp311-win32.whl (395.6 kB view details)

Uploaded CPython 3.11Windows x86

attoworld-2025.0.27-cp311-cp311-musllinux_1_2_x86_64.whl (741.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

attoworld-2025.0.27-cp311-cp311-musllinux_1_2_i686.whl (769.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

attoworld-2025.0.27-cp311-cp311-musllinux_1_2_armv7l.whl (830.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.27-cp311-cp311-musllinux_1_2_aarch64.whl (743.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

attoworld-2025.0.27-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (570.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

attoworld-2025.0.27-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (596.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

attoworld-2025.0.27-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (718.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.27-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (593.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

attoworld-2025.0.27-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (568.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.27-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (566.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

attoworld-2025.0.27-cp311-cp311-macosx_11_0_arm64.whl (522.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

attoworld-2025.0.27-cp311-cp311-macosx_10_12_x86_64.whl (533.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

attoworld-2025.0.27-cp310-cp310-win_amd64.whl (408.8 kB view details)

Uploaded CPython 3.10Windows x86-64

attoworld-2025.0.27-cp310-cp310-win32.whl (395.4 kB view details)

Uploaded CPython 3.10Windows x86

attoworld-2025.0.27-cp310-cp310-musllinux_1_2_x86_64.whl (741.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

attoworld-2025.0.27-cp310-cp310-musllinux_1_2_i686.whl (769.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

attoworld-2025.0.27-cp310-cp310-musllinux_1_2_armv7l.whl (830.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.27-cp310-cp310-musllinux_1_2_aarch64.whl (743.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

attoworld-2025.0.27-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (570.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

attoworld-2025.0.27-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (596.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

attoworld-2025.0.27-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (718.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.27-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (593.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

attoworld-2025.0.27-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (568.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.27-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (566.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

attoworld-2025.0.27-cp39-cp39-win_amd64.whl (409.6 kB view details)

Uploaded CPython 3.9Windows x86-64

attoworld-2025.0.27-cp39-cp39-win32.whl (395.6 kB view details)

Uploaded CPython 3.9Windows x86

attoworld-2025.0.27-cp39-cp39-musllinux_1_2_x86_64.whl (741.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

attoworld-2025.0.27-cp39-cp39-musllinux_1_2_i686.whl (769.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

attoworld-2025.0.27-cp39-cp39-musllinux_1_2_armv7l.whl (831.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.27-cp39-cp39-musllinux_1_2_aarch64.whl (744.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

attoworld-2025.0.27-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (570.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

attoworld-2025.0.27-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (597.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

attoworld-2025.0.27-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (722.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.27-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (594.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

attoworld-2025.0.27-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (568.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.27-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (566.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

attoworld-2025.0.27-cp38-cp38-win32.whl (395.6 kB view details)

Uploaded CPython 3.8Windows x86

attoworld-2025.0.27-cp38-cp38-musllinux_1_2_x86_64.whl (741.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

attoworld-2025.0.27-cp38-cp38-musllinux_1_2_i686.whl (769.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

attoworld-2025.0.27-cp38-cp38-musllinux_1_2_armv7l.whl (830.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.27-cp38-cp38-musllinux_1_2_aarch64.whl (744.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

attoworld-2025.0.27-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (570.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

attoworld-2025.0.27-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (597.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

attoworld-2025.0.27-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (721.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.27-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (593.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

attoworld-2025.0.27-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (568.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.27-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (566.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for attoworld-2025.0.27.tar.gz
Algorithm Hash digest
SHA256 46ed6020eb4bd1d37edc11e8f1fd1d224902ae8f097dd0ebac018448804f9a42
MD5 307d68769d98023959fc5e01e699e2cc
BLAKE2b-256 3f201b9b036902c79ba5b9c25159e4b4172b184d7424fff8ca42d303ba3bbbe0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b5a6ca18046ae4f8928caf8edfc53e1d004539073e820cb9bdd078ce4355127c
MD5 69671d6d2046ac4f1c2ac54dd0cf7837
BLAKE2b-256 985e1f5a4afb474a1782d3294febd3d30d726a8d4dbdf32adbdb058df2390651

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e5b2ff3f9def1cd3c54d60b51b33adfd540de56e6d44d3969e15d426c90bc1c0
MD5 6921ccd034130a3c099dcbdc6e9f9626
BLAKE2b-256 b0b06b92f6f40062da4dcc6553c59db2a5e7dbf5a8cac91fcb6c0a35881d7e8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a18810178ef8df04347123a8c1d165368ec00a0b0024090be9be3d4dd3332f82
MD5 1245217f9dfa57cfe4512b9c606482c3
BLAKE2b-256 31de41c5f0a0235267ed3e31e80889e4fda1809fc3f8aefbada1b28784877a11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6879510dedbd137284cd211089bd2adb886f61583c08e8b7b86013e8af035fea
MD5 69e8652e7c3cce0821920a9db44180f8
BLAKE2b-256 799c71f9b15e0ec360c277765adee298e4aec459c09ae5454858ed00bdf46aee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b202f1fd2ed47373a6a19b8b87c09fe63678f3c735bcba170f4b833a5b586e06
MD5 5fba76b601d06114b9fbfa0e9f0f7020
BLAKE2b-256 215c77de074dd832afd457dd57454758c679ada6f390080d3940263aeacff9ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 abd0a85a9d1829f41e802f006124c84581ef3773585593dbde07d74d30cee96c
MD5 14d3f054e2610a3fa45d15111d41d635
BLAKE2b-256 467348324763fc848419db8dcad358ecd2e818310ff52606de76de12cfe7c424

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5aa9793ffa6ebdff8c8a77b75fe1f1a0a309ab125d8974b796cb9ffec6615b7a
MD5 0d51ba9e4b668d2e2f07e3eeeda87099
BLAKE2b-256 30ccd59f2cc29f015f9d323dbfeef917ea9eddd6c1aee9f7ac5aeadf8b23990d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b4ea70a67639f8d9644192d70f9fe094a4bacad612cbeb11fe0a895a62608e74
MD5 53a07c9309c0ef2b066a814e0a25ec5a
BLAKE2b-256 ae49edf6929b0d0ae6b2e27904b60ad3ed123ee924e81ac2da6204427eb96180

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dc9cb64c7f30794095bb3bd3ab317ebad8cb298fd3582da0efe0e1535041c89f
MD5 3b39f7270029881b75e851955e05a773
BLAKE2b-256 655bf5c922b16c001ee0a8ab4937a920fcf4ae7631dedb783b45808d804a4c10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6df9405b38df4d400de71a93acfca8851c103610f9b30b12683ac99e6774e432
MD5 fe74e8723c928e229fd05328183588e4
BLAKE2b-256 122bc425c42d61ef7763d407d560dfbe2d48f5d2364200dd0430adf18b1e8f14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c0515e06a5828ab623dd1da5b36e5dcdfea185efc9d46e7cb3c79649d3cf977
MD5 821762eb047f08e68eeae251133e916c
BLAKE2b-256 19c139c86d5a3c9372df3c64b6008cab888b0a12fb399856e8473d1f62995bb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 853329ff893dc758e3ba452eaad98c44248efb8009c1e3295f246d1589d419da
MD5 613d327a3bb1bdc364a224e770aa5a75
BLAKE2b-256 576a2b4ac6009988f3b65b67a04fe101bf44f20ce3a80e498f853f3ecb84db59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a809aad0d382209cea2de6d4d1fe07c5399ba4b61e8eed38119dc4bd6ada6d96
MD5 eb94aad91f36bf9f81bb951815129f1b
BLAKE2b-256 637f8da6ac6764e7ee553139e2042dc0a7acfebc6cf84a6482b052135e015acf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d316d83b236f4f09c24a8736c018a2376193ee99fec6d399fbb1af2995eb8082
MD5 2d40018d7238cd22a83733f6fa4da401
BLAKE2b-256 764b490b25ac274f3f8efbc29369606fad2d717865d132135f7f886d8ef0033c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8f6d7d3bf6e5f96d2cfcfbaeb083637d0c8df716752a99b89626eb754057f64
MD5 f3c2a7b9e0f0e28efe4be1229bf90f76
BLAKE2b-256 f79311b2e09a202f1942f289cb17bdce8bac52f155dc6c6a5d840aee90a6ec27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7beac9dced7cbb1f07c3ca77d3fd65e6537035abd5ba428348e8e0748dabf44f
MD5 0e50f2623c928e75aceae43009a9dcbf
BLAKE2b-256 979beb9824d930f8d9560e0f689522b03187e15454419c1f16299e4954e59327

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c71092a3ef1b135da6d657b1c1377f89adf1223bc81ae533cdfc03628b1017c7
MD5 b001f7eb00ba7106f7319c84a7030668
BLAKE2b-256 d88b90d81f4b1755a07d30622366f5326ba7d2235c0f6fb14495b7fa78d878e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e70caed74c286472f471cd7808ffb70be95140f376d346ba51b39a152ac14ad1
MD5 08b288b332201db04f47fad29533fadd
BLAKE2b-256 fd4105f5efd5b7a4b108e630b8cd365a2a177c6a69fb4429bb4d94a5ef8a500b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4aa64b369375d4d40e8ad81a6a79171bb525cd0593a3d61e3341d6985bb99b89
MD5 954b2bc7d1b0f9ffd1ec90a45dbc01c5
BLAKE2b-256 310a58ff673be7991f08e00aaa23d3139a8a6f00e8b9e0ce4f366ed1f0783165

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f83d9f830da309af1d980cf9605ababad2c81304b343944e512594cd44798a8a
MD5 b483db828abffda66af61a459784b7a5
BLAKE2b-256 09d7a153e20db8cf314d8ff1dfe1e1538825fffa58c2ec2061ee7e1100d12627

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 def656fa14da606584816354be6d24db393b3a94c6e98c46618aa4a8207a8603
MD5 934b84291916465482c38e0ac74dcc47
BLAKE2b-256 850da98a09c494e7e1eeceb286efddf861e40c69b4babe48fa41c2a95faea4a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5c775bce27eaf0823a63e96c8b46739c164d5e4fd84c5ccde96bde2ffb6ce7f2
MD5 42f0ab2adff693f9a0727b1643b23fe6
BLAKE2b-256 1fd4183d3f781b031e3de1cedf49202afb0a7a953a68757a3c518928e4ba1e1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f28806ee4e8264401ec411fabbc6383a517fc6f915605dd23ac7dea6d650348e
MD5 96ff94b992de47e2b52742539ae90d9b
BLAKE2b-256 eddebd59fd4a5300b781867101859573196a101e132b2f6bfaa26b84ba712877

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc13e0f466e3e2f1342351db1315123533264c017e5989d0d6e47c524e1227f7
MD5 31eed30aebd03989148d05f2f8ea4b47
BLAKE2b-256 d179998558846346fa3cd50882d9e7769e22f7c61f422045dd6c09b966c64f62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3bd8831d8ecfb01fef20fec9e3e5b7861537ecc34a88e1bb91d7c744418992e9
MD5 5f1e922c917f6ae603746424af1d6808
BLAKE2b-256 766164e2d797afff5c17d7c0389d875da171506bf0d95ed9875689a46064b99f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 01fa4392c4bafd5690db63351403b5aa9d58fe3e3b9e617e7db72fb5498f22ba
MD5 92b2249ee99bc22fdf23e0ebb3438e96
BLAKE2b-256 7aaa0ec94e82f91c70beff5875e25978f4e9744190ae52b3771a26cc73756c31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 665de5674680d60cfcd2647f1c07e50bf01bcf70fee75874b94ad32c5fb41077
MD5 170ddda227d68c2aac7c6628637421ea
BLAKE2b-256 7919277a12a94e9a7603a13f83330b26b3aa482b26534e95988f69eabc7c90ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0522c71896518275b4422c4937cbce8afaf3a23ff609bebd85d8f6cdeb67036e
MD5 0ff858124dd3d2715d8f4695abe0ebb1
BLAKE2b-256 bc3bf19acc509c3cf0f2c1a8f895201e98ee062d7bcf331e4ca42cf08f23fdcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f7a7e61c6c03f259638793c760a0758ba885d72333e0dfb3c3e8cf70165efca
MD5 0e056809833f8a8850fc4acdcdb0e38f
BLAKE2b-256 665254aff22f836cd9be66cfeeb46bb07df8c896103098ce6de07920bbf1b1de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 568c1632cf5a20ed7e7011a25ce13b8ffacf56057d2e8adbb5717da056ff6396
MD5 b40a83bd04494c6c9d673b48ea893ad6
BLAKE2b-256 9b64ffcd378e625cf64455c55ea457d7988760b481532b674cd7c5fb54f1a472

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d88a76681ff9e85648b52faed017f22aa03f34ed855044d093c9aca8481df68a
MD5 5ffc29394b34036a4033b069f6b6e5b4
BLAKE2b-256 9328c38364fb2d58f1932215f6d4acbc57f35a178c0cf2aa9587b19791ffec35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 87b8e24309fd0c21d628bd1af8499478d99e724f360cdf4673f7e9dcf2579334
MD5 5ae7e546cb13f2a344564f9ef5c90cb1
BLAKE2b-256 dabc5eb8057751661d2151a4fe9f55d457b405a1c25095fc2736fbb3ae9e7de7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 87414305a69bffea4c49b24a335dcfc1f219ba41cb5821ba351b6e3c84c46bac
MD5 2697f30738b9a65d8a6b5aa99e871dc4
BLAKE2b-256 fa622964c89a857d34129a24199784cf06d7d588b02938e09b74569d0b0a7354

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c7cd66fc72e6fc02487a5ab23a94e55a40ef6480694e540ab3abff8b7b7145c
MD5 8825516ee39bad92e3d3254600b972d1
BLAKE2b-256 4e03a060db54113dd3bf47f6279b4096f25db73521f4920eb6ec95e5872c92df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 270f0f5d05e0d48b81c42312cde31c33401c643d30a4dd626d85bf5355ad143c
MD5 a51dc85bedee06890d3ad97e4e9b3013
BLAKE2b-256 3dcea75b3f9b9896ce8b47fba4a1407f7afc3e90e9e3daced5edf56a91efc0a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 908f3a70e292db937a5716c46c456c22c1d119e27093309383387a3e03310643
MD5 37716b191faa78ea261b01d3885c8959
BLAKE2b-256 f0ea76cb82f47a1a8aa8f772ee54eba30c0d1797dd79991e7501e96242d6ca7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 82f6643c32b16b072ce873967607e9d2d2bd5546775171e6d9f327e8bfcf23e8
MD5 d29284c5c85ac199d2d43da5492a84d1
BLAKE2b-256 3314367b3015b035a5cb9471a16bb9a644560cd2531037f88df4ff6c1227caac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 19501bf440ceef7b437f8e33981b716fc7f3f62fd04365b789137faca85896c6
MD5 474e448b15f481bae6ae419ecfb7fa3a
BLAKE2b-256 d0556d68037e74ab1e97fbfd4cf5b1679f35e26b6bc48b8af2233889b839158a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a8c756de4bf16945fe886a83b7959795ee722bc95aac52af395ba4abfdfc50e3
MD5 a61096c47606937c80b6aff6f0054c1b
BLAKE2b-256 61c77cbf3d9f194384948259240b0e29b36d52ee5fad6f520d6059e50af3f84f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9a96ef4cb7929c5557f429b53ede8d4155a8effee18017460f6c373db4ee9027
MD5 a3a5030c53723163d0d5e264bca3109a
BLAKE2b-256 786941e2f44d9932c9b0ed351b07cca10e0294b561fbc19073ae2f488ab49ac6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e0293f61e473fc1a560da873b88754e299eef913c565830a5cdb1e4a9e5eae50
MD5 6347e7506f6ee27aa53d53995494e81c
BLAKE2b-256 98f85ef1c761c7c2850491aa66cb10d783301076f897601d6e87906724ba4b91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 83faf3a457b3aca88d18775064ceb7956a07926ea1192bee0f3c15de312f99f5
MD5 df1d492cc27fa8c6d783987584de2573
BLAKE2b-256 a2735ac668749c7ac36c557ef462d1ba76a8cda3942f094e8bf4a1b8872339ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6a6754133dadefbe33bfa0f8ecb5f892a7a6a51af88869b4c77441aee322a844
MD5 b2c90048368ced967a15760e7aa2ab98
BLAKE2b-256 26a739b37524519c4be5d2eacd3d707d459add50e43276a0c7b7d45b7f4e8321

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3411237e98daef421cbdb0ce0815a621698bcbe8cdeaca61a5dd4023c077d3aa
MD5 18ce33e052a7dfaaac2a8363845f047c
BLAKE2b-256 62cfa21a36e59ed4cac5575b047cfc3018cd16ff0b209ceca66c1521c71d4cbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf9b04e6274f3f3116f4152cdabf83eaddcbd0dee779c860aae72aa02216108d
MD5 f8113083e230773b4457d678344d45b0
BLAKE2b-256 4a25cf268fb7454c1f433a9fba8ca655e03511fa8b24c43a044b652d286ba866

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 112320c24b659d07d228a49e2dcc53e2f7826c18d31731c92207506614786315
MD5 13367f502f90054ed2500447c543a0ee
BLAKE2b-256 6e98c8c4fa0f03b8840dff1ba24d88215e35be33c84efcda932bb4ac44fae370

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 129679730e45f38e35d8a4c0cd641720919ba28ca0c6165cab93e7ed69bc54b3
MD5 9a0fa0429bfbe6d4e2d01b5f2812915b
BLAKE2b-256 445e34108d757a2ae5259bc94eb3d2653824da22a295a2d32d7657afdad331c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 72928f6fc7a15a81a0afbeacba261ff5a83e32101e3ead23ef7f1a72ef96b2c5
MD5 6b96a6df42855164c32067b2e7c493fa
BLAKE2b-256 bd362be9aa1ecc147a3a17c8811055038c55f0f32e39969b509635fa24f963be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 161273d817ba18463481ec39a5d5835e6094374914a0f7695bea3e0457cd1ee6
MD5 a765084d22d6f1d60e09e5ac94dde0f6
BLAKE2b-256 0654d68601cc9fe985b0fa2b676916cf31831a5aa8e4b402615da1d43579720a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5dd00f7ddce89ed7ca030a65cd862bf45aa8d8621cab90dc834f75bf4ebe6ef3
MD5 e337f018f419544a50591de8f89b94a9
BLAKE2b-256 ded1bfeb0ffba96b9cb9081204efa6769576f8ad24fb391d8fb61d7e5aa67d31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53f8778fba2e33b706815d7f98268731574958390be1162f8dbb3d4e2dbe450b
MD5 ebc0be6920d2c493454f1a8934281a3d
BLAKE2b-256 c022eca8d987e62c5c9ee205df5962ce233aa549abaad40bffed8a7dcffaca9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0c8fb9f27718f027a49a005e571f5e94f225fd8212f04cc572f04a020f4a6aba
MD5 a6ae56c830182645d980534f14611c9c
BLAKE2b-256 0ebdf896f11a6e2629c8291898da4e08595cb75d7d5d84e7b2b245bce845bdec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2555d98cc27dc3dd33bfebfb7dc128514e3f4d3754895d100fe27b6ff1517913
MD5 57e7a88c23de042c1230fa0fa20460c1
BLAKE2b-256 0e622f0ce89251e833ec12d07126c2596864dac500ac1fc0e95e18e5ddbce66c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 301ad1e03537d841795e6d70ad9b4aad5da0ae7a42bf5e1c53233e41eec68497
MD5 778aa473268f99fb7b444406b45955b4
BLAKE2b-256 4eddc11f005dad36f987c93818b353360829fef1a03aeedcc6ec18be3c8c3543

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8cb6d67e7ec65882bfeace0bbf502caa006170f0581e22293bd5d91a9465814f
MD5 dc4e5a83e47457b0337aea2b823418b0
BLAKE2b-256 6d71f4dc6c20a0c8b2f34cf6a26946d869b5cada3f07c308b85e4d756c042f8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 38b04471d345e5f83a87e912caea498a5845641d00dc1b466a62aa23296074b2
MD5 937e7aebcb17e8c78ba07ad5023ad4cc
BLAKE2b-256 8388dd9894fc25ce12bb37d986bd503bf54f6a35494b353b5eb0b6fed209dd94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a6307bb84c2ca0bdb8e32df67ab206c56169b8e337bdfab96f3aed8070f52ff0
MD5 5a91c3c841d12a96b76f31ece7c1b699
BLAKE2b-256 a6ef2bda993051b0a4842505a6b64ebe90135238babe488834e863043514bc92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 95324917beecbb83bd7c05378c3a0ab6a69694eedec1e2a4b332023991522222
MD5 32dd1947659662ac346341b624404f42
BLAKE2b-256 3512042335dcc3111f8d7338cdea1b39f60b2a303f532bcf043551dde1473673

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0573d744cb22636fc87bc22170290f09ebde0368b6097706a094040bcdb8c4a
MD5 c72d53bc9e7d75dd4e8acda9d785f99d
BLAKE2b-256 3fa122718df900f77a52e72ec279b78eba84e3951d253bb4662bdff59ba4fc1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6d5bee8091ebe6f8ffa0b7539f4d24ec4a43a5cda23ddee719bb4cc4b099f31f
MD5 73928c0170a0742d81c6c64a1cdf37ae
BLAKE2b-256 20a76617c35c032edc11ea00709bd15d878566c3072778955df6e9dc785e4872

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 de9643705545ad723329b19664b9e312d9cdc59e5b0667a84deb82a36c7e38a0
MD5 a7627c9514fc7fa860975e7acef18444
BLAKE2b-256 b699fa1e7d2c116263b2604f2a71db7e10cf83cf31e1d6f382ffdc5f2ad2f0ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d7faf6c657dab9c23f95aad6c6cbed0783fcf58352cb4d8d7e0dbfea8f9e6bb1
MD5 dfbb4a5255d448bd18fe25103d75c5b1
BLAKE2b-256 60f7e2931284efc6069b0765a5e0fb225b4af256c75d655c28f0d6ce4a99519f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 23313dedf01d98f839256b813865f72cb75c556987cffe6c0f04cfa2abb92b4a
MD5 fd0324ff3bcc59f099fab9f2cbdfc3e8
BLAKE2b-256 3be759f8e5fa964dbb3d81c32b36b8527422b6953adfe1ce894f173cde9ed045

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 27684c474b61b666ceef8ab45c805006d4af0dac917174107c556ef5d4db6b37
MD5 98cda928f809861ebf2c4c95db68e85e
BLAKE2b-256 fad2028cfa195887a23218e1483e83b8d6b658ebabcf7dd66ef0da92e9944b79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7dce4cfb5bcb4956af28592b9f94aef9b142ec6a4e789881cd1b5732d05414d8
MD5 3ed28c703dfdc469f8d686ba4d86ba3d
BLAKE2b-256 201a74234e427fee6eefc46b2cfd90200ec73b23c6e8ddb727807719c01b8034

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7a0b99da06cb84375d17e23241eae168b1d9f597beb64b0dbc89e95fd5f995e4
MD5 ea7f21ca1c9e220c63da780873cd336f
BLAKE2b-256 7bfced60c511303fdfa522daac33a3a1a1c0c1627d3bbd870abffa2f1e327800

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 16dd78f9550f57c43eb05d930961a992db63bb7560556f5c45aecae3e55f8ca9
MD5 9241c50a75c7985bf7ad578ec707cd08
BLAKE2b-256 60de76e9c30cf3903728993d74bbffbaad89311bf5cfcfb7f7ce842c2dc5da05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 46561d4da23bc8932909b1ac0dac7650ee7ba317f0fc235a03e90ffe2d251b82
MD5 700d9144a327e8829814b979bd6ed65d
BLAKE2b-256 e83363d50a330436f9b275f1d451d2bf2f3d53188cd00323737f51d6607eca35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16846c38cc6c93db65dd1f071daa26133b4015ffdfbd7030ed3adaa062bbe3be
MD5 471ef8f6cbefaaccfa9a8fd2e2ba14fc
BLAKE2b-256 68eb35c84c0fa4490ebc95250a482d2139b4847a3be41a0c798f73f4464f7cb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2f9580c4e145807ded2b41c03e39e4cb159435825e02feb150b66263906fa85d
MD5 fceb9deaaaf74b0531a5d0829cf8fb38
BLAKE2b-256 3bc22f7506add9d4e4745df1693a746031b19f52a4f4aad57420b41d7c583a97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f4fcd44317322cf4129a1d428b84492ed5bee839ae0a4fb78a566d66aacbdca8
MD5 6fb53e2b066357ef2701bef7570ea55c
BLAKE2b-256 10e689d259c67ea5cd894c46de405ba19cb1c33a9e903884fe931ad15ae877b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9cebb58d5cf6932f6bffe8b1d59efb0d4516accf3789f721f526a50153f2e433
MD5 1effb7e63c059c1c15a5de3784b061c9
BLAKE2b-256 ec48231c4c5c9f6d6f15983ef3d6dd640f5d7149b5e10d72dc41c7fe9820db90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e31d23a1abd0d63ead557ccf89f8f96d067de3e225cf4c40170536ccddf2318e
MD5 b6e4abab440a16da32aa154491181ecc
BLAKE2b-256 7ae32a1773380d6bf6401231c0b28aa9c8971a0b0df2bcf91f7005b9cdacc3aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ba2814d4647ef42b2f2300622169ff1d5753aee7dcaeade0b8ef25fbc76ad40f
MD5 078bf9491edd41dd7def9ce5741ca2f6
BLAKE2b-256 7e0a1b99e689c3b0c1d8228ae9ede41a39c6545cb128be96dfb5c542aa2bbd24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f971ef0c37bbbff466bc4ed2d6738a4daefa38d232cb14440b104e668d4b8317
MD5 ed1be6a7f5e8700a1da7cc7499d4c643
BLAKE2b-256 8ecea905750ca2e854659537a5307556c1b0b72fc511a43aebaab1b14c57fcb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 271d09c51963bb2ee75ea6f82fa889c0f8362bb6cfc050ca66243a4653f5879d
MD5 51eb3b879eeb644485a37ead61d4424c
BLAKE2b-256 15b7ac03225894c5b81641a8f5c4d5e54fa911747625448106fef46e32dfc4b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c9c791d4da94169635e0b06841f045ba7ea65e4b24dc1602edb05c73696025af
MD5 400d9a0e6f9b1ae1c466239603f9fd28
BLAKE2b-256 657aa74d59db218066e36e55c00bec623d2e17fed3e6f63180c9b2d89090e8b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0561d92ee623857b4015afbcf338c21518f701da452645eb3405808bc033127a
MD5 4ab29a0fcd6d6db595b5e7dc53a9f28f
BLAKE2b-256 9e409042213419e65b11fca3dbf3c9f1eb7e8247fc665ef30cad6a1e08c416bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff61a9ea3eebf4b0d5c1db8f71cb59f791660cf992eefc84bccc477fc7d534b9
MD5 7f0bae09d69fc50e3b84467d6b1f6fb0
BLAKE2b-256 ae0cb03380947cd1de45817de91212c9e52ce4d56e915330545120adef9a8c56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9d2fd95abb2aff11a39d7fd2a1172366a2ea2351496539512abf0158c32c5816
MD5 5eb38efc1320af7381a06cc50461fcfd
BLAKE2b-256 392e343f6081c2cf97609ba6230e335ea0fcbb1523acc4edcd1f34c54d32202a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 07ee8cefb123e1c7fb64b685080956bfef22b6a9be9601310fa771ea5189ce01
MD5 583186468ee8c7b4763e2ac7dead2ff6
BLAKE2b-256 1782c1eb9a7e86eb711f0e23a533ca5fe813c6e9316c10f09b00175e9a45b904

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 42326d6de3b094151505fc1f069c85bf83b724a0a22958a269c61cef864cc06b
MD5 3669fced6c7bde80fe7a50bd86013b88
BLAKE2b-256 65752464117b1ef2e461fe9fab8fb12ee82a09940b17cdc2f4cf8f252df2abbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a1c28c28c4ea914af266d8d946a8b17b041d26a8ec9e7edb9a75e9d5d0a0ea38
MD5 d34aa6a18f9a7e1989a14c853b6c2830
BLAKE2b-256 7f8995eaa19af39c627bc7d2df7d995331e86298cdd9255f7fca9ebcdb7322d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0559bd3ae7d89322c7d359a55a3736ae521fd83b1ef2949909cad013a7ffa86d
MD5 162dd8fcef2c787233ed3cb1675a7766
BLAKE2b-256 403abb734adc024741ce91b5034e6fa720ff5eb42e529ba215d4bff356fdbfe3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a0f89073175c04bd1e62ffd4cbb202324f8fadf3251d69e280a1d272667fcb6c
MD5 9db7cc057a12bbd4d5e1a0a6327ff0a7
BLAKE2b-256 c12ee504736f773996a5a7b2262ba72c8a3b27632c80699b35a1465565c39b1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9a999abfe1c30a9f884ea8a944a8f7b700905ea7eb1c983724cd7f52cf2b3511
MD5 8ba578ac8b32d1a2833d730be3ededb4
BLAKE2b-256 00ab39f9a27994465ef4b78fe80e8c9a619d18f432385634a6f15cd055041eb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a4a089c0355baaf0833ddd0dcbab83609f652ced6fab88f70fb3c6cafb77d37
MD5 b4c06af4147af249c458559eeaaf45a3
BLAKE2b-256 cd6209a979d8f1c94b7c5354a36ebfaf27d0adb99d49d8e432736183f6598d57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4f90d9ee048388503a0473e9d67153f35d2e2ae4a23bc0b55bcfe4032fcfc39b
MD5 4b6dc7ed2cc37c653ce2d84974f16346
BLAKE2b-256 be63553ed6c84b5a4847cb75268a01a31940340f5ab702b879e641fc79bf9340

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6bc3f81c49bfed4b093713dd75860a91209cdf32f00fe6d490c9093a82b01f44
MD5 0f78562368eb9e8890d2a9886f39bca8
BLAKE2b-256 9dbe07a81cce2bc5d7ce290e49fe33cdd4c62fdd5ab15c84465e807536993c0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 27b0c5b3e9df2d65c6bd20937e00393690f3eebb1befd03f60dabfe5158c65a2
MD5 a8174bac3ec79bf83eaea8ec9e83bc2f
BLAKE2b-256 339dd6a94b1f09447febb621056110b20bd0ec5bdfa13af1817a2ce190f4be5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1e29d9b1f0cdddfaeae25aa8e4de17042096e5f0bda6802029ab7c5716ab1c6f
MD5 881880343e447e80dfe843c7af3921ce
BLAKE2b-256 60cb0dc2468b1ece9d740c8656871e4c644f4739e9e24bca5edc54ebb462157e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bfde53a16d391912ef0e9c53a177af0eec8120ff6f8222c4363e7dd2b9a870d0
MD5 d8d675148ebf98898350527762199578
BLAKE2b-256 2588289842fe316cb419318088918a00843b64aa17799dede7d931e705861e39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a23fc583ea9de105a5f89fe8fad362259af1cb43f1fe26a6b42d8d7c138e0d6a
MD5 9efa14f07b0f33386ee22ee78b77a9c6
BLAKE2b-256 1a2eb9138e320f8dddc2ae87ae8aa0bfaa847cbe5d3808b14986e643b6e5d2b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ddb7bfe24b97406dc8d7275ec857d5c9bad25b22b3fac323a9a15ccb13f30d26
MD5 7c6500510b90226b1fa750064de423f0
BLAKE2b-256 189b172da906e4dfbf3a274f223a6ca888640d116ee0b652586223503b4cfda7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce9affd42781dcdd21837da9a1446b3ccde142f92549b02d54304a52904c5d42
MD5 2c6ba647e720fecf00d8cf27cc7c40e6
BLAKE2b-256 4997748d028583cc50f8444e736ed984e3678c99f0bf4e7ec26c3196860bdb27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 269baf8ace5efae0e975fdb176353b47e7fca3dd39d1ef10280b1dbc20507f5b
MD5 2004f02449a5adc12f0d8b5d68ccd42a
BLAKE2b-256 986901c3338512097f41352f1604a4b9ec552a98a6266bc7b994ad255fda2e06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6d199abac0d61380d2d3fe9607d66971b44b9f4b3c53d186068fa15c99ba9b15
MD5 a4d76fc5ec85bf3cacad0eefa961ea51
BLAKE2b-256 aa3368386bc0458c07f168ce0df5623a985a5245cf6c972c928f759d76ffd439

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8b7cb6bb1761186f166b4f7f98374c5c33eae1b35f5adb91f8ca42a10b8284f7
MD5 ce3147b5f04a5dd76ba026aa22b40530
BLAKE2b-256 d775f7fde78813a52abc254c9f4d9c39fbf523c8560db49c4721cce1e52d0c5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0877f5250b8a3cd103d1709d03f1437b0e5fe88fc72f6bed4465f97bc9a87ed2
MD5 b74a2910c283e377c8c7faf36ea0aeec
BLAKE2b-256 8c1751f1d5c50444988414a4ab09c3bff9c09cdae2604feb134edf919fd4c664

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bbffef58c73e39f06ccb93b7dddd331ba225f629db5bbdbb71b399e7a0870a91
MD5 b32956f7fa478a59d73b510064ac85c9
BLAKE2b-256 0abbf1d6e32b4a85ef2181e6745e7ec72574c1b4e874e8fd820fb5527b97a610

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 484c11f2056ebb6ae0b74962b8060a73822537b55acd2486c2eb9acb79a5bb1d
MD5 9ffdda95546359620eb6e03a14ec5779
BLAKE2b-256 e3b788eb009b0d1007e9335dbfb27ff54d123a0a0c5390acfa0bd00709b0c18d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bad66be319482e099093de666e4c1743bc85602df2d8151982522726bd2718a7
MD5 83d5bb556251b52fd79444761c8c50f5
BLAKE2b-256 57af20c9a36a93d6297202883eda75c6c634f381fc7e3934765a383c499c55e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 199bafb5c3cc94f1ac4ab9b66ce6259ae1b3a7bc343c4d50f8cf5e66f613cacd
MD5 e0d443b4166a1f9d616b4aa874972027
BLAKE2b-256 89b34cb18aa143ee65c4026123556e015ff4c34ceac60da0dd6902e49929849b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2152922468295ebbae237e8684a8e3ba79a93151933d82a44b3a41f799ad081f
MD5 979f6a256b59be25cb1b232a605428d5
BLAKE2b-256 a11f83e2f680dabe99c17aa6f729ebcf324579a8ac36a8aabf2afca575865900

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6e41fc0e0ffcf174c514d83809d5168d383d01ed527bcab013c1a7137c5ca56e
MD5 d5548b1b1068ac3432ccb1b815a25289
BLAKE2b-256 7e3e70184fcedc534f814d5eb3ecd1d88b5a6a166d0716e99a80acd22829a948

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 afd350dbe862576a6f82716e60e217974792477936ed6733b6ab773dc891f58a
MD5 797a51107cc554d58199807b0eb65aed
BLAKE2b-256 acdc9252ef8717d2886b9e5e6593ddb427708e11a862c6acd2579bc5c64f9791

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 664f3d18e929b115bddb09bb31aee7e81eb931df7476380f1a338f1371942762
MD5 9e62ddecc1029d8470a00a06533c0693
BLAKE2b-256 d25f1c7c5a9931e7418d0e1d49df9ffdc03c399f76c77cd83b63e7ba7f93226a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 de7334b3d354e4bf85a2acd4312c4fd1f7d5a64d1dd337d1d3dff6b7908d35b8
MD5 80bfa0f906422bf8ba3a9544758273ea
BLAKE2b-256 dd1435b85b652c7bb32624bf91cb898fd42de99407f68939c2f0edfec7ff786e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 acb13cc1c04e4c3e1a42fdfe20ac63d8129d0c96011bbc5555f78845cab9b5f2
MD5 74decab431d745a2fc97a8b8299721cf
BLAKE2b-256 e4b4532610ec65136d75bacc0254071924a796a3d36bc420c3929b2b82d2f357

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b589256f866ae6b7e50ba8f7bb6a77f15a76628c10059e86ac6a7cca8b296306
MD5 4350dc5ba3714552be4ecd3fd7e1bfc2
BLAKE2b-256 9f971977d297cd456b71e0df7b8dcd36d9386237928b82d941e14fa7ddf767fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 742c9a2c539d4ec628077257a7dbebd09b1d22140e236bdf41fba0c6d2f9e8d5
MD5 b3acfce07cade800866acfcce0c8d65a
BLAKE2b-256 945d4b54e3bdd4f46dafe3d543c8d2ebc9795f05433e119abf400addd8979eba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 45e3996755fd5bfc1c3753ffcd92f12a1153a1456789e584122e0123dbebe57b
MD5 06c77601e99bfa4421dac1e777000208
BLAKE2b-256 50511f20e55fc34d0e03ad7cd6df566964e790dd16b35f84721522496270cc9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 80d7fb9ec2503f732ac4507c1bcc5de75839b4c6f2f932c33832776f29d4bc08
MD5 ae17dabaccab603ed9dadf671da0344e
BLAKE2b-256 ab3222860aeec91c26c0aa124809deae855170fc818ee7d8dfe708fc4fea38a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b83ede56eb75fd2a3d1d6bcef15d726df73eef3e0a5844a2aec3d912d82ee67e
MD5 e92b3d4a2ef60272de3bc7d77ed99659
BLAKE2b-256 9208488b6fb39677e86292d41339cc0939cae57a3ac5b72bc17eb27dbf46a2a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.27-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9a71911441b0971f7f96ae351081f96299f8e96788413e2293252abc1d576ad8
MD5 edd427c706507ef75a67afdfae29de25
BLAKE2b-256 6c8013f02fe87dc0271e1655e15e24d726cd6819b601e542abd8d47d0c9aa0a6

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