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.20.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.20-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (724.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.20-pp311-pypy311_pp73-musllinux_1_2_i686.whl (755.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.20-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (816.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.20-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (728.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.20-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (554.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

attoworld-2025.0.20-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (581.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.20-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (704.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.20-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (579.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

attoworld-2025.0.20-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (554.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.20-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (550.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.20-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (724.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.20-pp310-pypy310_pp73-musllinux_1_2_i686.whl (754.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.20-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (816.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.20-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (728.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.20-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (554.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

attoworld-2025.0.20-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (581.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.20-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (704.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.20-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (580.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

attoworld-2025.0.20-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (554.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.20-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (550.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.20-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (725.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.20-pp39-pypy39_pp73-musllinux_1_2_i686.whl (754.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.20-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (816.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.20-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (728.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.20-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (581.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.20-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (707.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.20-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (554.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.20-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (551.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.20-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (552.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

attoworld-2025.0.20-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (577.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

attoworld-2025.0.20-cp313-cp313t-musllinux_1_2_x86_64.whl (721.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

attoworld-2025.0.20-cp313-cp313t-musllinux_1_2_i686.whl (750.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

attoworld-2025.0.20-cp313-cp313t-musllinux_1_2_armv7l.whl (813.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.20-cp313-cp313t-musllinux_1_2_aarch64.whl (723.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

attoworld-2025.0.20-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (579.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

attoworld-2025.0.20-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (695.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.20-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (550.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.20-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (546.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

attoworld-2025.0.20-cp313-cp313-win_amd64.whl (394.1 kB view details)

Uploaded CPython 3.13Windows x86-64

attoworld-2025.0.20-cp313-cp313-win32.whl (379.3 kB view details)

Uploaded CPython 3.13Windows x86

attoworld-2025.0.20-cp313-cp313-musllinux_1_2_x86_64.whl (722.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

attoworld-2025.0.20-cp313-cp313-musllinux_1_2_i686.whl (751.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

attoworld-2025.0.20-cp313-cp313-musllinux_1_2_armv7l.whl (814.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.20-cp313-cp313-musllinux_1_2_aarch64.whl (725.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

attoworld-2025.0.20-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (552.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

attoworld-2025.0.20-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (580.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

attoworld-2025.0.20-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (698.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.20-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (576.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

attoworld-2025.0.20-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (551.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.20-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (548.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

attoworld-2025.0.20-cp313-cp313-macosx_11_0_arm64.whl (502.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

attoworld-2025.0.20-cp313-cp313-macosx_10_12_x86_64.whl (513.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

attoworld-2025.0.20-cp312-cp312-win_amd64.whl (394.1 kB view details)

Uploaded CPython 3.12Windows x86-64

attoworld-2025.0.20-cp312-cp312-win32.whl (379.6 kB view details)

Uploaded CPython 3.12Windows x86

attoworld-2025.0.20-cp312-cp312-musllinux_1_2_x86_64.whl (723.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

attoworld-2025.0.20-cp312-cp312-musllinux_1_2_i686.whl (752.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

attoworld-2025.0.20-cp312-cp312-musllinux_1_2_armv7l.whl (814.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.20-cp312-cp312-musllinux_1_2_aarch64.whl (726.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

attoworld-2025.0.20-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (553.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

attoworld-2025.0.20-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (581.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

attoworld-2025.0.20-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (700.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.20-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (577.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

attoworld-2025.0.20-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (551.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.20-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (549.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

attoworld-2025.0.20-cp312-cp312-macosx_11_0_arm64.whl (502.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

attoworld-2025.0.20-cp312-cp312-macosx_10_12_x86_64.whl (513.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

attoworld-2025.0.20-cp311-cp311-win_amd64.whl (394.1 kB view details)

Uploaded CPython 3.11Windows x86-64

attoworld-2025.0.20-cp311-cp311-win32.whl (379.1 kB view details)

Uploaded CPython 3.11Windows x86

attoworld-2025.0.20-cp311-cp311-musllinux_1_2_x86_64.whl (723.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

attoworld-2025.0.20-cp311-cp311-musllinux_1_2_i686.whl (754.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

attoworld-2025.0.20-cp311-cp311-musllinux_1_2_armv7l.whl (815.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.20-cp311-cp311-musllinux_1_2_aarch64.whl (726.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

attoworld-2025.0.20-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (554.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

attoworld-2025.0.20-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (580.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

attoworld-2025.0.20-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (700.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.20-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (579.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

attoworld-2025.0.20-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (552.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.20-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (549.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

attoworld-2025.0.20-cp311-cp311-macosx_11_0_arm64.whl (505.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

attoworld-2025.0.20-cp311-cp311-macosx_10_12_x86_64.whl (516.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

attoworld-2025.0.20-cp310-cp310-win_amd64.whl (394.2 kB view details)

Uploaded CPython 3.10Windows x86-64

attoworld-2025.0.20-cp310-cp310-win32.whl (379.6 kB view details)

Uploaded CPython 3.10Windows x86

attoworld-2025.0.20-cp310-cp310-musllinux_1_2_x86_64.whl (724.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

attoworld-2025.0.20-cp310-cp310-musllinux_1_2_i686.whl (753.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

attoworld-2025.0.20-cp310-cp310-musllinux_1_2_armv7l.whl (815.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.20-cp310-cp310-musllinux_1_2_aarch64.whl (726.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

attoworld-2025.0.20-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (553.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

attoworld-2025.0.20-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (580.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

attoworld-2025.0.20-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (700.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.20-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (578.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

attoworld-2025.0.20-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (552.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.20-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (549.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

attoworld-2025.0.20-cp39-cp39-win_amd64.whl (394.9 kB view details)

Uploaded CPython 3.9Windows x86-64

attoworld-2025.0.20-cp39-cp39-win32.whl (380.2 kB view details)

Uploaded CPython 3.9Windows x86

attoworld-2025.0.20-cp39-cp39-musllinux_1_2_x86_64.whl (724.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

attoworld-2025.0.20-cp39-cp39-musllinux_1_2_i686.whl (754.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

attoworld-2025.0.20-cp39-cp39-musllinux_1_2_armv7l.whl (815.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.20-cp39-cp39-musllinux_1_2_aarch64.whl (727.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

attoworld-2025.0.20-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (554.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

attoworld-2025.0.20-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (581.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

attoworld-2025.0.20-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (704.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.20-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (578.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

attoworld-2025.0.20-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (553.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.20-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (550.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

attoworld-2025.0.20-cp38-cp38-win_amd64.whl (394.5 kB view details)

Uploaded CPython 3.8Windows x86-64

attoworld-2025.0.20-cp38-cp38-win32.whl (380.1 kB view details)

Uploaded CPython 3.8Windows x86

attoworld-2025.0.20-cp38-cp38-musllinux_1_2_x86_64.whl (724.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

attoworld-2025.0.20-cp38-cp38-musllinux_1_2_i686.whl (753.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

attoworld-2025.0.20-cp38-cp38-musllinux_1_2_armv7l.whl (815.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.20-cp38-cp38-musllinux_1_2_aarch64.whl (727.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

attoworld-2025.0.20-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (554.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

attoworld-2025.0.20-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (580.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

attoworld-2025.0.20-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (707.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.20-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (578.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

attoworld-2025.0.20-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (552.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.20-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (550.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: attoworld-2025.0.20.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.20.tar.gz
Algorithm Hash digest
SHA256 01829908fb17cc2dfb1b3d4c5ae51f7b581ba3feb317ec1011121d76c3d23933
MD5 3b40d12af224579b178a78ab8a389f3b
BLAKE2b-256 5b286ff936d198c10c36a2208e228e3c307b92a92bc937052adf7f40bb6acfc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dbbd1c92fa4e8965148319eaf0e29deabcf8ed9d1c904a4dde02d4dc79581e7d
MD5 a3476bc7138af0c7d0e554d4b07cf3ba
BLAKE2b-256 ce976d6681b561b1af51daeb3b3200bc71e4a70e020ecc187abbed8f2ae31c53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2626f857cdbec0f8e63205c70947d3bf17f65ec88f8962c5ecd28d6902723858
MD5 2b58bb842c33160b8b123fa4d252ebc1
BLAKE2b-256 ec8cce8ea130199ff319ec03c6f5f1078668052c7d092930b8c8677b982186ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 761ad6fde25163ea6ad6f5c03c4112349cb12405daf3b3729007daf1de3dafb7
MD5 dffba9c2666b05c6d7fd797b25cd39b8
BLAKE2b-256 e4662ba7aa2c7e0459e0ee1a84d5fd679d988b40f6f998da65a18815c6be573e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 59148ddd904d35aae154912be9b6a766a13ec26a3214c56f74fdd771bba9c75f
MD5 71377dfa0d6bf704b64c2a8cb6a533c0
BLAKE2b-256 41822778f55e1f603d47db914f2f6dcebcf98b3f8f284f85ee7550073aa13419

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed5551a12d840a8a034400d14890d4d3dfed88470eeb597e2bf4740b9263c1a9
MD5 164daf5ef8d807b5957adebcecf77ed1
BLAKE2b-256 e50e7e2d7958f834fff4605056f47981ce4aabe4d09255402465af412b0a31db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1c20afb8870138c8cc2679bddb9d0b9fea9d1877ef7778777215ebd146f873ee
MD5 d98b40c68fc331d381974351413f663b
BLAKE2b-256 437f4a5119894355c7122518849510f25946268faf5721f0aa9a3feb6f699fa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8bc22938e340c46582fdb74da33e626a314d74ef5296345547edd9ea05aac9dd
MD5 f589f2c4490e85fbcdb2d092da9b9231
BLAKE2b-256 a2989556bc252a67a65aa5c9812f49029e71590421c2b192597eec21719deff4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 72387198104e5c59610c093ec90271722856b646bfa5bee0c8aa0f705a74c40e
MD5 a3fd5984e6a6c2c589d74b0b5e80cf9e
BLAKE2b-256 089ac1b1f164e3c95db6a4548b69a5b096c2203d035f4f29d02f7d3893ea97bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 583b167bea4bde4b3554b9c3707362c1596376da83b5948e27c485698664abb3
MD5 33a32055666ac2cafc51a3993d8a0447
BLAKE2b-256 b85e6cb828f9d4107b497810622fead378a1405dd22d52f42542345f83d0b1bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d73c3fe84440493c8a1b20e8e36b6a635e015ca84c0785f5e462e8d635ad4256
MD5 a4d275df6ce26ccf02823efa103751bc
BLAKE2b-256 68cc6bdcd2cdbdc21b7738844957717f98495eeb0a5f150316a11090bf026c25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d9244de6044836cb0d6fb749deff0d13bb1fb2d6b59aa6db1ba0991b57ad9380
MD5 2080ce68f9122b89be0ea944e0832b91
BLAKE2b-256 7d9a5faef3c16659e9658914076b73bb171003e813f66acfe5a023a9f7850aad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 11df411e21d0074da4e9dd5317ee3206f771337b7b7fd243f3614515fb0306b8
MD5 0d6d2c83837d3ff77977b42e239ee3f1
BLAKE2b-256 242164320c501d8c2e0aed0ea275fe1115b956da485a23705ab913c859020b40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 81e91bd47ec5740cf28898718aec8ce01c3078bfffb83aff4fb9dff1c993f501
MD5 c8237a82822c1d66a0ac4d2f598a63ea
BLAKE2b-256 4761a1373b69c8d50f65bd997182f542e5a8bd35260c10c1badc3da6da18bf0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a8c330cba1cdc425494d9c7bdfd2addbc6946b33139aad794e8dfa6b506f9583
MD5 fb1c8e73465774dcc64392f0d3b1265f
BLAKE2b-256 64b29e5e879f7730ba77b504b999bb917b3372c6fbbebc2b2037e0d0e894c928

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44677876dd13883bee242dfcd8c3a4a887c32097396f20b280403effb15df71e
MD5 7e004874a2026a4b5a8898a3b1ecbf68
BLAKE2b-256 f4a66c542a39262d7ccb06ba2f19bb84dc7ed5436ef05f6817fed22844c9ede0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d2f5f8969197d519dda2f7d692ccf11fd083c05a804c71c9950db69bb5df2e3c
MD5 0a8c4590faeed7d439e5e5d53da49968
BLAKE2b-256 5eff8f8f9fe201975f0c7c387ab270ae7ac5a69065b6261a3254575242ab9a1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 024ffc21c8eff4656e41726d379b106606e6398184199fa5f1f2644070181daa
MD5 85baa8f89d19824902c51c79be0f8f8a
BLAKE2b-256 014cd03a4cac07e09807d2d1b8beecd7ecb27d9eacce8f3b48594c425a3ea4ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7753f1f1e8d7ee6158dea39774e59ac286c2d8c8fe6fe479938850e3ca80c9ab
MD5 d6188944aba100a7475a877013df9e1b
BLAKE2b-256 e79358a356d89600cf7c27c8ee48416fa4c4983f451479b19bcbe85b2cc0caae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bfa3009b14b31bde185b26fa9d9d1bb99c7419f203b16698b7cfb615ee8f0a90
MD5 f26a512ca2554d6ddd9ba79571475402
BLAKE2b-256 3f65453e035ac4f9004a2d88fed189ee5c8cf4e805c6c9b8b45195161e7743e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94347f210a7761324ff0df1ed1f8fe9d48b98534a10a10dc6a1b1fb4fe00295c
MD5 798ba89c74763e64f61fa0ff834342ba
BLAKE2b-256 30888e4428c1ffdc07c65edc3aecbd897f9cff516c49744861bf5592138edd40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a41c50c23d21ea75c66489ed23d154fc0c167f3e16ba3da00efd02249c630a03
MD5 f0c80d3b7be6fcee474d6ff2e3d25d3f
BLAKE2b-256 be8ebf76bf6ab7cb319d3f75cb2eb5782abc00b8cce6ea9a233819b6ea3547fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1fd0d798df8382ec125efea03ecfa3f2f1d722225967fe50b3c1f72316b28885
MD5 8841088c9920332a7b8f22b338d8fb00
BLAKE2b-256 8aa17b2c70537f6260de95f913e7c3e313151a9ca4da43cae239debb49352f7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5d0889088a7883fc2746865b21916ffec2c9e3d99e3a0ec8f1cd9aea14eb0f6c
MD5 d20cc4ab2d5786dee8e3a9bb43279536
BLAKE2b-256 2f96ae31b0380ac5ea3b69af5737df4eceb556e79da8ceaa349f0fd18f638ab7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a008fd05e1ac5ad65f6045b4e3ddaef76405b220fc4573be339e8e742e1352d
MD5 f6352418b29a4ac618fb475850825d81
BLAKE2b-256 94037bc863304280d624ed3656730fce35bb9c8a5cda3431f4572ce5663a518b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 30cf5d6e674ce455eb442c97e67a97d4a009578df9615fbe31f06b27cb1fe3cb
MD5 4120477a740804b8748b208d0b846362
BLAKE2b-256 ff62a978ef1a23f0ceed0b70a7699fe7d84a268f4b3870be1f0a0c212d31ec85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 23e3822d17ec72c9c75ed85b68a3c7782efc47e4fc299517ee2be0989cb67523
MD5 05e9899be4f0f80af0bca4294de70815
BLAKE2b-256 4378fb28b983b9845b09afa8eca188b53c9c5006a2c8e9d63a045ebd41e41575

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 756cff79340d67d737d885d310a77f57a9579a184fad4fde7c544c0b54f3d69f
MD5 a9c354c74e88257ba9ca2d95a2977ae1
BLAKE2b-256 0345dab46cc2c51266abb61d0f06dd303bf2817af11d7fdf15393c9ebbcb2584

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a93d0ab607768f270ac75c425cc7bbcea272eb13531b2e468a4337b91c175215
MD5 5184c753a70da29c867f958ea3940e0d
BLAKE2b-256 89eb7a95372fdaf99e7c7d8b13d7413ab96e1aeda4d0ae91ecf9227bcd6a9626

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3045a976e540b91f00017d0811c9c58840b378a3d0be91afb29903b4e6b92f10
MD5 ce7a0fdb722e3a2bc43e5c76e7ca909e
BLAKE2b-256 42a930c117c6cf59972a71dd9c7bc1fa7b822e49cb0ee31c48c82cf46a9ae9fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ebc5bd08912ada4de156fed5bd3ef81fd591a616243f6ff335e474266382eeb1
MD5 6889b54ad7119393879879c3d2abd82d
BLAKE2b-256 bfd87eec3b791a9d11623d4baf472224111fb10c6fed8ec5888693d336304bd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8777514c5d22efa4521aa11f6a84039ab1e116d02f3bf7d67cabcd82b5e6dc05
MD5 001313c2eb9c5c2c49518020910d420e
BLAKE2b-256 e7aafe2fcea1467a5594e1648ef9ca3d4f4a9e1789372528e8a6ad5c5c164684

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9cd3d8496fb88020e11bddbb97bd64c2ed3bd163cd7aa8cfdc29166d2d145468
MD5 bf26cd9b880bd3b88986292f5ee03323
BLAKE2b-256 e101a4b426b3bb3de3c46ac0df9498f0a53e114540b924bdfba7c135da595d96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c800ae690815a7a0953f698cd7730e6d8594b6927e22dbe26137f56fc0bba11c
MD5 826788e9c736a441a0d2383fc88951e5
BLAKE2b-256 e5e48b0784920ce80740282cc9835f6f03aed0853d8056dec1dd1936a555a050

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e128a15a0813013c25c684db47f8a37dd80d6b97e4e60c278bae34fecc3ac08
MD5 226b508093f571951db2a913ea1fd771
BLAKE2b-256 0b19a698216368c1bd3e103f446f16d778ad1c13a7bbafc3d7635b85923f4450

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9eb3d00ba148681e1f2d0cbbbd85d38611c571fe1e53691cad36140472a19f59
MD5 a74ecfdba0d59cef23445da8236def22
BLAKE2b-256 2aade748e85272335233f42ba36ffd26c515e4bbedf3e39d91fedcb72b719b1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e9519b01ea5989591f5aac9cad810ca9fd611a1d26718df453f22f38e5a2ed20
MD5 8ecc1c9582b1492bb56cedd40bc4a897
BLAKE2b-256 e1e02a9d35f9ae4134b4031fb753ac594c1892787b6ffbc86908a4f2d94edc0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 14fa9d6f1ccc6f4e9c991d4b6d8fbd20a5cad28c8fdea3965ce1e8502dbeb0ee
MD5 b4c943eccd3b97cba12b844855884bb3
BLAKE2b-256 4ca86c5299b58f22142e15d5fabf1899b1a45b1c43f5bf5de2e76747317330cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4d4d5819361ae69a47047493c9c223371d5c2b7833f522bb8db0181ac070efe7
MD5 bfab0fd151f33c4f2f2d6bce0a15aad1
BLAKE2b-256 8374730cd9b5a6fb8a6c160fa17b4e812973666d7046c00daff481f166668048

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9c7cfd47c828b5b115bfb659f6dcd42bf095a99f0d6207418cd033b9c13609ad
MD5 75192f7ca06628a644970bba050cd6f3
BLAKE2b-256 fdfc54feab17db1e0a89ae1f48e5cd804d22adc7a2aabe2a0b901924fb8788c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9c6ec78c79869100215b9b8e3b69c1b9af0958a17b98c40b5fd2d6b210f74a94
MD5 44e9f8b7edfdb4c7daf7386cb3999436
BLAKE2b-256 d7327319b608daff906a63205bf01d77d64a4e2ea5d52c0e7b74de57f6bde328

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd14118bb97d4f02b88ba487b4a342af1a59e0a5e41b1a937f9745e0aa69292e
MD5 1dfe6bb22e29223a9d7841d36ee08116
BLAKE2b-256 03ae2c11932b2d48b09fa61a564b1c6bd78590b03ab4b48af3bdabc0237b6b5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b52fa6abccd23a6d6415de33817bda1146bb9c85be1daf2f2b4f95849ee311b9
MD5 0e87ab561b06a6dc5e44f0c90df518b2
BLAKE2b-256 216c055b579ae0adb92d3d0e0b33196ea3c62fe70dc0d209905820361b1bcf96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f384b844c8c66ba6d29c2e0c4299625d91f4b675cdf968730d7152eae2889e92
MD5 a9b07b9b410c91895d946b6b9984e8a3
BLAKE2b-256 1c2c35332dcea741502fb832dae4e1909f7ea8f2a982cab76d364c1a2e1f989c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c1bf87ac2f4d5b946cf2429e956667b42313999ee77f727c7e63794c2b0763d4
MD5 7f77f36a6826a79a9b19e087e4568746
BLAKE2b-256 4ee17306f9e7735873545625826b5b27f4bb051ffb15cf057060041aa7bfb038

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b2d4723a6888a17a3e07e030207fdc3d85316e7f81c8c718c3ed1fbb8d620bb
MD5 182330961fe1617f9919e0bc405c06d2
BLAKE2b-256 ae2e0e084fe98a62228470c549a601b0dbed92787e5793c2b3ac344b5e5d5150

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ea4ca10ce3494366a2de9a54dd258569b40176bf8ac03045b01c5d77a943a12f
MD5 a303459fb880d297db4e8368effd8290
BLAKE2b-256 9b22fa907293ba6f06751965e55f8088554d0212d4091cb6f59a6e1d32b7850a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0e17c5025d2c26a150ef00d5d8dd4084ab1c7fb60470245ed7e4f2c0f5a5ca52
MD5 0ae4a43b859eb4cc911252be46d0cf8c
BLAKE2b-256 a2b9b7de880ed3a33e2488f2a4b11d73433cb73fdef66966d741e5fd857bbcef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 12258dbb0ad385d4f72667fa3660d6395b1d54cf715713e2cfbbbbd3f6b18ed2
MD5 84a8f13036dd73aa577ea0bf4082a811
BLAKE2b-256 57eae74907324a1da8693d88e3eea18bcde33924f287e5d880208aeb61af8684

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ce1ae93be41e57b9da5322150c2655185cf47f9defad98222547bdfc96b0808e
MD5 0f2a03f2f5ce468fb680017e9d529ba5
BLAKE2b-256 19cca379c76418994c171f5f5ede219f812196110df89084979e465c4ed3d26f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f35367233ff59ea3c68b2209d037518c1f23d09e70e350d3257ab3c1936b226
MD5 02f19a25c786fb50f1e50015cda40b47
BLAKE2b-256 fa9f76ce767432789d737e6138335297aeadad8215676344b82b0c600bc7456a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f90fbd2beaa1802e09b6ec2dd7cf0bc31e41b74c377c6b4de6c2c2ffcac178a
MD5 5608dab83c31bfb932e8ecb113961921
BLAKE2b-256 6ea7a07a7d3a409657d1c22602ec410f1e07832a0b74bca40e795b41985d1b05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a05ad126c4d0ac0afca05f56943bcc8b611ecc2ca5af3b1acb209d4cf995a74b
MD5 228c751898cc726897e49e656d86bbb6
BLAKE2b-256 9af4857a3e8a7520c2c0962a258ca45738b188cc89f3ffb425997bc1fbb3c213

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1e09770d7cdce41e6e9c31883b4d57f79e8a1cf9b44766ad26f37dc9ff58cc04
MD5 894bd854d058aa363acc4528c020562c
BLAKE2b-256 3eaeff35e1afa40ddc749a4568168add32636bf3404e203a9d141c3a1f682b77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 22fc356ceed00a3c48a1268fc9b0ec9ba1d63ea225d1875c3e13b7e5668014ac
MD5 a053a4021de5bbaa1075ad75d15b7889
BLAKE2b-256 7d657e84169eb8f87c64f8af3d7abdd2cc0a15eced7a56fb5394a3fa11a0e863

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21ce2820a179b2e6d42567cfc099392ed85103ea548d3cad5291906ccbef02f6
MD5 9f9dd98c51b9fbaddc45bee7227025ff
BLAKE2b-256 45a9ff8399f7f4bd4c5ec9426ac65273caa1b870cc489846639f8df742cfb8dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 41beba47f1dd1c0b3082da0e4d58b4598901736bae611223e68d2687852edea1
MD5 86f2105362a43ab833131daf79ce5768
BLAKE2b-256 38cf8d9b606b29021626cdbcc0386a94624b8bb9db3d91d78702e395b41cc569

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 63b0ad4ff350916dfdb6a27497f48c7512b6edebfc7ed1a7195b223ba28903f6
MD5 a3d13290b455c82b5fcd1756038fa99b
BLAKE2b-256 fdb02185a162f189cdbbaf93129a2f185ec2172ded8b41edc64d0941b04ed1fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 468b5105313547b335c639320bf7a6ca9dfad13e2d83b2817e69c0111286c434
MD5 ee8df34c0d30282085efaec673bae682
BLAKE2b-256 91501e6a02580e9a14b2cea6bb912eb9af19b39e833b6f1b63f55e4c149a7c2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 45292c044e0191b4939c97d6c8d514fb9fcbf42650ff644e16c01acdbdcd0388
MD5 680cfce23cfc95b9c1f03ec428a6676f
BLAKE2b-256 c0bd7c8a02dc1a37ccbe68fa530f95a568b9c2a9ff30f52439549cdf91668005

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d702123bd13f2599a0206f6c9f9e50ebed134d832b10f52ef1b59ed7a45da051
MD5 903fba03f13d2059d294e84e969ecf2f
BLAKE2b-256 3e97c17a56065dda401f3ea96c4c2035ce18252d9af6eae9cef51b565f23edc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3cda6ad67e3d29c631838b249498d209498efdc2a73d3dbede6882fa9236d01c
MD5 8f89154d0d85a2759ceee36dc2ae7109
BLAKE2b-256 cf48f0cc3b72aa54ac226964e26f09c60eafb99856c1c21966bf5270f0c39a6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7b7bcabb10d28fbba8155b0c6985ec71815dbf43fbcdcfe89305aa1a3d17378d
MD5 37797ba1d9c52b583d24fcdfd73de728
BLAKE2b-256 437cc84c1cacbf40269f225d204228f0e60d93362eb366bac75a4a5cc862b8ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5222509c6c001d779e6a78b9e095f25fc74e7836e9f5c71f67281834872a29ad
MD5 ace18680bc29e85a0b5733f063eaf3bd
BLAKE2b-256 bfc776fdce3b5bacae2072b8fe78b070045cd0618cd4ede48b5b4f4c1aaa42dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 737f150ee3872c60ace4cd67bcf84fd903d21b477bed45e763b8b567181171ba
MD5 1d1be96ff7dd99d3134597764a243b02
BLAKE2b-256 34262569413a493c13cae6877d329c0b7a7ae02969c318ddc1d5eac1c2552e1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5fdcfa84c8b8c13689779decdb43604099a4f15e4af12a57c801454505e9b1e5
MD5 17b8ffb8b6793182c0ef757fb6bef1c5
BLAKE2b-256 2707badac336878efa9c7c243f1c780701467780858f25f16e6688e6f3c45328

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6ebf75ea6065ba9d9d54dd2630a58e507e50bfc687c0b0a331d0c14af0f486b4
MD5 87b9d9d0e805065a9b44c997933bfef8
BLAKE2b-256 6e15a862faa2ebaa9ef3cb06e31f496039be0b2a367c39bbe699ed81c55a23ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bb80b971cfe2cb60746546bd9e34a6852671f5531375fc384305f5369922e0df
MD5 2e0b188d2bffe11cbb4b812890ecd3ba
BLAKE2b-256 073a83dd6ae8a8c01c823c29e3605a770c31be86db4dff7a55b2d6b5180283cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 02a23ed9dde6c134b509afff20f0192a507b655e711ccae29ed639d9444f81ef
MD5 edbf84fafac15b148af592e901c65b5b
BLAKE2b-256 b6adebae789ce55707332e26c739449174660a692864dc6e7afa7bc3c2c7b9eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f91bc099c58757e48043e41ecf351cb18391953f7db78b72089d3ff46f662368
MD5 c78ceb7aa59944f0b63aadcde7dbd779
BLAKE2b-256 0706486535af5a465e1b99629794228cad5eb0a349741f4f431cdfd086879129

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e73bcad8b6c8dd11669793a7b40b270931abc7120b6a44c2d11ced9f2da68bc4
MD5 7257e616c7096c2dedece8e202079c0a
BLAKE2b-256 cc4567e02d35705855c707b1b0705f61803189e0eb68a92e25e404f25213cf20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9948992e3c8c881c8775037af50092f10b45d6ba1f6b5476c3d17bcb8ae0db4b
MD5 f04341c12cb6b59e71c8231bae69f77e
BLAKE2b-256 812372be81f255f59b16ac9a7eacd6747fcbd056675009b66b5ea80cc2b7d262

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d38a862c15cc5461b9db6a063242f711d38d5e7aa6dda572e7f79c4ca3ecef5c
MD5 b90cb235d42fe9fc9bf18c2bc7419822
BLAKE2b-256 27d70f21ec5eb3ba39ba726c904c957835544b0c2423f920a190f84886bb9f8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c10c0a6b9fd2f1b87b713f45ea6e19e12644e0f876b71438f6726250cfdd4b5d
MD5 7c44f278bb8180c1270b981d21ccc578
BLAKE2b-256 e615d4a8ae77c5b9e9a93b265e9ef340f6a4aacca27eaf9432e5e533fd2b9c89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6b297957e5b6d101973293829d08545fb92038579e5bb80031a3edbf1b612c79
MD5 c01da4345e573ae5007e2e5a3417f8fb
BLAKE2b-256 2f147475b05dd8037af25bb5598c756a753766d78401e9216ebb58e7390daf38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 30491c560c9f51a018b31f3fb79beaa828750c7046373a694837e4ab810808ec
MD5 701a385c1dca8d657b81d18d72123ac2
BLAKE2b-256 83eba480a2f60f966b93aba345959258c7851129824dc5f204b7a8774bf5f7a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 347e421506b751d6e488f789ef05f5c9c7d482ca09815b751dfd4b0807e96926
MD5 87dc7e6d39733eea38813dfa3d441414
BLAKE2b-256 ea3c046e0a12a5d395a11643f5605d32c49650f067b766bb22de44aef85eb90e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bf43a750bbf95526c205e3e67a09ef646542d994ba9aebcc67bc94b3c191743d
MD5 c35ce2fc33b6fa5e63e2d3651a4b6ead
BLAKE2b-256 2f20955633685e5f1fcaebb8579922cbc58aaf11e3e8590047d1bccb6a6f228c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd138496c64140d199212c4f004b081f770d5979587219e013ebd6f292b763eb
MD5 e4c3d7e26d5af986b8c18f533cdad2b4
BLAKE2b-256 12f1921d7e2b45f0889ce6d23f9f8ca2de4ca4548e1f43d764fa6814dc3fc70e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9692407796dbefe47af3bbb3b2383453091e0929bcd53e5dffeea62f90170c78
MD5 1f53b9f298df694b69100894cfdecdb6
BLAKE2b-256 5eba6dcc3f19f924d26a6d249200351e3452097acff8e15d98fc5583ffdaf623

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 42550fc35906cf5116ea52b88aaca8a81fa7829156aa2418f233e79dd6a1f7c7
MD5 c9911981712a1bdf186e04daed8aefbb
BLAKE2b-256 b39730e28ce0aa195521060667b3832cb3ad60890ca9edc5b26ac8eb123f4671

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9f840079a872bc336d223312a6cfcbcc225ad0439497b643461f283ae72eedba
MD5 6c72486ffb6fb9a3f4179b79783d8b41
BLAKE2b-256 68af8223419fd0cebbf3da1e5753322d728d219af5a50ac2dac96bd8992cf410

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 081fdd2ea33e13433a66a1b4660abe6f66df37071c41917e01d8fc7490f20170
MD5 0077487ecf20e7f5e5a2d3af7a0747f9
BLAKE2b-256 4ad71637c5e15d5073a41ea03cfa36bd87d4da82114a20d1dfb979f61f7e0776

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e44fafce85522133576ece9d324ff83404bf80cac26a90b06536ecf60ca8e53
MD5 6fe55db1a3445d19c5340f43416104b1
BLAKE2b-256 71afd658965fb386f87fa2d1fca2bd57044246e05baa8d91923298a77b6a26f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a7a97c89cdcf3feec59ec42eaaddb6a40e3caf0507df8bf0d18c9b4fee893b41
MD5 be30434f8bdbcbc96796d76d848e8217
BLAKE2b-256 86e6be4408bd825084548efcfe8dbb33a2bc5086a27ed7090f03671d3868e397

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f896d1526de1b49a0111d9d66b05ab078a4cafffa960680cf7de34e210967a80
MD5 8a95e5ab650ef28abad2cfd016fbd0c5
BLAKE2b-256 131672e088c2e02de2097af8c639a3815535cae87c472f4c0bbb536237653f72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0483f78d1259ee3351b02274dcde0a40a19a82365643cb21bf64310d428c77a0
MD5 b7db188e6e7359438768113c87648052
BLAKE2b-256 2431f4c3d2d48b9a08f3bbeccb5ba79531a6cd845883d59e51a8d88daf9a09b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9bbe148095c9444f1ef00589edb0276383a6a5c8342e7a28278daa0a4773eb99
MD5 deec7917bc3c47e1d86ee6c555b05ac0
BLAKE2b-256 9622bb8695000e49a114702f9d3e3ccdfafb911d1433a66bdb992b2215c96bf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c4b80321b0306c2456c0135b0ae507bfde4dcf7b448731097fab76fa650bd305
MD5 a9a75e13d3abf4c87051a18fad36c47c
BLAKE2b-256 875f23153d207b67a1e2ce7aaa792c2f4fb0227a12dfc23b9f5d4a28a13a16a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 419ca8f054fa1259ec0c013e752c1ec405b7c29d2bbff9885a0d70c11e42ec2c
MD5 6f96d79b2270c16c1038516e4a583172
BLAKE2b-256 74fdee3e5949131b70cb3bd3221740b6a3b3bb5b1aa0a0ea37cb72d55b32cee7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8e316acba46c08a42f97c9632a063745907af677fbeec0b7af2553533cee2521
MD5 bc7fb540c588384a1a83bf3a6760121c
BLAKE2b-256 37eca93408cc507759e8f80ff1759a3ca6dfcb4a5d309ac8c50a547fe85f7287

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 98ae689d902751a7f2f1b81a7b8307b54faba1d26b18c3ffb4c452f243b36eb9
MD5 60ba68f94eeec9b7aca05da26c8f39e2
BLAKE2b-256 7102430cf955993123ba59d1fe9866551e8f98a43f330a12567f1587a4a5cdc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d157a20f7e614b71b5c06fb0108e3763fa3de153c6b63df67306557c4be4bda
MD5 3dc9e40d7c90df47bfa4d977cc8d8fca
BLAKE2b-256 e556fec44694c341fa71b8e6245325ec9fb387000d478b2b26983bf1302d78ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 00d2bffcb7639d627628932e448c6f863275828a0c976fc6952cd4d2e7fdf215
MD5 5bc8c37cbceaf7d96d922eb8dfe50958
BLAKE2b-256 588af2f2697e7fc2307f38bf40b4ed4b53ca79da15b405050d14b9e4bad3016e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 536588ff29a3a5650420a37613bbe48395209eb8b2d0bf5991b448df6d1f85c9
MD5 64de75d9d026fc14ee936476aaa4a388
BLAKE2b-256 facada9ccd8342f0292f7e029a11fedd622f10210de525af369f090075853a7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a895346700762538c4fc14e107fcdbeb13273490a7e3ddfdce911acd4d42415a
MD5 b4808c350aa60b3238e0c1e4f1af6448
BLAKE2b-256 33ba5756b9c3769f6eae587611848633bf9319a5162652030446ea268b27a623

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6e2cd2995ea450ad4acf031a2e70badaa8031733e42ac3687f0a9124a72febf9
MD5 a937954ea939aafecd0aa72caae8631f
BLAKE2b-256 b6214805b42555356a7da6402e03481c2c84b4849ce84a95e1d0c668b659fcd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2bcb2bc37fcf144e71009100114cfc151ee9b7585549219a624b8ce437ebe9c0
MD5 4aba43694aa25508ab7fa72e36bb5771
BLAKE2b-256 1384ee60af6a343fdff8209709797daac26f137f93ce8eaa8379320709de24d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 74c14aca5318943e55428efb266340c650c35ec95987ee2543bd267deb3cb91c
MD5 efa54503c5e64351d0a53905bad04f13
BLAKE2b-256 bce85bee3f2afe507ee2d411fbe52edad5711f443b1d9c91be3da7e42897ac99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d4f353c832def974a547f34f4faa069221914ca419312e6c4ca0f8e0281bbf1c
MD5 f0deb2cb2795817a32a9b1be23a03492
BLAKE2b-256 faf65c3e7acfe309f8c1fa16851cb58b2ca9cc31f45bcd5a3e017ab30bc79a2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 73819a907413a57b80286ac5d0de363c4d9a53f6b0a845ffa5d6f4f748ffcdc2
MD5 0cff5ad44e2c7b9af217abf490d99b79
BLAKE2b-256 59a0ad5d8e681d71275e0bb65f7bf2df8f8f705480b0f2575f1f245d62130b24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 64b14368f56b859e35546c64191be5e8ca6054e1e699db7ac03e18f81143b9e3
MD5 62ed86475a7e97b7a062466fd3b8e7ed
BLAKE2b-256 bb7d8e8ff12257a14389eb2b3fcf143e110ccbf6bae348c7a268fd2d35b62dfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 508fd3d9646e9018c1b8dfb5e4cf8f83a2d6e3534edbed064233f6bf85f4e775
MD5 1af7b7552189e2da1bc62e8c8f9c9643
BLAKE2b-256 c9d79b3df8fe6c04f16c0673ea9912eb9636da49cf763892955f86ccb9da8a07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7a025c1ba17242788ea16ce3811e1ff59b9f1ed277aa4319084678c51a8965ac
MD5 092ec7d857ca0f26b97b3902f208551e
BLAKE2b-256 7a3048eaffe3cd1ebafbec84671a4811dfce56344ed0992e8556fbf696ad52c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eb06f442ee554c5ee6ed1203d6a3560088c5eff206a8443689bfc7c88a6d8345
MD5 ac48b5c75c1c9a5d545b8cef6ffafc88
BLAKE2b-256 b11206e356bf13c057393aa08eb65cdce0590da827cff5b9903f8250c82f63cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 18d8bfc78efadaac0ac461a9ec5b8fb7da1c1721dd4c31f3c23e3fcc85424312
MD5 a419a110bd54e4fd4e93958f71dbd63a
BLAKE2b-256 d229fbc90814898562a0a9aa41902d484983fad94778de3484f05d33fefa2376

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 acfe5b24b2d65cdef587533aef6382ba2ca5a8b29dcf5d60d4cfdda138d8debe
MD5 c461540d2010854239239d47bd4072fc
BLAKE2b-256 c4b60eea383febed4921b5206f5625eb344d86c2edda03bf927c87b6f736a124

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 55c5eb229f4f5f83b4fb1de4872a8d4fc17b65629c3811614d6ad77299feb59e
MD5 b21c995a91c20f63e0ab0095325543c9
BLAKE2b-256 69bd9f70fd3d7a044f30ff6d81f0ae51537d99bdd588befc2c65e6c3d0384a5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 18141583ce767ff98b5cdda296015db959e46eceb32482e28af1678139557665
MD5 73010e69c5e62a2b26419663c9a5ad2a
BLAKE2b-256 8acde6147a69659204e511dd67b04dd6515118c06dcc257d1c67deef593c14f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 255ed444ea2bc888762b317c468ac86f810c3863bca08add98b8ff10f530e5ab
MD5 b4fbb2307f5ad5986a36af84a919334d
BLAKE2b-256 b64424cfd336475fb345384ac61c5cbf183b2737cb620a41ade5fa8c70d0b21f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 14411d8279e985a4875999ac7ef1cdffe5964263b8565e2c51b049c5228c7b68
MD5 34084bab17f212570c03bcabbd533fba
BLAKE2b-256 9baeaf215b0c1eb3647a33de3a129f83f249d09c7cad71c0bdfdb8fedaa16fa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8dc301efa6baf4af165c59434fe8386706d0d45c9b4b2d17ef3dcef515e5ae46
MD5 2ebd10e71a24f39caec787d2f005070b
BLAKE2b-256 88a395c6e497ef3ce66df1b0380969cfa115ae6f76948afc7a8fb3463bf27a5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 755eba2f3475c7b5794abb64f819451610b4e8b74491b1a527fbf2460ae77de7
MD5 93a26392dd62a53c5f3f6826539beb22
BLAKE2b-256 52c4d64f3677bb91d2270e15d1e35e88997aa18637b828c1b7cae45e92ae614f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7c089d36c099e2f5acce73bd6a0c0d6d2c090e1e8ee9cdfa9207d09f05874129
MD5 34f355e6990587d9a31bc9ed8894ab72
BLAKE2b-256 a24de00101f751a2ef86e7dacecef043ff5b11b37949f3f85b9bf682683c7eec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a025c895e77a97779e9db108e7ed3a6a8898d6bbb2961d6388c66dd456015826
MD5 2d29c6878d3559d1fc9cc4068fd52b6b
BLAKE2b-256 4486782ea3aca510bb0bb3d7e1e6c8dd4053b9012619914c9f82450a3039ed65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7b6f33386617b2a7873527d48ee33f43f9b644b95ebee1500101f4126a7a24cf
MD5 da2dcfffa446b8d80d76da20ed051aeb
BLAKE2b-256 926eb86c0b10d8eece6a62ce4902f46fea2a64ff9cea1772fa7938451ea50339

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.20-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f8408c96df5472ae65386d59bb1e3fea19acdeae586af55e077b7f91ae4a6f1
MD5 449cd237ce87ed8f5a0c21979287ea57
BLAKE2b-256 012fcd81fcf5dd7a1d7965fd94aab6260e5a9d0bbb5b44f3a1aa8aeb9ba1c705

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