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.19.tar.gz (192.0 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.19-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (664.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.19-pp311-pypy311_pp73-musllinux_1_2_i686.whl (695.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.19-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (758.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.19-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (670.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.19-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

attoworld-2025.0.19-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (520.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.19-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (633.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.19-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (517.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

attoworld-2025.0.19-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (496.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.19-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (492.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.19-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (664.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.19-pp310-pypy310_pp73-musllinux_1_2_i686.whl (695.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.19-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (759.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.19-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (670.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.19-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

attoworld-2025.0.19-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (520.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.19-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (633.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.19-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (517.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

attoworld-2025.0.19-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (496.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.19-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (492.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.19-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (665.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.19-pp39-pypy39_pp73-musllinux_1_2_i686.whl (695.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.19-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (759.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.19-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (670.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.19-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (520.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.19-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (637.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.19-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (496.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.19-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (492.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.19-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (490.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

attoworld-2025.0.19-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (513.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

attoworld-2025.0.19-cp313-cp313t-musllinux_1_2_x86_64.whl (660.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

attoworld-2025.0.19-cp313-cp313t-musllinux_1_2_i686.whl (691.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

attoworld-2025.0.19-cp313-cp313t-musllinux_1_2_armv7l.whl (755.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.19-cp313-cp313t-musllinux_1_2_aarch64.whl (667.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

attoworld-2025.0.19-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (518.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

attoworld-2025.0.19-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (630.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.19-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (493.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.19-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (489.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

attoworld-2025.0.19-cp313-cp313-win_amd64.whl (342.2 kB view details)

Uploaded CPython 3.13Windows x86-64

attoworld-2025.0.19-cp313-cp313-win32.whl (332.9 kB view details)

Uploaded CPython 3.13Windows x86

attoworld-2025.0.19-cp313-cp313-musllinux_1_2_x86_64.whl (661.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

attoworld-2025.0.19-cp313-cp313-musllinux_1_2_i686.whl (691.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

attoworld-2025.0.19-cp313-cp313-musllinux_1_2_armv7l.whl (756.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.19-cp313-cp313-musllinux_1_2_aarch64.whl (667.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

attoworld-2025.0.19-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (490.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

attoworld-2025.0.19-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (518.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

attoworld-2025.0.19-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (633.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.19-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (513.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

attoworld-2025.0.19-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (493.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.19-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (490.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

attoworld-2025.0.19-cp313-cp313-macosx_11_0_arm64.whl (448.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

attoworld-2025.0.19-cp313-cp313-macosx_10_12_x86_64.whl (457.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

attoworld-2025.0.19-cp312-cp312-win_amd64.whl (342.6 kB view details)

Uploaded CPython 3.12Windows x86-64

attoworld-2025.0.19-cp312-cp312-win32.whl (333.3 kB view details)

Uploaded CPython 3.12Windows x86

attoworld-2025.0.19-cp312-cp312-musllinux_1_2_x86_64.whl (661.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

attoworld-2025.0.19-cp312-cp312-musllinux_1_2_i686.whl (692.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

attoworld-2025.0.19-cp312-cp312-musllinux_1_2_armv7l.whl (756.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.19-cp312-cp312-musllinux_1_2_aarch64.whl (668.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

attoworld-2025.0.19-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (491.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

attoworld-2025.0.19-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (518.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

attoworld-2025.0.19-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (634.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.19-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (514.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

attoworld-2025.0.19-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (494.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.19-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (490.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

attoworld-2025.0.19-cp312-cp312-macosx_11_0_arm64.whl (449.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

attoworld-2025.0.19-cp312-cp312-macosx_10_12_x86_64.whl (457.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

attoworld-2025.0.19-cp311-cp311-win_amd64.whl (343.0 kB view details)

Uploaded CPython 3.11Windows x86-64

attoworld-2025.0.19-cp311-cp311-win32.whl (333.4 kB view details)

Uploaded CPython 3.11Windows x86

attoworld-2025.0.19-cp311-cp311-musllinux_1_2_x86_64.whl (662.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

attoworld-2025.0.19-cp311-cp311-musllinux_1_2_i686.whl (693.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

attoworld-2025.0.19-cp311-cp311-musllinux_1_2_armv7l.whl (757.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.19-cp311-cp311-musllinux_1_2_aarch64.whl (668.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

attoworld-2025.0.19-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (492.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

attoworld-2025.0.19-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (519.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

attoworld-2025.0.19-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (632.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.19-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (515.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

attoworld-2025.0.19-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (494.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.19-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (491.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

attoworld-2025.0.19-cp311-cp311-macosx_11_0_arm64.whl (452.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

attoworld-2025.0.19-cp311-cp311-macosx_10_12_x86_64.whl (461.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

attoworld-2025.0.19-cp310-cp310-win_amd64.whl (342.6 kB view details)

Uploaded CPython 3.10Windows x86-64

attoworld-2025.0.19-cp310-cp310-win32.whl (333.0 kB view details)

Uploaded CPython 3.10Windows x86

attoworld-2025.0.19-cp310-cp310-musllinux_1_2_x86_64.whl (662.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

attoworld-2025.0.19-cp310-cp310-musllinux_1_2_i686.whl (693.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

attoworld-2025.0.19-cp310-cp310-musllinux_1_2_armv7l.whl (757.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.19-cp310-cp310-musllinux_1_2_aarch64.whl (669.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

attoworld-2025.0.19-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (492.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

attoworld-2025.0.19-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (519.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

attoworld-2025.0.19-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (633.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.19-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (515.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

attoworld-2025.0.19-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (494.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.19-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (491.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

attoworld-2025.0.19-cp39-cp39-win_amd64.whl (343.4 kB view details)

Uploaded CPython 3.9Windows x86-64

attoworld-2025.0.19-cp39-cp39-win32.whl (333.3 kB view details)

Uploaded CPython 3.9Windows x86

attoworld-2025.0.19-cp39-cp39-musllinux_1_2_x86_64.whl (663.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

attoworld-2025.0.19-cp39-cp39-musllinux_1_2_i686.whl (693.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

attoworld-2025.0.19-cp39-cp39-musllinux_1_2_armv7l.whl (757.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.19-cp39-cp39-musllinux_1_2_aarch64.whl (669.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

attoworld-2025.0.19-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (492.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

attoworld-2025.0.19-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (519.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

attoworld-2025.0.19-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (637.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.19-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (515.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

attoworld-2025.0.19-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (495.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.19-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (491.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

attoworld-2025.0.19-cp38-cp38-win_amd64.whl (343.1 kB view details)

Uploaded CPython 3.8Windows x86-64

attoworld-2025.0.19-cp38-cp38-win32.whl (332.9 kB view details)

Uploaded CPython 3.8Windows x86

attoworld-2025.0.19-cp38-cp38-musllinux_1_2_x86_64.whl (663.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

attoworld-2025.0.19-cp38-cp38-musllinux_1_2_i686.whl (693.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

attoworld-2025.0.19-cp38-cp38-musllinux_1_2_armv7l.whl (757.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.19-cp38-cp38-musllinux_1_2_aarch64.whl (669.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

attoworld-2025.0.19-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (492.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

attoworld-2025.0.19-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (519.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

attoworld-2025.0.19-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (636.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.19-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (515.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

attoworld-2025.0.19-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (495.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.19-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (491.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for attoworld-2025.0.19.tar.gz
Algorithm Hash digest
SHA256 94c9cef0e275f3f601f8e8b4fa8fbd184d46c78d7ea1cfd19e5330b71fe1c009
MD5 ec1ec4c9cf79879b539699e9eb866306
BLAKE2b-256 24d71cb0eee3d4e08793bea718de95b31deb89fc76e417cbcca10f4139542de2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6616b33125c1e24bea5446947fb003fd03b565d594e3b0f5fab936b089b353e
MD5 815c9026c047c25e05b8fe08eeea277d
BLAKE2b-256 055c1cf891b1f000f2253cb987633655b15ec485647eb5a4c51e3b908494d7c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fe4b38c8922f28dd0f54d2bd4612c38d81bdc07194cf0e057fed02d5f51c055d
MD5 e2ba2e634e7fa97bda37b5bf0ac68155
BLAKE2b-256 452f74269006a517f09cb4734f373f162a7bb00ea48a43c23c296d797b4a7302

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c319930b35a6b2acc1ac62ad345260f3019ea55f4e1f0929d7c70f2fabffc929
MD5 a94c3ad6a128cfc488f7cfcbb6c227a5
BLAKE2b-256 acd1746071180f1e022af462610eec945d0ea3ee5ebd394502b03c159827e6d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd3ec556586ce76473efea13c962b38f0f79cecd86ebfcbe36bc584c5e8ced4f
MD5 68bb8568f30aee005e60b6b3969cd45a
BLAKE2b-256 fe920f95022febd10803960d35e7a87d673b8d5ef69051142d66f79fca368a32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1de4eb27e946a13aeac3bfda12eaef92003608abae30e4d12e75c90f6341d37c
MD5 e20a00600a2b71b0f1b4de94d727db97
BLAKE2b-256 21d23f5836b0a8f31ff1e302d64949fa7d9d8864067d4f5b551664a9c1549314

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3d68521f42a8aa720a969205f1f1348b109bb6f9a92ae040fbfb7b75e47fc0c5
MD5 046125f4f725edf5bccf09c5f6647ea9
BLAKE2b-256 e962ae8ad74e6e247b8d2c29fbc534d44caf7927422ecc29ccf14ca03bcd113c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2d7691c0bba6d134b2f827a36a1bbe108e7add216300885eb4c6092b4dc6a585
MD5 544084bab646e62d9dd8d725acb7fda2
BLAKE2b-256 d9dab65be48def6a1cfea03bbbe1b37bbf3899866c2bab16b1694e3f74f7a984

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f6169b788bad88633eef1aab4d58aa2a38939f61c4bdb9c9e8809fe7599b6168
MD5 c15fc7f03948f45c7a6bc3bca56ec887
BLAKE2b-256 ce1e943bd55cf1969258967f3b5512f2d29f56d95c360cda1f54fee8c7898389

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d3e8c6671cdc0655f5d1233d2e7b50130f6bcb1fcfb7561298bdaf4d1553434a
MD5 016e1e784838eb3b2735f8dee75a7d2c
BLAKE2b-256 fdf1d854f55d282ec705265e4c533fed7bf894e011f813594aad6f10a4fb5350

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 569842a4ea8428ed3fd8b70ecd488d46011df35af87effafd1f56144262175fa
MD5 b62cdeb5202e2ed128617448b02c4ad0
BLAKE2b-256 b616f49ed6dd6d64dd4aeaff8550c11db31a7d27d6d9c6b7c0bef905a7b5668c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 708990101d1bff3d0643b51b45ca7c556b0b7b526403345256595ab7485cb0aa
MD5 74f870dced7b8dcb44d3e61130b29aa4
BLAKE2b-256 c37758d36fd3c259c5c542f1eb3b5a4c045c4e1a7faf143d103c19a67acbbd7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7c64e3ac7e371e0d063c80e0a7951d8ef516909d97ad0036914aa90ad67f06f5
MD5 9430c92aa719aae405332dfacc5e9563
BLAKE2b-256 f052614be4156b85223d414ea2d1153579717d84e463c80924503b192d1a8280

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 247250c65968607de50718e20354c6e32d06df2723829305c2b5ffdde5fb8260
MD5 a3d6033041aaab6d69aeb883c51502a5
BLAKE2b-256 b0dfdc4888d352df3195a08d32949806fc3f5b86ea85328518dcadb35c5f8aa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5df39663a391a6699be4d75688e3e20ab57eb2e3be6b940645452cf05559e9ce
MD5 2df4fd41ba0ce37e6749a39bb096fba6
BLAKE2b-256 f08c75a8bfdbb563a2e640ec601fd50f94ad01602f2cc4cd34e50649b9e340be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ca23fbcd1c235846d3be49cc38d4475a506d68d7f8353c15fb8ba334db32f40
MD5 f65da18620a9e529f31af7fa7fe36371
BLAKE2b-256 b1289a1d472c23cdc3e6a034da6d7d0c77a4b1262b5ebc8c7a975ec3021118c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 10677f01905ee563a6c3f6886a58ec2134acef95e73dd9f8f0ec1006066421bd
MD5 3527899cb8006760bf4647af01c15e07
BLAKE2b-256 49ecf07c9f12a5ba4b31be0cd30430613c6ebb4b6e71dde6af67d9f59acd1444

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d444e35945bbdea229c616284d1510529c18787170c27b4539871e6da6eafbf0
MD5 a61fb5bee6e0c21979e8315144a3aac4
BLAKE2b-256 a1b763babb030fcfd91e84c5b3c1484f93e93bce5b0adec74b8b69f4ae7a91e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ce42113dffdd1370d9b4f9223611597d5f123f20dfafe544958df139ef4e2557
MD5 bacd932325a6f431c2b860b79a373765
BLAKE2b-256 809ff73186771be2931a9fbb074bb9d415ce7b6dae2dfdfccc23816b5b1e33e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 54bfa55032c58bdaa59e5254e9727cdc1dc7d07b9c08fd43bf8f46c982d7be6a
MD5 4f6d7d24d6d511a3c91d9c33236a8b33
BLAKE2b-256 a0feaebf32258c46fd157815ad3a33cf18835b074bbc862b2fc472228d7c51e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 369bc3d914b4e4fa20942a1e3dccdc42280abdd40b811d5f09968355a6aa9138
MD5 27dfc78e80b1236a57759ba2c9fb3c69
BLAKE2b-256 f6710088b6b594b1624c318e7d23b5b652e6653ecc6aa77e0075aea759c5c758

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7eb77b4b270099bb4d16dfd0f0dd7fba032d34086d3bea4777ec7bddfb714a16
MD5 7448236f80ff402973d7563fccc8e609
BLAKE2b-256 f9a6c56f043c5c6420f64b18f42fb7ba9b76d09126bfddc754f12b5043ec32dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 31878a2b4d65f15b23d71a0e63fa24d1b711f4fbd892ccda8a0170d1cd789b0e
MD5 f1e25403eca1d9030ebf27cf0fb21850
BLAKE2b-256 da0d90e351d84a20f4e6b343474731c69709fc7272e16fe76732a216ecb36146

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1454c203071003c7bccc6881ca91f9f8edd60bbc0e7531321ade1d4f7eb397e8
MD5 c01737f67cb98d1b88d812a0ce96e7f6
BLAKE2b-256 a1319c08d476654b1e4d5cc230e7e145285c1c4b97dd53dce058ee89fc002af0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f4b4b7507db79aeaf071f11a5c585023839eb51eb474d3ed9d93bfbe823e237a
MD5 5cfde9072a8c633eab125f7663e5abe0
BLAKE2b-256 ca7a1658a59c35e522573f5f641f5bc96685a0aade65f9d214fb493e5a7bf1c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a2eeb18defbf48b41a1391055cdaa494339049cfa5ff792c0a0fec9ee395bfb6
MD5 b0bf34070c8a9225641d419dfd5a18ac
BLAKE2b-256 9cd9dddbd49a0fe28cdafb3335b392b0153975496cee0c6c30b1276753f91e6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e8b76c8661fa0dc43889e0f19966f647bec5269637f876491eb41c66ddbb5e83
MD5 dfac85c3b7600c9d57e98f1a07f6ee5e
BLAKE2b-256 a25f1bebb15f8f5432c1372ebc2793b3a945e360c1e561dc458f9016af2a7d2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7e56b3cb6e7de4ec9d61e0299f8c87bda47cd8d319a69ea5563ac9b521659b42
MD5 d4918dbbaa4724d003876ca33b349074
BLAKE2b-256 d436f9a859b6b1c8314aee47655696da6acb9c54553e61b4a642ba440f23aa01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0671ef2ff46db47417312669712bddc850182499bb8065ce11524ccfaa4abcf8
MD5 a90579677664cd2d8d2f355dbd248134
BLAKE2b-256 991cc9654cfbf36008f2a7d1bbed6eea8c22bce229c2e2bdce48be59e22041da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f5afe95e698744771e175cebe85b5409949ea2178b8c575feba45f431d51594
MD5 37b723e1580d4b777df2147118fd5d9c
BLAKE2b-256 9feb841fb2771ea1a06d1a912c5550a314875e710e3dab6c6fa42505ccd15ce4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 944b17e2437b77a0092ae03b6e69d3f3c08127ee503943cc88e19f2732c627d6
MD5 49d881cfdfbcee089e1c8d2042190309
BLAKE2b-256 58554b71c38af3092a7d3c5ce556daeadbc0b542243498a5c625c440d185f5a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 022ab20a95441e9bb7b2a2ebe21f076a27d336c4576fd015d738f5111d72f499
MD5 1d2d5011ccf2d4724d945341fa3d2e5e
BLAKE2b-256 4c4d818e4763334975790f150b7d837e0941830308af9aab925cff7bdc831069

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aa060f421596744fd3e9d41c2c6a0f2bf5b887277cb97543ea299170085c09b7
MD5 8c00098be52128ad080292563015c0a6
BLAKE2b-256 a69b059f84ca05b49dc4a12d6e4f81c8475cf322e474eb1a7abf3d4af68dd44a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2ed3dbc9727b5c392adb62deb2f6cfc51ba9cd35b6758e5076293c0e316610b4
MD5 8cdf20c48879f0d43b7b9217249b74c8
BLAKE2b-256 f9730abe3332f96f30ab0f9877ba7300c57301e17b9473a682cdfac846f6d607

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5926946acabb381d1b519dc933fdf3b5341185a0c15075fe2a4848e2eb65519d
MD5 d221abfe8dc09e2fd645590644ae2a4d
BLAKE2b-256 3b9663179bd8a598839c049b80d9801f3f4a19f64dfece4fb9e006ba63939a2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 218fed455e8027f02c5bfbf1b4c6b931a331e5e4bb6d92de214109a0ed45d941
MD5 bc23a7037a44c73e0fb171e6442447d0
BLAKE2b-256 8e95da69fc152ed732459c409104ea781b3b22153eec605e237cf66bdf0fc19e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 751033ce44b655b1cd81310c1f6c86bd743d7242085ff397b21b9190e22e6843
MD5 2a6254ebb7e264607eb669fc7e4aa171
BLAKE2b-256 baad971f844aef3cec9f3460a8adab7546c4ba02f1c77a2cc4d92b9d1248d2cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 632aaa73c70110c501fd927772512bff0285a65749acd502f9fc2f2b235124d4
MD5 670b0fded8065a32cae84b83fd9871c1
BLAKE2b-256 5c92ac2cc9ae11c858c3e2c1982ca8cefe3f06666184835b70d40b25b00218ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9fae15223186a9a924b069ce9fa6b8f801cdcc5329cd712aa27184e17cc9d72
MD5 db7ded99c77914f75cd14e74062806e0
BLAKE2b-256 9d2571341dd2e24085f8867bb803e88dae3039e016813002680b3aa0e2b2db1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 36d8cf7440ec6431ea54977c51134b721c285f374d1a343dbf2f6cc967c16012
MD5 f7c0982b2ad8c8bb0217fe88b7e11117
BLAKE2b-256 580fd2e17290a99a0926e29a19b51322128cdadd86065ae7adbc13137dd27ef8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 91decf9045002d5efa7fd211427501b313711a7f5e10ad37601bb585c13551bc
MD5 de39b6110dbd039897081ae4a8f040ae
BLAKE2b-256 30e5eda143b21dd19678ca808902fbd41481c62b3d01b9774b3ff34d1632b6de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87aa027273e6289b403ceb8fb56f05b8f309d5a480705ae60a1499325d3b3a64
MD5 36a2224f3440be765a381fd148431e32
BLAKE2b-256 f967a2fcacba2e0c9fc29084614396510ce1e4904e5f9ed5cd9512d144ec7820

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bfb0acc28346926c260d5b8e69c2f15a23b55ddce308067e5af43f8591c06c2b
MD5 55640ac92227283a363ebc32ed51e33a
BLAKE2b-256 f3536a32bf4601744a961a8dd5565e3947a4f1dc3bec2a573646a3b171531be4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b23356bff2464b232404f777c2549c691aaf5c6f228c7ad0cf57aa3a3c40b2e9
MD5 fe282ffb4096f4fa1486d6d01ad68f70
BLAKE2b-256 cb4443b03e095a7c31605ec2a779a40aa50384b22832d546b80bdb2743e71184

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 453e674275007699dd4f333cbba7f5c69ed942e51234e5405de0e35037983fc0
MD5 aab5b90e1893aa6b44d7842aa21a3806
BLAKE2b-256 7ff03663234fe01e00e9076b3d654e3f705e79b41cc29c4baa8bd27b228334c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9fa7f8eea20e233e8cdd64455d5b1f49bcd4a602a2f3491794b8888009dbfba9
MD5 3b500aaec3d20915dce5f978fc415093
BLAKE2b-256 38b0fec070595567ee6cfdd7b73b5af4d1ad591c0372829a006d2257a866cf99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8e2bd9d10ded053100448f8eae1e51cc00af7a4e1dc67d7a37cc61cb4fea01c9
MD5 f8d5904bbadf7a6cf2dd60fbd9d0f895
BLAKE2b-256 687eca617cbd78d082b14d33670687898e80d203e275410faef626f66b24f550

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7c2a4d4e28af810844a89b8efe6cd09080479b246500adc89aa77c44d678c66b
MD5 16ed8d63987473762be3a91673e8111a
BLAKE2b-256 da3a6b722c3a7901f8c8a38295ed62b6f5daf7e47805d7b3fe57a9583a25362c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f697a2044b8db8d3d92c721392487df2eaadb1e96450cd33ed9cc3ce12bf7761
MD5 44fb8ba740c85a3f7b8462a69d5ae6e7
BLAKE2b-256 c79068abd20d542079d2bb6689d37294e388308806d2f73e0b71c62b2e16607a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 acad705e7598264db4f81d0571194419ba8c189434ff61d09e88c753e5c53cce
MD5 da3421a3394624e5b6908a98d21c1b39
BLAKE2b-256 f88c6f0a0f984cb1755333aea11468018c040ce8b05ee0922773e8371f198477

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 32405a174f52626e6f2dad092cf2e1dc034b0e7e9f9b5b79b68e734a5d0d6783
MD5 dea86cb820e2efb548254e202db41d39
BLAKE2b-256 8c058a99fbd23de8f813d4483e4278615a407c058f417d7834d9a79a703228e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 366deb27a2fe193154fce024014183678a83c40693714691a88de20700b49c8e
MD5 9254b36b24c5d3747ecf5ae47d48e649
BLAKE2b-256 26aaac1fd922d2837378c04f39693a75b5641f57bcaf776d78cde92850b12edc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6e6b9bf759c8c45d9aa7a330c6dce8f9c24d3ca49eaa35acfae9373c30be0638
MD5 728e5b6afdc237a9f94d65886e8dbf11
BLAKE2b-256 b0eea721572e85b6d7cab31464ec3f4bebee722d9ee4d0c80aa409864369c6c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ed2b5d63415cfa9291c0210fa3adfaf339408a9d1ddd7f126ab71e00fd446dda
MD5 4edcd703cf1791af8f527d3cd73c6028
BLAKE2b-256 291c6c5a4c1e52004d20a5641e34b1dcbba4bed35f8e020f4f6ff8f71edfbd0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 00f11f1158b84605f8d8e9854a2ce533867f0ff2517c29c69d33159080b60b7c
MD5 66ca2e73d34778a280e052b4fe572f75
BLAKE2b-256 cce9fe1962cf516128b8ce833c8dd2c2eeb94f19638697871be19958743234b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 830a9bcbe0902965ae32a529bd3aa6ebf69cb7757d870ffebd1abfb2c7bae8a0
MD5 24c49ee3af45e29ed7f3804bd67cc4d1
BLAKE2b-256 2c624aadf971f8a67c540f2e6d2ce2226b96406482437985f9db35b6f530f897

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7d14ee586a8e230c0f3afed38cc80b6cc3a93f59f3258a25d3ac5799487f3336
MD5 48b864dffa2adafb1797181010295fe4
BLAKE2b-256 76111cad2dca97b65ece1e930c11c82eac08eca83cbba15432b91e278bdc493e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5fcabae494a2854bba170e24cf9f1fe6c88a57e493f2943d543c2b1d552b707c
MD5 590e61e988a7bdddb3aac00424adcc1e
BLAKE2b-256 561221f3893a9bad4e08d2460853594ab76d8596097c1eb8b9e2afff89fe1961

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0c3c34cdba17e960be08e8d233ba1b766839bbdf04a01052ef55f44797bf112f
MD5 8b7be1e431e0284eca05abeb31116b1f
BLAKE2b-256 25e7e13452d18af642d4cee88154d92c5f4ea609637424dd4cb2f8494e7ad938

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d15166bfeec93fb684559fe7f6092e6fcb226db546c5a1f1c422e45ae3f627b
MD5 6dad98f8db14b9abcb22e6adc30323af
BLAKE2b-256 d389da50ce727c955bd64fadfb91f7709f099a4d315603a37c06d0fc24f9d91d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4b777040fb9e3d05e94464e7c4a465e52ed254d71a2ddd28ca2f0b2f1e7c9078
MD5 6d32b83f91af13b84aa01cf1a7b28600
BLAKE2b-256 5acdf714487fa6134f6989f53180d9f1fcf8c2e119014413dfe688dd0ba5c872

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 099503eb5372a0935552126355a18a0f350d1192d48f36d06b4236a4e412c530
MD5 1c1f667f3baa14356d8e0f0c88727c6d
BLAKE2b-256 2fc417def8aba19d285b6f735c3ceafd7befb3bc82e727500fb5550f226a0628

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8b21ee434b4b1cb389e82fe1556d65c293fb3f65640cd5b04bf2bcd969b95963
MD5 cc3bc7e9b38cc47703d2a180111b3db0
BLAKE2b-256 17b9df1070943e220468c4c8fdf5b714d679e08fce65fe04fcd9b4f5983b6e86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8d703881d4b14ef3f17e1493d9cea0b49be7a77e95223e30c0250705f11ac41f
MD5 5cd19e3a22575ae8d1d18817a68b0efe
BLAKE2b-256 391b035bd6170cc54a0c02436367f921d053cf98934904f99710a2ff0750fe6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 496175524944bf389436371fc273c704f32fd4abdf0de0188d3d861ace803022
MD5 de7886661f2ce58e32578958b3247c87
BLAKE2b-256 b592b37e81bbcc2b35d0c8bab254f406ea753fdb0665be10cc7b39e939974349

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 895d3cf7fa5ba7974b637f4afb83ce4efaac0d2c102f3726a72c438260c4b894
MD5 9e43c2d6aebe0a2a293af9575ece0a63
BLAKE2b-256 fa3588822d92e86c18e1a36c3b5badee375f179fc3aa6f06b44efcb1f0d28eac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 894838a1d2394cf1d1c44662e5775e4e7013aed60c564cd417aaff016d1ced76
MD5 1d55c1774570c540b43e5930ad1bea50
BLAKE2b-256 ebc529c0fa7273d4a18ac562bef6700735672100a86b6862f0e8bb4cb51ea435

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f6e5efbaf9a4751c55a60ea3be978808a78c0f2357ef195589cf38e52c2caa4f
MD5 7734dbee02c0067ed625eb6a70d09c5d
BLAKE2b-256 cfab853bda8b9b7162bee4adc4dab4b0c4418cb284e4a3451638103c9f74d080

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f8e93cc72d04c70dc75de638a28b01119486319db5afb8cf2ec7c0f5ef2836bf
MD5 95ed5ce9595a2bf2f7a3123bf79a390b
BLAKE2b-256 3b2baefbfa58dc06e7a20c90de6befb52b5c6e8186175a4c06bdeb020721836a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8401b95857dc7a7c002c6032294d42cd7a70efbcf6f0eed4a9e12ea901f78590
MD5 cda0b58cdb0702d290020dc3a839809d
BLAKE2b-256 54888363813d3eecfba26a7c7ffb850ff82af70cf4396374785633a84624ecda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8924c9a4cd9dbab1649666a520556082dc2ea6876a69a99463837da18485d09d
MD5 090e568f133a54bced8c075850a43090
BLAKE2b-256 4f7ffbd18e3ad94e5a097ce2ee13a919c148b5efb9619c02560dc50cbdf1b160

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c1064e6b697ae339050411dc3260c6b59669670cb30735bc6043943aa7995f39
MD5 27945ef0363a4497c25dd7ca68876904
BLAKE2b-256 89b17573204cea96f8cefcd29b8c8f427a4e7527430c956a2f3ae93200362e7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d42df2b0e5e01fd1b4b3959830c87a71a41f78e2b44091b0dae3a67580c0080b
MD5 beac573d8af6d4f3146118018212ea64
BLAKE2b-256 c28cd4887560d2ff78dba1873eacd5f0adb9c6a191d40d3b49187d4432e21c00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 482b223b86be242c18722cac50a499c86a7db9b3d6209c5ce1f979e3fb45d74a
MD5 543afe3e69b28db893888b61eab6c2e6
BLAKE2b-256 4bc4ef413f9ca71ad8ffb8c8c860cf56508587fa76a2fb8d90da1f31854b36dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 78a42c73fdde8d0ec3e7b7d6518489348d86254a700eec06496a4f4535a503b3
MD5 b2e82eb94fb6fb9677fa420092d75315
BLAKE2b-256 41da31eac1b1986be3691d1e30cbcae8d1d948e9923bb4a7db40d41de8dd7d76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f57fa14ccbbf77734c2851a2008015323ee421ab3cb81b697ab83ab39994b849
MD5 82105eb8aa31691d4b7fd1151344697b
BLAKE2b-256 1f9b68a32700ea122560032ca7001752c860dab21e76db9abd1020aa3ac6b9f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1aca60591606a608c772192ed24aa948a04cba20db47f157b6ae8bff6583a515
MD5 29f75b5ea592b7a723dcaaf5d4c3ccf2
BLAKE2b-256 f2ea92b20afa7aa3540fbe9404a6b8341739e052e947f256448054ce67be3431

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 da8180ac0f75532b15034d4d63a219d7ec44d8ce8a2a28557595845b8f55dd35
MD5 0e8f69f9afa23d422fa8354485812242
BLAKE2b-256 c43a55a7644c064f830aa4aacbe50db425b202054fbb5c220c88461284d8f53b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a75236cea843c5ba1b0e9476d7c1d6891efa0a50bebb2f1721938e7203dfd5bc
MD5 04440cb3a7fc7126a40e92608551eaed
BLAKE2b-256 2ee4775b9734833f4d4a664deecfdc4e4c7a79bc4b9a882f06cbea491202a63e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47cedc280a50d46463bf73126d3a149b4d5093773e45078b0cf06deceafabd85
MD5 95ccfec5bf5ee0334bb7f9af09832d31
BLAKE2b-256 8ec3a57b671cb97abf383445d402ecc324a9ada0af0a7b35c5c43fa30446f786

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 99e9c74aeab8c0d3572f4be90e63e462c3d5d6f3c58ada247d464033da7c0ce8
MD5 ff6550fea62fa3172a1e23e0f70cf79a
BLAKE2b-256 bd4392eb10e34780a8f86966a484f4f6ecb18f8c78ffd8ad86f68ef61cbb17bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e04c5102c759e406185ded54d04a1285acdbae91d6620c68f86382d93d9da080
MD5 656d4d7c58d235820ed2ed3c17de0cc3
BLAKE2b-256 b4ada4308c5990cd6d8c4f884e5b1bc3c555ec2295727f66fef3bfd6b4494d73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 634b5281d144223d9d753ffb15752e92bf06536d8c52aab56ca524c1e87dc255
MD5 f90d351054c44d2adc498a27453a71e9
BLAKE2b-256 12bc1f1d553ae158bb93212c8505d4148541f8d464a5744b6a27f9b3e22044fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cdec85fb6f2876388301fc24d4c6bb2cbcf1413061091c3b985bde007942b719
MD5 930f307ee39a15ea38f6d9f32f2fd22c
BLAKE2b-256 f4d35b0b941f59a653b772475071baee02525d458dc3652ac4f4346baa02f71d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0a843fc54b4e6f9377bc1dc7bf038d88215097fa47b5dfe025fdd6cf95823578
MD5 97a5f7fc1bac597332db60cb609d7121
BLAKE2b-256 f29e6efb75fd5b15748b3302dfa00e1e5c8be12ba06dd0f2e3643a035ca8c400

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 670a108d6f81f7729e2c2bedb3787befbbd4e47b536c8998837cad32ba48f333
MD5 58cd68ea160dca09c8ac5b95396a535c
BLAKE2b-256 2ea2c2bd0c8ca52851505637d3f74639b840350a7b507dd86132569ed6000d2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 948d993cdba8cd8fc82e58c0c51ed81fbc1f2798c15b13f08b1558cd1c60fc9e
MD5 525d636474403d6abfed072cab846a80
BLAKE2b-256 5d1c103a034d56d94d811ee7e18c3f801b352077b5e63a944da1917192477861

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e5c0ac8a2beb9efbea8c7b99208838e9c2cbd93e52b5dcc52f95fce09d94933a
MD5 3330e61a9de1042ff9f1cb1bf8fca1ca
BLAKE2b-256 ab73cba3e6d0529928177288bc58d9e90198d991b445f77950a40deb13319b7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b4a47f611bdf0904ef4bb28ca612346d02d8bdac709129c1d7b9ba2f0d2db425
MD5 6cd74d957df2f6e374e1b02eea7f6d9d
BLAKE2b-256 32e8a5ebb1e3cd3d52b55d99375ee7cac8745c0723f681d5e75d1c98013e2008

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0654158f6496393d326746190d1124d75fc55aaede52f3f681c0720329c4d523
MD5 c0d3550bac822250767bd504278ea031
BLAKE2b-256 175d6459ccbac3d0b7e717bf46dda72ed8794914ef37012ea2c2fa321680aa82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d783f7933fd8cd14e0a642afbe8567ef8b740e61d51a0eb92c7f45cfa5155f53
MD5 9908c6db69526092f04b3273088f7781
BLAKE2b-256 f54ed7837724356da4b452dcde0eea4ac14e2f90a3ddc1af9aab7c0af29064ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a7ca1e7c7115ee5625f3bf9c42fd3a0b9927ac49d912c544c1b2b4bb74a90f96
MD5 2e9524c004473ff7f0e4de561e173505
BLAKE2b-256 0126e14379c65e298bc335f7595381dd3bbb980a289ccd67b6e43cbcfc2841db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ae966f5fa5c70f875a3b254058b077dc8e7aee382d1675633bc1272eae77e89
MD5 a0c10ec7a74273eabe4d47c7f14af3e3
BLAKE2b-256 28847011367608ee2c0fc7590de9229dbc604f3bc2805c0c42e6e143a39078d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a21bb27eabec7fd8d03eb4e6896e75745d55c1ff16683f9154729464834ca8e5
MD5 11e9f07352f5523a8481d68d585b66f9
BLAKE2b-256 f6d323d10e52e703bc87111cb999bc0f149b36ab89bcc7aecd4edbbd5a849189

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 642e2568a3f198fe488207454241f2b83f79866c9c54502c1895c4ee21fd82e7
MD5 8111ee770692b4ecc6ef5f4bdf1e8add
BLAKE2b-256 1034cfd1a76eeef7f8b3eea2fff94d0c1901f72180deebf9f22fb43d76b1de7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 852afa25e4c72c6c37c3dca56b2bf7881913a9d76cb7b27025d9c3b31fe35edb
MD5 0dff159c49b0c4fb1e2ce1253f90aff6
BLAKE2b-256 4865c2ef7c22c850adf49b91b99da0b8bf5a1a0e2cee1a1684a4d5faf057f561

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 19325f63dc77b25b36b5f3833885a58ff22e02c19399e94294c9ae41b571bf60
MD5 a4baefc227adea7bc3b005aad97292da
BLAKE2b-256 f935a583eb400606750f8c9ab8fcc4067f0ee7ff389ca414465cbd101db6853b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7f13a7928810deed9b840905ae70e43f396154b9807ab21fb73a064f84892d61
MD5 62aa93e72de50d43c586691835e0c5da
BLAKE2b-256 c8ebb6d207bbf836493b1495710edeaa2f7c243509f46aa430859a034d03295b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ff1730482d6faaa0e2b4326095beecda90fcf05b585affd6ad1d6f0795701d0a
MD5 7cbfbbbcb4eb3eeb7b1183372ae8a72b
BLAKE2b-256 1ad62b40873b622db6e3a1d07e531014444234f7cbc528c0d424fcc7aa62c8b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a63597fd171cb24b0c584bb39fea0fc93ec613fb77065bef4412eff85efa47c9
MD5 85d5599c6bcd21351ea9c971ddd270a1
BLAKE2b-256 aa340dfb059209e92551105d9b5a9df9030a0a9b778c6d64763cf220064458f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2dda475e6b79e1aa2d8e9211b5af52108af9e4dd81ec42973c1ce160c4a0aa8e
MD5 2cd4993d6aed0f168097229a3827c5ec
BLAKE2b-256 78e263f60f37be8acb14e78b46b3bdd89c84d6861c1f2495997ca4bbef39c310

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e23cb0af592dac8d7afdcf2f8e8b97d8daa4d157fea624e5740635863f4868a6
MD5 32bbcdd5b45cae8ef5d93d02152157d2
BLAKE2b-256 5b565f3b999ca391bb72ed3a5de39d684ebe0ad12b8348814628f4b68739dd98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0b9466cc0a29e796244a9279fd724a8310d3dd66eb16eed105b68b06243b6de2
MD5 767ea1061832e72a01b7bd336473add8
BLAKE2b-256 7153fb6262e50827e6024d8e51adc51939e7d93f19e31aebc35cbade4ea1adbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 60c400b7910a8702d11755f9ace0b80e111f14f09c16e71d2e8f22991d227bbb
MD5 93c224499d70c11588e8df3c2e357a05
BLAKE2b-256 5988a9c5c695e359ffbd17a45eb23c8bfa387eb5c3614cd41e40d7bfe1c99786

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 32d24bc4b1d38672d4f818e1b2caf0e3214a51d1bfb6cb3c438636e7ef28202d
MD5 aa6a8a7d9063a7b8046d9d4baebc3d75
BLAKE2b-256 3a02b4eb914f1968e410c86a9dd6c3fec8f8117c4d89c47da64c1fe0755d463b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4d769dba4fa8815fe5ba3a2a3d0e1fcbbb587b71fb4fd466adcfe9ded1530f52
MD5 63fde09179a03b9e9fe882e07fdb1b72
BLAKE2b-256 1227128ca8d3796170a5f8286acc7e38c8900af1457158f3fffc77af01b6498c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 4b3c1a0b0c220a625a7714afba9e8fa66e218afcf983f8d58a32bfa59e38f6e9
MD5 deee1ac07084ce87372f44554f7974d9
BLAKE2b-256 d7acd9fc6eae9d829558ae8915c7305d234fa3415aeafffb359e4785f429c23a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 04db8cd854bb61b9c1883cccdd67efba11565d6835f99ca57ef8d8b9217a601b
MD5 ed0c1c253852dc8f36caacb1480bc144
BLAKE2b-256 65c1f18d366af77dbff3090c1ac5495cb25ee54bdc7bd76721a9269780a5727f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ddf8daca53f64d729d6b35f872c5672aac312fd20c145254e0611ae7d4c9e976
MD5 c45d7331be722806734f7ec94642de74
BLAKE2b-256 a2cd00c7fd5499d4c825b1a75124487be91cc32cb50f09c09ab1a2e460360f72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7e95825cefbd95ebbc0653fc5bf45ec6d891585a628209f92c0c51af2caa4688
MD5 e2ca5642b997710abe8f5dc89e01bd1f
BLAKE2b-256 9a245cb454e42cbd3b546049c9331d72e279f3d02ffbf644bf647445845c7d82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c2bf669c7dac4d5c298b282b788144f74500f72b7043a688406ab234d5de254
MD5 8369137c4232bbb32e3928a68840d64f
BLAKE2b-256 c05436d38515c2b8f567adf61e39a9325af792adfc30f0de1e353bfd80f07ed8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80d47c66f714f1141a95111521a4abfd9959bd708128cd47e29a6feeeb935adc
MD5 79a23bdf39637de772809c84cf645ae5
BLAKE2b-256 3d69365ea5c12649deea8da613b94c1c76854867dc53dffccb3ba3b90f0792c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2790df88547f0532df46b8b9f112a89503de44852efa176d93a00ea8fafe34bf
MD5 99907ced0190a2a6dae6d181f925ea41
BLAKE2b-256 425dd89ffc1d67716725d75546a65023d3f001f9ab27a4dc628963071d040f93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 577a9dde87399e955e0898dc703d98604bf47f699d1f07ffab2db0b70b7e17ac
MD5 5b3dfd2c537530db0d6c1e3caed29d34
BLAKE2b-256 21b471f5e96d30e4d50db263df6feebfbe8630457dcfded6a209fa4b08160e07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f6dec44715c222990a6ddd04dd2d2cb9979a26ecfc8a6506149c5b3e959cb1f7
MD5 b6536f713faeb43d196d6c565918d886
BLAKE2b-256 6743dd670ad1a0f74a828fd8c5e460da3c50defd886202d6e45a53517c1d687a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8bd9304eceb4c55dd79cdb9f1f30412618ff324e3ea47f45a20081b16e395c66
MD5 81b1439104cd370ea56ebf4570773154
BLAKE2b-256 7d89cedaa1b448b78793cc5746dbd3ac610e3d7a35a6d838a61d74be7d50918e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.19-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8b20303d14f17ec87028e28a2f580d864ba2cf9b8ce40b1dcb7e3fbcd74acd4
MD5 77df7ad76a7ac90d6c4a3e109633e0f1
BLAKE2b-256 441d9ae370bf8580af6d3401adef8dcfe1af3405c642ed165142ad8650399215

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