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

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

Uploaded Source

Built Distributions

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

attoworld-2025.0.21-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (725.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.21-pp311-pypy311_pp73-musllinux_1_2_i686.whl (755.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.21-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (816.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.21-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (728.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.21-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (554.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

attoworld-2025.0.21-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (581.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.21-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (704.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.21-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (580.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

attoworld-2025.0.21-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (554.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.21-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (550.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.21-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (725.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.21-pp310-pypy310_pp73-musllinux_1_2_i686.whl (755.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.21-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (816.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.21-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (728.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.21-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (554.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

attoworld-2025.0.21-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (581.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.21-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (704.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.21-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (580.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

attoworld-2025.0.21-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (554.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.21-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (551.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.21-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (725.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.21-pp39-pypy39_pp73-musllinux_1_2_i686.whl (755.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.21-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (816.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.21-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (728.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.21-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (582.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.21-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (707.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.21-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (554.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.21-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (551.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.21-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (552.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

attoworld-2025.0.21-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (577.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

attoworld-2025.0.21-cp313-cp313t-musllinux_1_2_x86_64.whl (721.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

attoworld-2025.0.21-cp313-cp313t-musllinux_1_2_i686.whl (751.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

attoworld-2025.0.21-cp313-cp313t-musllinux_1_2_armv7l.whl (813.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.21-cp313-cp313t-musllinux_1_2_aarch64.whl (724.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

attoworld-2025.0.21-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (580.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

attoworld-2025.0.21-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (696.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.21-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (551.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.21-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (547.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

attoworld-2025.0.21-cp313-cp313-win_amd64.whl (394.4 kB view details)

Uploaded CPython 3.13Windows x86-64

attoworld-2025.0.21-cp313-cp313-win32.whl (379.6 kB view details)

Uploaded CPython 3.13Windows x86

attoworld-2025.0.21-cp313-cp313-musllinux_1_2_x86_64.whl (723.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

attoworld-2025.0.21-cp313-cp313-musllinux_1_2_i686.whl (751.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

attoworld-2025.0.21-cp313-cp313-musllinux_1_2_armv7l.whl (814.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.21-cp313-cp313-musllinux_1_2_aarch64.whl (725.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

attoworld-2025.0.21-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (552.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

attoworld-2025.0.21-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (581.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

attoworld-2025.0.21-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (699.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.21-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (577.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

attoworld-2025.0.21-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (551.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.21-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (549.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

attoworld-2025.0.21-cp313-cp313-macosx_11_0_arm64.whl (502.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

attoworld-2025.0.21-cp313-cp313-macosx_10_12_x86_64.whl (513.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

attoworld-2025.0.21-cp312-cp312-win_amd64.whl (394.5 kB view details)

Uploaded CPython 3.12Windows x86-64

attoworld-2025.0.21-cp312-cp312-win32.whl (379.9 kB view details)

Uploaded CPython 3.12Windows x86

attoworld-2025.0.21-cp312-cp312-musllinux_1_2_x86_64.whl (723.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

attoworld-2025.0.21-cp312-cp312-musllinux_1_2_i686.whl (752.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

attoworld-2025.0.21-cp312-cp312-musllinux_1_2_armv7l.whl (814.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.21-cp312-cp312-musllinux_1_2_aarch64.whl (726.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

attoworld-2025.0.21-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (553.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

attoworld-2025.0.21-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (582.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

attoworld-2025.0.21-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (700.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.21-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (577.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

attoworld-2025.0.21-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (551.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.21-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (549.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

attoworld-2025.0.21-cp312-cp312-macosx_11_0_arm64.whl (502.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

attoworld-2025.0.21-cp312-cp312-macosx_10_12_x86_64.whl (513.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

attoworld-2025.0.21-cp311-cp311-win_amd64.whl (394.4 kB view details)

Uploaded CPython 3.11Windows x86-64

attoworld-2025.0.21-cp311-cp311-win32.whl (379.3 kB view details)

Uploaded CPython 3.11Windows x86

attoworld-2025.0.21-cp311-cp311-musllinux_1_2_x86_64.whl (724.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

attoworld-2025.0.21-cp311-cp311-musllinux_1_2_i686.whl (754.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

attoworld-2025.0.21-cp311-cp311-musllinux_1_2_armv7l.whl (815.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.21-cp311-cp311-musllinux_1_2_aarch64.whl (726.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

attoworld-2025.0.21-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (554.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

attoworld-2025.0.21-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (581.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

attoworld-2025.0.21-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (701.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.21-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (579.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

attoworld-2025.0.21-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (553.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.21-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (549.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

attoworld-2025.0.21-cp311-cp311-macosx_11_0_arm64.whl (506.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

attoworld-2025.0.21-cp311-cp311-macosx_10_12_x86_64.whl (516.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

attoworld-2025.0.21-cp310-cp310-win_amd64.whl (394.5 kB view details)

Uploaded CPython 3.10Windows x86-64

attoworld-2025.0.21-cp310-cp310-win32.whl (379.9 kB view details)

Uploaded CPython 3.10Windows x86

attoworld-2025.0.21-cp310-cp310-musllinux_1_2_x86_64.whl (724.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

attoworld-2025.0.21-cp310-cp310-musllinux_1_2_i686.whl (754.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

attoworld-2025.0.21-cp310-cp310-musllinux_1_2_armv7l.whl (815.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.21-cp310-cp310-musllinux_1_2_aarch64.whl (726.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

attoworld-2025.0.21-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (554.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

attoworld-2025.0.21-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (580.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

attoworld-2025.0.21-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (701.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.21-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (578.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

attoworld-2025.0.21-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (552.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.21-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (549.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

attoworld-2025.0.21-cp39-cp39-win_amd64.whl (395.2 kB view details)

Uploaded CPython 3.9Windows x86-64

attoworld-2025.0.21-cp39-cp39-win32.whl (380.5 kB view details)

Uploaded CPython 3.9Windows x86

attoworld-2025.0.21-cp39-cp39-musllinux_1_2_x86_64.whl (724.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

attoworld-2025.0.21-cp39-cp39-musllinux_1_2_i686.whl (754.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

attoworld-2025.0.21-cp39-cp39-musllinux_1_2_armv7l.whl (816.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.21-cp39-cp39-musllinux_1_2_aarch64.whl (727.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

attoworld-2025.0.21-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (554.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

attoworld-2025.0.21-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (581.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

attoworld-2025.0.21-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (704.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.21-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (579.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

attoworld-2025.0.21-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (553.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.21-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (550.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

attoworld-2025.0.21-cp38-cp38-win_amd64.whl (394.8 kB view details)

Uploaded CPython 3.8Windows x86-64

attoworld-2025.0.21-cp38-cp38-win32.whl (380.4 kB view details)

Uploaded CPython 3.8Windows x86

attoworld-2025.0.21-cp38-cp38-musllinux_1_2_x86_64.whl (724.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

attoworld-2025.0.21-cp38-cp38-musllinux_1_2_i686.whl (754.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

attoworld-2025.0.21-cp38-cp38-musllinux_1_2_armv7l.whl (815.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.21-cp38-cp38-musllinux_1_2_aarch64.whl (727.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

attoworld-2025.0.21-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (554.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

attoworld-2025.0.21-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (581.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

attoworld-2025.0.21-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (707.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.21-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (578.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

attoworld-2025.0.21-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (553.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.21-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (550.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for attoworld-2025.0.21.tar.gz
Algorithm Hash digest
SHA256 1124b76ffd5da63bcc76acde55dabb037b5d891ea30345ba67a5885ba376cc33
MD5 983c1b9ee7f95ea0fcd349edf04be9ba
BLAKE2b-256 b3df1d066537a9a304b110f7ff5f7132debaa8dfdb8441c13203cf0572d43305

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7bcd65833ec524045db82ec2fcfc6e7f85f583888c3401f33557b61af811ab5b
MD5 a235a400f9df7e96d13e100ceefc87e0
BLAKE2b-256 d0be6f6a2b9f40124f262f591be7004490531e0c36454818c45506efe0334161

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6520a9d1ad7cbb7122d6652daccb1022fae2be32c492ab786e3bcd5c0d1b6e9f
MD5 50ca8fbdb8ac7cff764717410677fb2f
BLAKE2b-256 1845884fa870a940297a893e48ef1d0327ba725184e6bf3979ffd0a29536d7fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ae44b4f699599b41920d9a3ff445b1eb92c8c2f2519083068d288ac667d6653a
MD5 8c209fe2fbc290a74ddf9840c9b3fd63
BLAKE2b-256 d75fae322b06ee38a6ed689da26f326ea9ee1d4e86f566f9beeee67d3e45e0e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7cb45fde60d2ed58d218244ad60a0ea3c82496fcd32a4029505812b51575b93c
MD5 054185531285a6cd1e8c8c55c0d4b208
BLAKE2b-256 6fed7b4053d3463de948e4355f19c6d9f3e6a611b131a187fea015ef98d19def

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0af300316627bc5bf785a09d6d5e0e8461ec26bc39aa7a00d2b03e9ba8453d35
MD5 17fbfe7ce85a1be65a8b3a102169f4ee
BLAKE2b-256 93ece84b1d0e8531aed1240537575e0c5999e523bfaa4beab28867f34dc904c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c6d7ab2cdd4218e2d1a16f9f000d2149ecb30f42cb1f609a45f248874f0b8383
MD5 6bbfc6bee0d26455b8f492b432398d56
BLAKE2b-256 bc42ca726a0cd7f5b61fd62ba7e5e8354b242db30f68cf01c98b63b4be13adb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2816932a7362640e5049d668c2a8a363dd414fb6895d325c9f8c8f89d95dfe73
MD5 35ba6e23ee9b2d4ed49a43cf5a6f7745
BLAKE2b-256 30a1ed6b2553b7316fee29d2ad05c96b8324c054ae614fd7cea5a75b231a4843

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2c63ed42a8f34df2228e8362251ac1ed1188549cddce8b5db9638bac4bf1c745
MD5 8785ba870a8af01ff7a94b770a64fd48
BLAKE2b-256 3362968c61a202eba89f8d0055be016c620db8ac2d07ad7711a823f2cb95b0e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0e4c193e3482d5b67751b673b7c115ec5b7c9a8bc5d4c7a68de2410e60a21394
MD5 1ea665297f30a3dd209d433544b56b49
BLAKE2b-256 31359cb5350476c094acf3d4c94a5ad14390f43aa6467632b55f5472da912cba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e2ed0596fa7e8cfce6deb960d75abe2f22937514651f24303d4f9aefc1f60cc6
MD5 84dc4a99140753f5ee57bcf4c9442a87
BLAKE2b-256 9cd0eb2e521164fce88d2ad1e2964121c15915c97fedce8993535e19ca7523e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca9251acb38fa00c80ac1ccef302cd2cf66655a9c0fb4ce6b036182522625524
MD5 729ced1c3de9ac3b5a71e878be0e1057
BLAKE2b-256 99f56b8585325553aee10be4a478752b1458f48d62fb0776eab312f25b670c85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cb6f9a559aed0ebf687d6293859b069c07b4d3371ac663890a1fe9eaea944940
MD5 696d8de736c237e677bb422bac398e80
BLAKE2b-256 cc08c68127e8b903b194436ec97b15b5a29b45cfacee9e14a70f5fe4e3b7276d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 efbcb909efef486b0b96a33af416d1c464ac37db1398df29bb047d3717519ea2
MD5 2ed9f96f42be8aead0cc0946c7b07d52
BLAKE2b-256 b4a128687fb23d3a0835038e4ab615006e780b2c85b51d8f1762ca003d617f7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 af522e4edfa4d18a6994bc52b813c1f32a93ecb65559d0d4e4c391ae4146033f
MD5 9ce8de61832a6c77a3b4652b59254a4e
BLAKE2b-256 8266a22fd269f15f0deb97b84804714900fffef467fde8045de91ead83a9a55b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a5a6d90349cbc50d3764cc7e0229b5fc1cee71ed06c5b372940c86f8a5bea99
MD5 3cf5680219a7fff5f60fe754cefb5598
BLAKE2b-256 f658f1b52741ff3cfe5d74d0046560e5fac88e818854f2b8d6177e27cfdc20c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 586a6829ad2f9c460baa9e7be3a10e8e1f11e58a0638396c7e5203384bce51a0
MD5 b0873efcec3128eca0c78e77a92ff770
BLAKE2b-256 019f203cc41ef858785e7deabcc48aa7af670f7f444a6d3a4c3f7980ddfcddba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5a4f6e17a158b63fd5c5bb3a558ddceffc4fce677867b3a357b8b73342b94d94
MD5 3242e2b2d668efbe1d72db896298d2a0
BLAKE2b-256 d40be0edc26a74c8369dcd479f89cbd0e21f9568c081af379ffbfc6c6464987e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 65e2912b8135563923eb2a56e4992f920a159c135b1ecd45fc78d290110965dc
MD5 de2098cf18cc547a67fc5efd0cca383c
BLAKE2b-256 590b0ab69c7edd40692e89dc96a353d12f4f9be179da0ed1217fb8d91141d97b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5f92925953d342f3c1463a45ab5d92b0b6a1fec22fb1421004bf7950661b2be5
MD5 7f70884d6decfb158dcb9f96907a2edc
BLAKE2b-256 726d94208ce6b9c49d33c1a29e7ae4d66d4b68b0d0b4e890ee356550552c9eba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf9dfc01cdfd0c2b6f42321166dc5413019d05f8e20c8b64434cb1a1557acc72
MD5 a728848d8a46306ea8e9da52f81b6dc6
BLAKE2b-256 6477c84acda6f5c8a3d44aa50d1260d9e2fb1ce7de8a1476fa1024504fdf205b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 09cd1a3785578fe6051af35c43416d1c262b5a808d58cf942974327f2fb48fee
MD5 02dd16898b799a770eb23a7fb0516a45
BLAKE2b-256 b512be5cbe2f6da7e22ebe577c8ed67e93395d81744723b591f119f7fe51a9da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fe27d41a7a66e202e9eddc25194b38e92cb63f73ce366bf75629c51231b425db
MD5 2f1b63dbe044fae89c3af9bd5a19d625
BLAKE2b-256 f21ad1096970c18907082b6656f379b2c8c1552ad475fcd8fdd34e195c1bee51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bc55a0ec3d86ddf2abfbf38631521af71e708ff01433056d8db0b98af019ed8e
MD5 2999fd6464adb851c93bf1113d653886
BLAKE2b-256 aea17de6b823635803dca334512acf7ecc2b196028d0eac2710c9605e3ff4655

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 03892ee8bb6e742dd0f1363ae1f482da008beb4475af5c3cf4fdcb8fb1900a62
MD5 d1ac59a049714c04c7f1dbfccebed2e2
BLAKE2b-256 155c880f6531c16a2de672bbdfa29db814bb2361def862cccaeffcf3291af330

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0518cb1d79cc4d491b54f632dcd4626ef9ac67ebc55674496f2fafcc8c1082c0
MD5 04eebb6e797c22ed5eac6d9d657deeeb
BLAKE2b-256 e0ffd070418bbeeec7a5da214a04ae8e4dfaaaf3ea1e81235397ad4167492523

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7a17d9cd9d21e25b4234734aca19c32f6054935c0a93738c0dd257886b3a8596
MD5 51cbf715651044e454e9d6a0a7e5f5a8
BLAKE2b-256 fc9e8604667bcb4ca23b8b7a631ab4938b819a7b8f690672549d6d06a4076b77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b4296a29718c3b457d03ea300150589fd91e2eeec80274907cf0730f3b23f262
MD5 b75a7ace813c9202c0abc7366ab138da
BLAKE2b-256 51951f769bcfa8b5c450fc424b4ed159d253c593ac16d4fe8f91d2355539837d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 31e6ef4db5498de4677d3e3e79024d7c239eb507ccf963d3b7da5fc294e2e2e9
MD5 5f3e6c3f917cebf4a0cd6e2cf586b3c6
BLAKE2b-256 69464f66be5ac686055bd42e73647d96c47498decaad10c70cfb867ce126fea1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91ef67e43484da8927940889f8a160aac722718886adf6da7ff90d99184e45c8
MD5 20e2e635af928bd2781da2532a4b522f
BLAKE2b-256 f46086df2a58b059ffecff079f97e315359347caa610c4db7ccf376c4d1e2bab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9fc0505030f2f9c0541b96c3ddbe4a0db36a8f2d3f82921fba29a7197dfaf9c9
MD5 7dfbec104a013a3fc5d89c1834bcd9be
BLAKE2b-256 3406d523a0bca7f9d89f078bb51db1f8eea7980007594a4d146f8d067bcbf90c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d77dcb214b850636d139cf2972c8dd282a333f73ab6e50d290ab7883ab1dc51d
MD5 718296fe302772c1e83a9957dcce1ad5
BLAKE2b-256 20eaedea8259eeff23a8cf7e9c8159e16e317b4e04d47b4cf68fe8ebeb362f93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3f8c26d70c38d4456f7b8a539726884a56a4f0f6b5433b83363f6811c0b9833d
MD5 48cfc3a13ae75ed280b28d806f7c8c2a
BLAKE2b-256 8bafc73678b40fb1164ae271675b4622853db85bd0595ce0433892fbc94fdb3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7199b772b4dd19db10d7889fb6e9e33b8534a0ae956cec5ec49615c387902f8e
MD5 02162fcd7b9bc2bb48aa89aab58d9833
BLAKE2b-256 5fc8f83fe5f0eefe58689a2378b66500db85befcaabb37d826e1d794584c3553

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f67907dfa76ec32c7dad98910dcd434d96a121fb3fe284ed11bdebade8ea3d7
MD5 20dc42b3ba2d86c7671f90e96344717f
BLAKE2b-256 b7146b3485cd16036dfb301de111b2abda97c9608ee610cde0a85f2e34776a2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1f75bdd50cfe5104880e1de0d8c08889060e9fdb8159482976ee6542e3ea0c5e
MD5 76c4605d6cab763dfe4c4db81ede2cea
BLAKE2b-256 6553fae559d86cf775aae9f8e7d4a0808e16cd6c05d0ac27b458ded24ec07cb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 607f642bbe950513effda003e4c3c0e13839667a2c16ce212ba67d5bb764031d
MD5 05f31c679680473d6362d4d68271176b
BLAKE2b-256 ca261047085a118b70e741e6066eb9a971dc95ae4f58f0d1caa7933534b2d5b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5a3ab6b72826b39a3cdf1c5fc2043b6acb70977bfed676fda7ee8e7b489426d9
MD5 d0a18423b5d8153e78003581c81abe4b
BLAKE2b-256 be64234a10eeb408edb03f4f7b956867e8b4cbda0fc0efe914d428b600681487

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b0aae60c1881f7546ae2b36b981709d9ed55f6617c7fe25ce735f1b802420492
MD5 52802374dd1fd4ca7894011b2528f1de
BLAKE2b-256 8754e278fec3313bd18479c88ce559faa409bd6dc6d2e93c4e455dc2fae78e34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c7e415bc4085b9e7669356d0e44effde19c572a54a2834d3f1b5ee51b07570cf
MD5 43f905685d81a690095a5615e8e7b217
BLAKE2b-256 713acf49fdf6203cc1470750e9a1032a6312b70245396997696e18f787694b19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e70f6940782ca06214b5a0cc54c2b9978c9c1e2d345261dee3bcd5396072df1b
MD5 02e6909b279f190a5c780d4c0c6e7424
BLAKE2b-256 90886f464a6eaf307831a9eab89e7247b41f79071aadb235e0af85e8d3b9e94b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e476fd0402c5f4dcfda1e1fa1afc933ac274ce9ea8bfb63ee9a89f1aa6279fe6
MD5 06d69990a8adf603ff8a3bb4be8f84c1
BLAKE2b-256 8bae7d0ebce0128ab979c580c48a9da23fe8f8cc5ddfa146436208037d2e7122

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 12b3b69eb9b9e5f2091bff0b3bfc428bfb47049f56be78e3b9b91db47a27a58b
MD5 57553bef8159d63f31ec0758edf0d949
BLAKE2b-256 97cbfee4bca36a45ae612bbb1d3b94a9afe37665445b2f22ac7d96e5c3ec42a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aca9cb992054d13e6fb7ff27ef669ac95fe4f0c78213444debace78648ebb899
MD5 a855a64fd6ae4586c8d6ebec50545d91
BLAKE2b-256 21929eeb7e65e1bf846f63675d081eb0b4eeaba053656782f245905206337407

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 44f71822232609db049ecb552adbeefc815d1e5d8f9c9e8eb2d118fa00d26800
MD5 930a84b92729598292a3deed75ac858c
BLAKE2b-256 785882008a9193460c7a5f7ad57ad8344fc9769cb3f36d3f10d0e7bcf051e4ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9850307266fb61566309e3a6602160e35d7edc6b93e0c624290f6108587ea607
MD5 703dbc9a5ac5a12e27379108ee27bad5
BLAKE2b-256 c92db0b9474559cfb91508621df8fafa2b006716a35f41e4199db23690c38429

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f28b2f1509a638786ee466002e1ee02821611ad5a37948e79c6e77e21d57365a
MD5 be4e235521f4e63f3ff6b1c967dc57cf
BLAKE2b-256 1aaa14ca081cbdf8f5a2b55b71cffec2690dcdaaf105dc229f31d108d0004ae9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4323e25cc25c0d81f2fd0aebe72ed31e6f22482202e202eafb84759c8a3c1669
MD5 ad7f3aa85087fd28b770818c0363a8f0
BLAKE2b-256 7697ae52feaed5278da066e0b91e644c02c7062bab433772c1f1970e7a6065d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6abc04d85b48cd0fc342753644f7c54412251913b8194d1efba9097aa7c9202c
MD5 8eeb035724e609cd35f127c1d2cf1d01
BLAKE2b-256 731c449385f0936a03976dbcd6b1db1bb40d2173f4ad237157e9cb30387c64c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 66ab315acb755feafb8466df1c28b23fabdfb1654263ea078f96ccfa4aae23fd
MD5 05d5da3487b34ee6cce4c6773c6d91f8
BLAKE2b-256 e5cdece44a12b38402c236b598daed5270e74c16dae33e5df8698aea4fd05dfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a74c210795bd6e545508e0daa2aa45fbd0f3fa5e1992990da98810393f4f36a9
MD5 6a09534b006216378eb8febf18fdf9ea
BLAKE2b-256 2ac004d2ef203477e459d1ac802078ccaec7418770c36a45a423490636256141

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b71012f76575a7380642c97fda913166e2d2af7c5c7163a373e0e72765307fe
MD5 5a04c74a84649c9765d24f295cea3a78
BLAKE2b-256 2e0bba0abe11b0c4c63b96c767503cfca434d96f717c0993292cbe5ef323b68f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c591995f2356d285e7425a8c44e9df56b4878aae41c2a4e10020169a59e86792
MD5 0ca0bf87340853256060c525335c1043
BLAKE2b-256 682215b7f61bfefdde11c8374221c112048cf8bd8c224f5352dc531b0e57be39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b5c4fe598b5e69fd67c81df051911de07a9bfd2ca2c5c5e599f98deb15de8f16
MD5 a4ddb6d3b6696dcdcdcd25a096e3869d
BLAKE2b-256 7919a3dcb5b29cd262d971b3aad3ae27038690b3cfce6208d71bcd0beb9c7a47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a01ea57e018fc9aa3544c92e7afabe10f1eac02e7279517ebf320aa6ce7c9438
MD5 5594f7381ca0e7a73b145fa04bd965c4
BLAKE2b-256 abea7bdc689b6e9dc325471eb487453f32f6d78773d94ae5cc6266771365a131

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 49b531846027896cefcb0bdad05cbdad9ec4219f82216cd0ca06aaca33c96086
MD5 ec281bdaaa4d02f07e4145e8e77229ce
BLAKE2b-256 d6911f40b0ce47f8c5526986c254e8ce9ab549c254c8565fd6dff072caa8134c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7ffc4bb16fc89fdb93e8901f28eb631e47670fefe96aeef05eab26d5d97ef893
MD5 f37ec4a5c9751e48794cd44e5b1a1c0a
BLAKE2b-256 8a34efb71294c86cb3fabb8303e2b5caf28a16f739da313783ff6626f956e830

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 37d8a74cc7e3c9107fff18c469a525defc43d91d3f5f23773589edee8d77dd06
MD5 5024859a954da95c9137495507f4ae3c
BLAKE2b-256 502af1d4b470ca176cfbbfe009107abf7eeb1a8f92dfb038d340f79acf2b2b90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 263b53c842e54f44481df78df2665502518c03901a7fec174be34c0ae169bc1d
MD5 88c6cb55c3ea2eaf20b4080300782bd8
BLAKE2b-256 08f1f3f67a664c718a1c0f235a63168324e0bcd78094c52dda5b2cc0123db316

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08fd8a748350ecf7444f401913209eedb58b19b908422df3d53343f472010664
MD5 19e2090f7fe14b79c573c2f7af0a82d7
BLAKE2b-256 2d3f02fd458b9d373ef43cdd9f5492fc729756e5bb60f743cf085e29b9886c6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 34492835a154f3e41493ad52fd2cc785d7919f85ecb14f5eb6d4ae1a2298898a
MD5 1a795089a652e64487aea0b67292a01f
BLAKE2b-256 b1e2cad4215154ae5192eeeac901d92bc04e1668265b717aa3590cde5f5bd060

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ef43fa429890722210796eb2bcc9803a2aec77635701363f45a3836e384a1347
MD5 6168aa9b9372cc2e54edf4e3cb79680e
BLAKE2b-256 5b61c07c7171bc0e45e0e10d7484eaa3b8716367653a1571c39cd0358fbc854c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d7f6b6d605f7648fade602358647ac4ba04d31d6733b505de1b4ad5a54d0f0b3
MD5 d59d38d7028b6943529e2204ab042d6f
BLAKE2b-256 7c6c96affb3cf277db95111f57869dad5eb5cac4a0d9fe26aa5da6f9e31b2828

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4cfda2cc9d595f6f69d006f2e21a9320d3a162329a41d1995986197a66351963
MD5 5d31ecb8e43ceda93a90c62efd2a9ae0
BLAKE2b-256 1f0e7a4acd8f05aae71533f85d070909751467d74fcc0464d0d68152e9ecb46d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 174e366a65f366093998e9d712d53cabba4dd0d4ead7d176d20209aac8131720
MD5 39507c6cc431cf3f7f4e0380707ac8ff
BLAKE2b-256 8ab90736d1c0c24663f1d51beda252b5e4adb9bab17fb48f8d3f58402a83f354

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c258bbdfd16283b14861efb036c49ecf9a8a4155fc1843a609ec0239151953c3
MD5 4cc9e7f664efd5ba243efa9b553d6ac0
BLAKE2b-256 8c52e1c2114928c1aae17f1fd8d7d865ca9f9334863cbc42a2717dd15900b54b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9cc3a0dafb8a7f0cb41dfdcb1dce4a299169f781651a9cc094ad17661c883d11
MD5 42fd0808754e532920ee2b70ce8fa323
BLAKE2b-256 f45eddbfbd180c7c0967e21723d70a70cce81a138b7ecd06a39da648f5b929e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fc57a75dc000b00cde3c9f0ae27b6c83dec4f89d84278f9baf926e88861da964
MD5 1a3fd0455a09142aa22ff7dc2c73a77f
BLAKE2b-256 bda54f5f74c76f2a310d7dc005b0ed09fc82e9ef667bfa90b0551277eff1ff58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 477835874ee0a3f81952a3713240f940db137572ae8ce59ce4ba293eb9812008
MD5 8ab5a1eef90499e83c51ea7d8fe3bfce
BLAKE2b-256 36e00592cd7e9704166564ca2561421e0ed78c2a4bb6c7cdf30143384fe8e35b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b94a9f973a8f5ff1f68e6b84a3b4218ddf1778149721277630e864e83d31804a
MD5 81422ba5d416b9cffb01eae465f7a1c4
BLAKE2b-256 01dc6c5d22600886fae46707ac067278036ed74a72f727c619fc00e6ca7cc0c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 57f54109f7b0b46163336d7690a8365bc18f7d5ff56de44232099c9aca19b166
MD5 1ae4edcb8eb97ddd194b9cc55d67b0c9
BLAKE2b-256 5d4e08c68a00583f4dd130275b451a864756fc8fe426a0a05714387a7d8e2ff7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4aee72a0c48e2d4cca0e236c5e37fcbcb999bbfc59058d9a995a94d6aa36bbf7
MD5 e1d388558c741f44448a8ecd472e0686
BLAKE2b-256 55020d18b2ba58010636aec023351c21091c27df36c15d3009a2567750a57380

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3983b8300c26d64056314b3655e749036e928bb712dcdf08c46c2dd49fb487bf
MD5 2f831bf3df5c62e54fbdbd244f014e8f
BLAKE2b-256 dae45e17a5078df346d453ef03be13a73d7a254648b00aa3a09dae966b76806d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a11634f306558ac3f44d8e8b71fd460364aa11ddc6209556e1f9eeb76a153a1
MD5 5ca98151605991f4839e690e678658ce
BLAKE2b-256 004f642d2d73d51873b6afa068575e4a0b501861613a74969aeba602ca904ffb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d82efbcab24fcd3cdf6abb4d3ac314ddaef284e9abce87a07057c3b38be0cf9c
MD5 c39828bb7f382c431414229502332bc9
BLAKE2b-256 76f98721006763940315fd41b7e931afe3e0f4d1d579256dd9a2da8e42885360

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 999448724a3c86899a6ce37bbec8c969781531c9c1b3744419d64881ff3ed5e7
MD5 ded5688cb95fcdb3cc5a55c967c894f3
BLAKE2b-256 c4bce17a1f40d1b35fb9b5357c13d870b0ce6a301873960653a3f68c898f2451

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ccbb7c7e07fdfa7731334110749eebc17bef3bb7d7d16da2900f8270d7097f08
MD5 9e8e5db48852a350c50abbd6fc9c5fc3
BLAKE2b-256 829326f4080b5bef84e0d3b486164a4e8a5a031f140a8760993c620381cd5cbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ff1d817aa2bd610252402f7c255fa2f77b17914eb7391558e7f474dc6b115ff7
MD5 cae92c9a6023bcf43f09fbb1f5ab2c3f
BLAKE2b-256 01e8de313428bab48a0c8b20e516d1585fcfa2ae3c76ddf4a59b06db6807f8d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16027e6935371173ae7f7b42d7a4d76070d25b20cd440912b3a87697e680a469
MD5 0fb813eadff3c0f176fde1a1ff086a72
BLAKE2b-256 8814274ad57d6a53e0ebb06d9284c0ea9cd5d5cbf634a0e542f0228b0a8b9fb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81733150b7dbe466ff0d10948e75f3fd17e4afed9075c06c841d9622335a3195
MD5 82646a4d081ebe52cc3ea7d38897b039
BLAKE2b-256 84aea94d69a06da2aa67fe37ab030ea6eba28af92254770dc0ac64a2edb40ab0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 68cb7b02275939619e8545becdf1b49ce8b1eaa07e34b4c4b731c151b5114620
MD5 676595a79d2cb8a58627a7d1654fddb2
BLAKE2b-256 2bd682eb08fc4ac9eff432cb7271a8ffc7911af1ce3812c169c663537d5c1c5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bab1aa3a955b0d60a5292f88879e8777cd854a3182152be9ac0614aa7f7734b6
MD5 85554844832f9417382e420bd8d29404
BLAKE2b-256 f8134af322897934036fbcb0d2f9ca1d1afe2f32fba20f2a094e92d3903110e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8ae95c073e96bd70cfbf7479c36b3428fcc072a0acdce5b8ea96bee12cc2ce9f
MD5 a987427d4bbf1c7f75bdfa7e62fdc754
BLAKE2b-256 ad68bbdc311c8a7b60c16b5c9eef46f63e32a06b3f3a88deaa1436e756712683

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c58a61ddc41b1dca766183577d8735ac35ca5c0765659b74a2c5a6b7c173603
MD5 0ee74270e42e897a154c7238f00360b7
BLAKE2b-256 e8525b61402d166266568e34ca967ee55132e051c7c2941e0ffec7402c66a0b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 43858a46ea47ec1a361944292a7a490d6671cd5d0e37cbf9cacd2f561403a85f
MD5 874e2bc674166adc20ce6038247ca83d
BLAKE2b-256 14a5e974ba93382972531a3d3d71ac5f250804046efd5eb16d4eda93937cebea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2171c9dffbaf2825dd051dd22c0f486863a3bdca33ba2bfef52d496eaf652252
MD5 b7bbaed5201ec1283714ce3e14c44ac7
BLAKE2b-256 1d41204fe15e2bf79ad75325aa96c2a1f98d7eeb04a06de736c23f0290814583

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5201aa3b6c9226b8dafd0addedd69e648ae0d1ce39040e7668021c3efae324dd
MD5 d332c84a478a8ebe674f3db1477761aa
BLAKE2b-256 119a490182b4dc943dfc2d1d5c09e1ddff3ea2be9e2008d69f1f492ac4a1dc14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a6ac2efc03431871c67fd73bfdb614f02d4a724ddef18786e72572124009b6b6
MD5 72b9c5627a4281e62b0d82ca384608aa
BLAKE2b-256 8d3276618c81ac1d6f6f324edc713bc670da0cc23a7054d5d2bd662a0683c498

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2aaacc47d6d1a22e00014e4460da60b23e9ca054031a117ee5d6ea5251f46816
MD5 1ef3f9d4c9ed0ddf5349fbd196cf7f51
BLAKE2b-256 ce861e13fd25add86c7523e68dd74fc9936e1660dbaa1bc28dc8fd1958aca851

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cb5035c20a9ae5c8daea3069c97bc8a11443614b9f945d9329c5fc1e44ef6dc8
MD5 4e1fae335bab715d89b291da00da91bd
BLAKE2b-256 574fa784210cc5728f1ecf16bba85374b8ff744d41d9ee21f99a0f2019cccaf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c5607eaa5735864cec2e5373f39347f75f6ea19157f9a6da958e37e0c51667b7
MD5 69e3713117cc83bc5fc3a4b5d3e6401c
BLAKE2b-256 0981eee22c203cbab2bd1c162084ff2b523ee6ae6b8e26bd05884e789354c51b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b13aaed9cae7a608e5a3c352667ee315867663641cfab24d95912bf2a6646fa4
MD5 00caee335097f60009d96ae84b2626c8
BLAKE2b-256 322d5edbe0e72d0e549e590c7d163b6c8cb37d9e718f5a04e6b37bf7a622ec8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 907e8fdf0360be45b726c05d6b480bbbc16305582021760cfca0cb6c6bbc54c8
MD5 b0508df15baa3a9ec0c111ac9259afc2
BLAKE2b-256 d42e44e1de1680c2716a19d43bb8db9908e2470116464936672d11d5f53aa61b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8208aacdf3003c92cbccd2afb00eb11fe665e4aa46a39861b643d9179badf9ae
MD5 a09cd4a9cd1a3c7e194520e2b9e20bbc
BLAKE2b-256 ab0fc981c012cb9b5d68b3b49217192cf277b5270fea32be3ad88f270275e630

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3d802ae0cffae6ec9c0d4c548091b22e1e5abbb317a1519a5ca620b28d901725
MD5 1b54be0680c9281b66fac68eebfe4195
BLAKE2b-256 fdddeda9f6a779b1676cac6fe53864d3a4d01089ac18fc487dd7c84bd9edfcf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c8230c3b23198a05d6bd8f9553456403896d90e63bd59c231428927ee52e086
MD5 bb9831a0b146201adbca34df61275f62
BLAKE2b-256 6c65000377f63754deb5d153c48323f364e03454c70e180d35fe154248dd7330

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 252d21b3e3e44fbba90390d4d1924606084e267a1423119fe19b7d5817a0889d
MD5 157127fbb74533b3a91460336f6f0ec7
BLAKE2b-256 0252b83dd4c7452e5bcd03887ec6d4c1f97fbd400ddb5883511ba3100ed2ac85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 517cbf8c0f76655e4092d2e16a390f839babf43d6cf3f6ab63f401e2695b4a06
MD5 dd2361bb434781507e41a7ff1b895559
BLAKE2b-256 22c8fc25fbde42aa157f947d55cc131fa9b2199f37a4aadb4c47522c27399e6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4877b50be2dc0aab64fc74ba1919d27f1acb2374153a894696a663b00b6b13da
MD5 cad5cfc19287872367d570512b3b86a5
BLAKE2b-256 3e00d65bc03631a6a3c80e26510ea61dc4fdabf8e9c2f3c5d44bd00d187c2f18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9ab0e5d77c4de9a341cd2bb4e76537be20464da926ae828fa84b46cad77c012
MD5 5e6242b4aa756bbc0bc6e2e51c74c224
BLAKE2b-256 e74c90af29cd09d96a74f4f05fcf6996e27860da5081cedfa3e4ac8425faffcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 406c30789f00b8349f5381e632c81dd6e4eff6e306d2c8aa79578790caac4113
MD5 824413925a9b9e35e760e7fa02824445
BLAKE2b-256 70f44f5834c2488646ae53e9a3dc92da18a9fa64060260d050074bd1bdab1150

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ba44fc398848846536657cc4df1767b38711ee88e350770bfdee4098d5b9ea8e
MD5 29ed738966c75a944fb48aab0b483566
BLAKE2b-256 2d254191e17fd9329c5948fd1b27f9f67a4161b69e5a8451d6ababef3297080a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 daf4142055bc281862f3a15c15bdf745fdfc5ae048b11e31ebeabb92b65e24c0
MD5 6dfbd23d2a093874646b38ac2b539a5e
BLAKE2b-256 0f53d95b2f29c9a37eee6826b8b2b9e8e92d3ad64277f99d861e8197672cd0e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 82c108a229dc3207c1d959acab87555edd71e4111c9776b716de38afd71eb030
MD5 34c6409dbda8a61b7d48c4a0ab4d2f55
BLAKE2b-256 a92352b33c8d9c3da6d5823cbb5ed93c7dd49a66dd99ec44be32d2f4f20fb592

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c27e86bd841b9207cd758cdc6c9425e1d38cb8f712842b9f4fbf92d09d2c45c1
MD5 d374bf3a5f5ab73791439fa3097ba2db
BLAKE2b-256 2ddc8c63db7ba6cafb57d0cb255a8d328068497dd2ac0c3621b7bd0dae338ec9

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.21-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4728bb02b8a774a5d89ece11a350a27f7332270534ff6c5e277126f2b24807c7
MD5 b5165af6c766f36055f0f75a2c821a84
BLAKE2b-256 e7ce330f8a89440c12457386f26e73b5054f9073ea5c18e8a8f772eb0d8f1f09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a727419ff948c96b3b45be74bdbeb806c9bc7ae8074606864796cf6715b7d218
MD5 bb68919e4af864468b31559851dbbce3
BLAKE2b-256 16513001230b351921937e4f53b04eaa7c2e6e5155c7525bff4ad3e2214da342

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1d167a7741d560cc434a3577b74ea102adc37bc9db2640da9cb8eb1b2cddc252
MD5 58ece8b9286540d8169cdf43ff65625d
BLAKE2b-256 e4c5c11fa97fb24e1c6f9160524040dd6521a9b09b15ac2d4f904f7daadf671f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2f5fd4f20c683e22c3a54f4af1031e39dcfa7f73d3b88698efec0ef521948cf0
MD5 9e50ecc1d9e40336891a0dc05d1c282a
BLAKE2b-256 678337f48396ccadbac8a9cf82c9df66d7088586ebe207247688b269e2fae564

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 318233013d13da5e162b95804c0d2edf7e210643cdc82599d83fd55d72a945cd
MD5 db5763cca67bf4aee2fab5101ed005a7
BLAKE2b-256 ba72d6ca1f3a284e43dac2344b9d2b62a04e7bd1bb79a01eeba331db7fb9e990

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7aa9bdb49638e9849c72328c7cf2443e7da830fcbd8ea2ba31d60a9f43926b95
MD5 2cd8fdce83e45bd22a130e5ffc424ce0
BLAKE2b-256 ca14b1e4dbfcfc59e6e0cb985c1db15fd188f36ca93fab25624667f84bc64e4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a36f73cca3d2d18b194d8d29e020946b248503999015eaae0be6c0fb9bc44425
MD5 ce9c8226adcec777e06c2bf2a71639fa
BLAKE2b-256 3200933c793a0a0603d88620fff7840ee81a958798146b1d07420709536d3d5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a6f366755425c7271a12007723fa37ffd5d879f4823721ed5cd5f9a70f15c135
MD5 67359a77be464f2df61ed645c4b4a430
BLAKE2b-256 c6d8c2e3e71e0b90361f0426056c47f10162c114133cc4a20ed8ccf349f9b723

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6db871ab39dde5db2c5d0238a9654a9d85b5031d0e6eb6e11b1105e9d13b917c
MD5 e5878fc784e448b88320c2b1ff6d889d
BLAKE2b-256 b192098ea03fc5ae005bd9a4283a11180d74222bec103ba90c594f9d16341924

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a53ccee74bbaff0bdc30977406b0aab55aa0fef62fb1d029fe6199d66ed05240
MD5 7627cb7a28be78a9c95cffdf432de6d2
BLAKE2b-256 6cf2c2b735cb66c3d9f25ba0ea6a052e26edb76e13260329513a0296c01816b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 88e34eca51bb42e728f186bdbaf2deb82edf47f4a62fe128e84209ad3145790b
MD5 481c277573eb57db9459d249dfba99eb
BLAKE2b-256 263fed2042fb666908afb8d2a8ce8b666791021a7e7116284339073131ee6653

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.21-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b4c4b42e4b3c26dbc8b0aedc73fb284e355dace0092115507171d1c7e6c65ff7
MD5 c1419bad6338fafbd10242f3c6ca6e7f
BLAKE2b-256 747704f8174d9fec1d07fc50eafb192b47dacaed73d8c638a68994313862ef68

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