Skip to main content

Tools from the Attosecond science group at the Max Planck Institute of Quantum Optics

Project description

Attoworld

DOI

Tools from the Attosecond science group at the Max Planck Institute of Quantum Optics, a.k.a. Attoworld

We are still in the building phase. Things may change, and haven't been validated; use at your own risk!

Documentation available here!

Structure

The module has several submodules to keep it organized:

  • file: functions for reading/writing the various data formats used across the labs
  • numeric: numerical tools
  • personal: a module where we can add our own functions that might not be of general interest, but are still good to have available to we can easily share work
  • plot: functions for plotting with a consistent style
  • wave: functions for processing waveforms
  • spectrum: functions for processing spectra
  • attoworld_rs: A place to put Rust code with a Python interface for cases where it's particularly important that the program be fast and correct.

Contributing

Code guidelines

The goal of this module is to gather the python programming work that we do, which maybe others in the group or the community at large could benefit from, into a module that we can easily add to our projects. This is easier if we follow some guidelines for best practices:

  • Use docstrings so that people know how to use your functions.
  • Comment code enough that it's understandable. It's possible that you write in a "self documenting" way, which is fine, but if you're doing something fancy and non-obvious, put in a note
  • If there's a function or class that you think others could benefit from, absolutely feel free to add it to the main modules. If you think you are likely the only one who will use something, you can also add a submodule to the attoworld.personal namespace. This makes it easier to share files with others!
  • If you're importing libraries, check and see if they're listed in the dependencies section of pyproject.toml - put them in if they're not there. This will help make sure that "pip install attoworld" will work out of the box.

Working with git and Github

I know a lot of you aren't familiar with git - it's incredibly powerful and useful, but has a learning curve. A lot of code editors have tools built-in for working with git, and these will do most of the work for you. However, it's important to set yourself up properly if you want to add code to the main repository with minimal difficulty.

Forking the repo and getting a local working copy

When you add or edit code here, it'll take place through a "pull request" (PR). This means that those of us maintaining the main repository have a chance to review and test changes before they're made, and that you can freely edit your version, using git for tracking changes, without affecting everyone else. Your edits will take place in what's called a fork. To create one, just click the "Fork" button at the top of this page. You'll have a chance to give it whatever name you like.

Once you have your fork, it will be located at https://github.com/your_username/your_fork_name. You can download this and start working with it using git from the command line:

git clone https://github.com/your_username/your_fork_name

Now that you have your fork on your computer, you can work with it as you wish.

Making a PR

Once you've made your changes, to add them to the main repo, go to Github and make a pull request.

After your PR

Once your PR has been merged, it's a good idea to clean up your fork and synchronize with the main repo. Before you add new code, do this from the command line:

git remote add upstream https://github.com/NickKarpowicz/Attoworld
git fetch upstream
git checkout main
git reset --hard upstream/main
git push origin main --force
git fetch upstream --prune

Do this before you start a new wave of edits; it ensures that what you write is going to be compatible with the up-to-date version of the repo.

Developing locally

To work with the repo, i.e. if you want to add functions and test them cleanly, here's how you can build and install it in a local virtual environment.

First, you should have Maturin installed (e.g. pipx install maturin). This is the build system used, which converts the repository into a usuable python module, and can install it for you.

Now, set up a virtual environment. Navigate to wherever you want to create it and enter

python -m venv .venv

This will create a virtual environment in a folder named ".venv" (the dot at the front makes it hidden). You can enable this environment with

Linux/Mac:

source .venv/bin/activate

Windows:

.venv\Scripts\activate.bat

(or ..venv\Scripts\Activate.ps1 in PowerShell).

Once your virtual environment is activated, you can build and install the package. This step is easy:

maturin develop

If it goes without errors, you'll have your working version of the package installed in a your virtual environment and can test with it. You will just have to run "maturin develop" once such that the compiled library is available, and now you can work. Changes made to the python code will affect the python module in the virtual environment.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

attoworld-2025.0.23.tar.gz (199.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.23-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (736.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.23-pp311-pypy311_pp73-musllinux_1_2_i686.whl (765.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.23-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (826.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.23-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (739.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.23-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (566.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

attoworld-2025.0.23-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (592.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.23-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (713.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.23-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (589.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

attoworld-2025.0.23-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (564.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.23-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (561.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.23-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (737.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.23-pp310-pypy310_pp73-musllinux_1_2_i686.whl (765.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.23-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (826.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.23-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (739.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.23-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (566.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

attoworld-2025.0.23-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (592.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.23-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (713.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.23-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (589.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

attoworld-2025.0.23-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (564.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.23-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (561.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.23-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (737.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.23-pp39-pypy39_pp73-musllinux_1_2_i686.whl (765.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.23-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (826.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.23-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (739.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.23-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (592.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.23-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (716.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.23-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (564.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.23-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (562.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.23-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (563.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

attoworld-2025.0.23-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (587.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

attoworld-2025.0.23-cp313-cp313t-musllinux_1_2_x86_64.whl (733.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

attoworld-2025.0.23-cp313-cp313t-musllinux_1_2_i686.whl (761.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

attoworld-2025.0.23-cp313-cp313t-musllinux_1_2_armv7l.whl (823.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.23-cp313-cp313t-musllinux_1_2_aarch64.whl (735.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

attoworld-2025.0.23-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (590.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

attoworld-2025.0.23-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (708.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.23-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (560.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.23-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (558.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

attoworld-2025.0.23-cp313-cp313-win_amd64.whl (403.3 kB view details)

Uploaded CPython 3.13Windows x86-64

attoworld-2025.0.23-cp313-cp313-win32.whl (388.6 kB view details)

Uploaded CPython 3.13Windows x86

attoworld-2025.0.23-cp313-cp313-musllinux_1_2_x86_64.whl (734.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

attoworld-2025.0.23-cp313-cp313-musllinux_1_2_i686.whl (762.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

attoworld-2025.0.23-cp313-cp313-musllinux_1_2_armv7l.whl (824.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.23-cp313-cp313-musllinux_1_2_aarch64.whl (737.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

attoworld-2025.0.23-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (563.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

attoworld-2025.0.23-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (591.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

attoworld-2025.0.23-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (711.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.23-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (587.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

attoworld-2025.0.23-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (562.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.23-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (560.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

attoworld-2025.0.23-cp313-cp313-macosx_11_0_arm64.whl (513.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

attoworld-2025.0.23-cp313-cp313-macosx_10_12_x86_64.whl (524.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

attoworld-2025.0.23-cp312-cp312-win_amd64.whl (403.8 kB view details)

Uploaded CPython 3.12Windows x86-64

attoworld-2025.0.23-cp312-cp312-win32.whl (389.6 kB view details)

Uploaded CPython 3.12Windows x86

attoworld-2025.0.23-cp312-cp312-musllinux_1_2_x86_64.whl (734.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

attoworld-2025.0.23-cp312-cp312-musllinux_1_2_i686.whl (763.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

attoworld-2025.0.23-cp312-cp312-musllinux_1_2_armv7l.whl (824.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.23-cp312-cp312-musllinux_1_2_aarch64.whl (737.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

attoworld-2025.0.23-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (564.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

attoworld-2025.0.23-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (592.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

attoworld-2025.0.23-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (712.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.23-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (587.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

attoworld-2025.0.23-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (562.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.23-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (560.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

attoworld-2025.0.23-cp312-cp312-macosx_11_0_arm64.whl (513.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

attoworld-2025.0.23-cp312-cp312-macosx_10_12_x86_64.whl (524.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

attoworld-2025.0.23-cp311-cp311-win_amd64.whl (404.0 kB view details)

Uploaded CPython 3.11Windows x86-64

attoworld-2025.0.23-cp311-cp311-win32.whl (390.3 kB view details)

Uploaded CPython 3.11Windows x86

attoworld-2025.0.23-cp311-cp311-musllinux_1_2_x86_64.whl (735.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

attoworld-2025.0.23-cp311-cp311-musllinux_1_2_i686.whl (764.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

attoworld-2025.0.23-cp311-cp311-musllinux_1_2_armv7l.whl (825.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.23-cp311-cp311-musllinux_1_2_aarch64.whl (738.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

attoworld-2025.0.23-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (565.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

attoworld-2025.0.23-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (591.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

attoworld-2025.0.23-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (713.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.23-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (588.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

attoworld-2025.0.23-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (563.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.23-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (560.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

attoworld-2025.0.23-cp311-cp311-macosx_11_0_arm64.whl (517.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

attoworld-2025.0.23-cp311-cp311-macosx_10_12_x86_64.whl (527.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

attoworld-2025.0.23-cp310-cp310-win_amd64.whl (403.5 kB view details)

Uploaded CPython 3.10Windows x86-64

attoworld-2025.0.23-cp310-cp310-win32.whl (390.1 kB view details)

Uploaded CPython 3.10Windows x86

attoworld-2025.0.23-cp310-cp310-musllinux_1_2_x86_64.whl (735.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

attoworld-2025.0.23-cp310-cp310-musllinux_1_2_i686.whl (764.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

attoworld-2025.0.23-cp310-cp310-musllinux_1_2_armv7l.whl (825.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.23-cp310-cp310-musllinux_1_2_aarch64.whl (738.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

attoworld-2025.0.23-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (565.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

attoworld-2025.0.23-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (591.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

attoworld-2025.0.23-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (713.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.23-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (588.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

attoworld-2025.0.23-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (562.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.23-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (560.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

attoworld-2025.0.23-cp39-cp39-win_amd64.whl (404.4 kB view details)

Uploaded CPython 3.9Windows x86-64

attoworld-2025.0.23-cp39-cp39-win32.whl (390.3 kB view details)

Uploaded CPython 3.9Windows x86

attoworld-2025.0.23-cp39-cp39-musllinux_1_2_x86_64.whl (736.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

attoworld-2025.0.23-cp39-cp39-musllinux_1_2_i686.whl (764.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

attoworld-2025.0.23-cp39-cp39-musllinux_1_2_armv7l.whl (826.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.23-cp39-cp39-musllinux_1_2_aarch64.whl (738.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

attoworld-2025.0.23-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (565.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

attoworld-2025.0.23-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (592.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

attoworld-2025.0.23-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (717.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.23-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (588.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

attoworld-2025.0.23-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (563.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.23-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (561.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

attoworld-2025.0.23-cp38-cp38-musllinux_1_2_x86_64.whl (736.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

attoworld-2025.0.23-cp38-cp38-musllinux_1_2_i686.whl (764.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

attoworld-2025.0.23-cp38-cp38-musllinux_1_2_armv7l.whl (825.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.23-cp38-cp38-musllinux_1_2_aarch64.whl (738.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

attoworld-2025.0.23-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (565.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

attoworld-2025.0.23-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (592.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

attoworld-2025.0.23-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (716.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.23-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (588.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

attoworld-2025.0.23-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (562.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.23-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (561.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for attoworld-2025.0.23.tar.gz
Algorithm Hash digest
SHA256 a20cf8ee01e95850c6d9e2a77528aa3895048d3aebe9dab8fc830dca573db7bd
MD5 26bfbb6789cafdc857c8d01da3e25184
BLAKE2b-256 e216033a8e8aeff4d4b678d5db9ddf44f11976dbc08f542667d6ec071cb94352

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5963577344b4ad627d509cda6dbacc5512bd5609c5c2cbc0542684b2ce342820
MD5 4900a8285c165a26d903fb8148d95cad
BLAKE2b-256 3c11afecd36aaa1fd8e3533702127380873786c0bb40466b804c1121084dcd6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 959a897c97472bfacfd183c6f1558adaa2f9bb5c32eedd45dceb1e5cb9368b6a
MD5 1bdad6a56c1b3940ec81a6a3dac4a832
BLAKE2b-256 f103ca1e0c17af42b914983f5f3c0c557e8d6775d77cbb7ed6fff72d74099810

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1243c48a8b73a5b355e8417c804a6bbc4236ca68a3941f35899f34c182df3cf7
MD5 baf1f355e20eac5696685408c2e9c68d
BLAKE2b-256 1ae8ffda1e2b5aae2537962f11069d9d5855580a11a80682cf158abf56ccc06f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 77d2476e7315a328a32e749d7e9ffb9d8ecb48d79fb0e91497b44810d05d6cc6
MD5 382ddd461e4fd65497e4e16d9307e527
BLAKE2b-256 104d68dc0ccac225ea5fef2b5e4fe52dfb9983786f7f77bcacfe26260a26c4ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d6af671649adee14ecda3f5f71204e783c00bde54a5d7638d37376a5925f699
MD5 eeec3bc554d903c82e25b742b0a92974
BLAKE2b-256 71da4d4f57e7a73dd8a0ec9c736b667eed95ce33ce36545a8d105f5ebeab99fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 672a14d4b672d1fa1db3ae1d14e713359c39c35951fb9580544fbe7af8772d9e
MD5 aa02fdcd52ed6d8c5f3272f6c7b5de06
BLAKE2b-256 117b984e74b330bf8a39c251672be90b1c13fc7eddf0811ac45ab03c5650e073

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 042279461d5b3aa417d5d527e8c38e151ecd80c0d1463013e577d2f6d5dc5034
MD5 686e2b66b976855c5462bfeda01626d9
BLAKE2b-256 839624c3eee046bd7d3ffc98f8fa549c3b755bc4f240906ebcf54be08af38afc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ed36c1e62dd35f0c62bfb0136d0e01f637bed4458638bd876a740a5d858c0df2
MD5 d34ddaf29d049444cbaac2d6b5f4c062
BLAKE2b-256 d1513c66f6f0812affc67862d8e8a1d33123135540a05120f85c5160cefdf5af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d3183319d56ac9e4c0b90aacce0fdebd7e96798920ef5e7795dc0e0438a97bb7
MD5 694da9937c99c03d02c7b751199b42db
BLAKE2b-256 e98ccdac5e2e98793da2bdc72351edd45c0cda2b0cdbb48181096c1427e821bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 15e20d7d436fe49f2704db795913e0c69b9240b6e7eabfbf729df883737fa379
MD5 39c293073d05177b682646f8ddcdb57b
BLAKE2b-256 78a8c50f1a56166b4029dca759f0ae560d9e07c00a6c88544ee0495ba1eb4974

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 928331592e461135158564f4eea983763102b7733d3d29dde82bd2bdb1e5bee5
MD5 d115c54318ac25b0e25ac66c5c14d9b2
BLAKE2b-256 8c5520ee0dc9a61ab09a0491ab3398530df3c090247353ffb591bc21b1e215ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 06cc71f81501b0cc237b763a786b6bcb078726fb41066ed63b5362922cef4360
MD5 8d8c786b16a75ff4aa68ca124f8cc66c
BLAKE2b-256 972091e33622fce9b9d1a4f03c78007eb941f26a1f5c80ff8dab7112f34a9e0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dc2a3677749b465ef57651887ab3cbd181b24583746127049d148c0ccffa9745
MD5 02a3512d530e4a694087c981af83a15f
BLAKE2b-256 58845d9441f26cfd3c4c64e48fc745c1c76345270cfbe4dab5f336a070f2a932

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 99475988bd9e4f080b8c035b4e0ff9dd4862a733ec54016fd9b24f2ce941a6de
MD5 aba435b204dc91cc39ac55f0a6cb51ba
BLAKE2b-256 aadb1d82b1b83c3ee5f5042884382c5f81294a8416e54a93b6e96bbf73b93222

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7ccd6eca2f87b1127cca997a42b0451ee4e342f9eebfde1f7e6be0c52f6466c1
MD5 8301945f7f2a2401097d65cd6b2c6cba
BLAKE2b-256 a1e9704aca1734b48ab1ce9479050d504f4284831dc87562fb327e8f4268370b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 89863c8d52617bcac35b3dc845af4519f5587afd1b6c872a3c89546bd802468f
MD5 27c80af0c92327de3a0388662038731d
BLAKE2b-256 628d1cb064ca56acb65cb5d3c156f04208932c8dea4e640b99a07df50c3ce42c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1a8fa07a8d4afc869d39470295d7833a7b70a4da11d7309fe8372c42ac07c21b
MD5 eb195b8f6ea8f9bc47c6ad5aceddd72c
BLAKE2b-256 b861ae790bd538e4221024d5159c34b8aa13acb73cac300221f53cee5208bf1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9c2b4dfd49741d03ad815cf7d89aefa77a9f2ecfb0fa1f42a41c41a6d7d1d6e4
MD5 7e24b83bf0fa724213957958aca10219
BLAKE2b-256 7b02e421d3b1195f207772df7b7aab846286a894af2025b75b0027204e2a25a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 62b162b2458de5baa9d5159fa76ed3768e55c2fc93643f2fffab123a474543f9
MD5 9e593a5099d6f55cad6472d43469e6ac
BLAKE2b-256 793654900fa27348ffa38a27f255e253b1e6b3ca5bb7face64e9c0a08e9a2a11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e0b4192049d38a5527ad26a42fcc44d0ad571acc84cc88b9f31357cb57487487
MD5 112e82c808f591f6deb394826196c03c
BLAKE2b-256 6b5adb033a3031ffafd316f900e5b13d0956000d6a94ba803cc0a747045ba334

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 635d2bc63f9ac646346520e0126538cbd8b3fbd70eca74b43473cbd51a8207a0
MD5 caf5781efc26a5b11fdd44ea1b7e2a61
BLAKE2b-256 5e21d5ec19a399d1625677c17385912c7137fcbb561c9e85481852885e3175d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3c60bf7af156427606cb1234a8003ec3a2924ae780cbbee660f65edd17a7e8c4
MD5 b1901a4cdd815c3fcaad2404283c4f8d
BLAKE2b-256 7c85b60477859850766478e289a49ae4b894d77a6947a7aca2ccfb74c5d183ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 626308b1eb2a26dfd6eb1b6ce6241ccdc36ea9ae68d844d9e9e2df1710e91b97
MD5 4be11df1c1eca7f76102714c5d1f311c
BLAKE2b-256 82709ced577baf4f6caf561928c69d1efa9193f2991933e06e94a7985abaaa15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ab63c1fd9b7d821f5a2a10f4752b4db5e0f4a5517ea48a199d328fac02a58b4
MD5 4a5d1d07c45f0b4e6cbbb8459b8c99b5
BLAKE2b-256 c410dbb7d47a02ced66c91ea8ee4fe2bb33dde295b749c7dacdab470e6fc5aaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0b3f6c9a5fc33c1565beefd5be5012a5ff4d1b3bea8fbb81aeb8c61445870c00
MD5 35390921a27b960fbf5ca0821ec67075
BLAKE2b-256 b4b2c6d66aefa7aaaee72e72c680fbcb6bc53eddd8c69423ee18e263d6528cea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1ddf6f4d3cdc9a520a0cb69e9276dde4951e7be94891d6ae7cfa423b5c1795f4
MD5 fd4137bbddbea7b6264ce2ae734c83aa
BLAKE2b-256 c0967920a6416ba7904d3bda637f614294871831b02e613d6a7866210ad98b7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dab3aa8d4772dc57331c7a18ff4c52717d84e5a1739ed2e4f2ee69efdbb205cc
MD5 b6595421259cc989ef0414f5f8972fa1
BLAKE2b-256 5ce74fb0f98f46b48e9cc4428c3b865ead33caadbd700dac695743ddbf217792

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a059bd566df0be0cef241260e6c4d87876a419cdc7f562dca5f2c8bd38408301
MD5 00c34afe94c132e0fa47a9eee6468674
BLAKE2b-256 358d84916d32307f653629a934ee6fec28881043821ee52d7e980268082ebab0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78a3f5a12762a7f229c61957885f9f3be3c3f751c86c85630532b191fd1969f0
MD5 71e7f6f0ccb82069c15aad7e651a0a9d
BLAKE2b-256 0358e9ed0da83363ba47e50f22f7e8163b70ff40fbcad3d15fdb19e94519c619

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8dae21b0d3f409a65a7b24f9269a2b2636c595fab3ddf24fded9a2379a0768ad
MD5 38116516b778e0b7e78b58af3849338c
BLAKE2b-256 258f337fc9bd656fd171b2932ffa436bc3a0780f9ef9850fd8435936af61dc32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef0b8b98df0ac908743f8c3f05d55569365856130e59f65a1e052046c3d140f1
MD5 d88b120da10d3d0097a2d434a5ed88c0
BLAKE2b-256 a3a8e4093928e14460e71e1525bc3e923bdbfd735abdfe04e7e0e867fa49447c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6532ff70e4808a7802d17bef92a3efb708a0395ede8bbdd2be11ecdd98c7ee80
MD5 8e2b9712bff1263c1c6875e36ede9fe6
BLAKE2b-256 40b5653e2c622376dc9cd3ffd79237bab028a0412c7902cf2160133491768793

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 485c6c48c118b917875fdde4289c4a4706752c2a85febdd5c3996dea8ab1c264
MD5 0e3c456ae79d7b2d51a9720cb5c4082a
BLAKE2b-256 42c93209acfaa7e567c609b75229b561c91f381f5d9f6a2a1ae1fc8b15ef8db2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cb83f7e0dd0ab827f1adbca281a5aa9250fd2e746e1114db576d4905916ba98f
MD5 b53b73e4a62e8fd803703aebea0ffa34
BLAKE2b-256 1a58af6e03faa5aa9240dbbb26c487f29d2adce75e7ed72d0dfeae0d0fa452af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dd7231b1e88fe95cd002e98728ed2a34e41a0f29594569d9ae6a805bca04d76d
MD5 160e7256ca4c648cfed879c3c66c7272
BLAKE2b-256 a7b9f285d535e21d1c3756709166a350e1a9a6f05fd498fbf727e7bd8c29ec34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ed41f7ec0e61070f508f1efa43544d09ca7af4d2e21d2d48c19dfc6721a1d294
MD5 01649f99796a7ff088b2b95433f8fc3b
BLAKE2b-256 27aea2a3c8e4fffd0cb6e0ae253379b529751d97a0e83582a999b52c6bfcb27d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 41b8501108f528efe2307d68e7ea4b292ddf77147d64857fe80708c6716dc9da
MD5 00690838f367dffa35047d63c6f80921
BLAKE2b-256 9b1e303d64ce71a9cbe4bea38d1f4e3f940894e827b822aa261e1ef14008d206

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f7c06b16370582f99b5a3455c0cfe0ecbf16914603a6b56c0f5b89d0456e922a
MD5 df61f5d89ee199f1f225851a778c86f6
BLAKE2b-256 a23b80b52be214d510367a99a8cede21343124ff1d46ffa91867ff73409c1778

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8d09fa5a36b9e5e27cb4dd0ae8b7631d636ee20b8075fcba651344033dbf09e0
MD5 1bbfcf8666d390017ad7a76d0bf78956
BLAKE2b-256 c9818641eefa2bb47ad9d6bcaf90bd4e446f5afdfd0200d7c62f7ff4e10101c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2f3033fc1db5251b14c36ec7f9dc4d4d1274abe5f036fcd706b1dfa69120a9f0
MD5 3c895681b0e5bb0ae6d1f19b4166303f
BLAKE2b-256 ed97fb214deb0e95d43f78c0711c073e43ccc9c6cbffab0d73c8141089f6d7ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f993286c7a57f265938ebf2d5d8bc3b3dd809a31272d78666971a16822551cf1
MD5 17d2ad0d3413486b0ab8c49ded71725f
BLAKE2b-256 344b4a7b879bf32acb1b9395a51d9163bf1245d1cdffb57dedd7a0b4db24ddbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f5040e2dbbfa0ca59a1a28608e08dc0f8bb1003acf98c6289dcd0905482c881c
MD5 09d70864223859f9c316d170548091ed
BLAKE2b-256 532bb67ae6922bb62be4f65563d795b63b694ca43d0eaf213b8e0ec66c486482

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9a08f9be8418f236b71020b46513e4bee89b00f4d6bdb679c6b6b70fa3a92a85
MD5 dbf6b5f5400f27aac1e7b7870a1fa232
BLAKE2b-256 c5b4d8c806a62b8ae6bfbc00f003eb253abef335441e5078ebd36c374305f072

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8993386f80262312297883f52239945cd63e7cdf838886526c1a29c87b1c322e
MD5 7d1600c44ff871fdcc499af8ac05c122
BLAKE2b-256 245557b4b2ba205f78fdec88d65c0485c99c78d30650a134f73c9759296896d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c30af2a8ee9d720d47f528fe34fee6679ae54dba148ef1d32b9546d826a7867a
MD5 e2179cd7381f578d88a5d5c9029e78ab
BLAKE2b-256 27e44fd90b5d4ede3e4b83e666986ce9355003ee7d10dd262f2c3ac47e644c44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e67d96644ad96cdc40b0068b338543084e9dca004d96b7039e368f390ccd1d72
MD5 6f17f622ba88433edae7396f8b2bd6ad
BLAKE2b-256 98ac0ad20a956455f02992db1f8fcc9d641039e64682c41deabe8b853fc357c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 43600fb732b9dea4cd49b33021d1621b86fe523079fd08b24d4b145dde800e8a
MD5 fb19e94d369def705a7c47d0fb2ad473
BLAKE2b-256 0630880f7199cf0b56918cf2a01ca9cb9fd9ccb8ddc36e777ed0b84c37642e9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fd7cd8cc8f2ac80884218a61bc6c93dd844dd1d743e1c507d688b77b28cda0c8
MD5 11ee5d7a97471e5cf0f97fbf6c38408c
BLAKE2b-256 a00dab4b71a1e55001c4b5d2d4a1444d209247dcc46353ad4ab9f0edcfa3e4de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 29597879ee5df94377de9fa64fd0acdd14e7cf47ea5530bfdbad3423f0febc5d
MD5 6799141e4b694114e304daf725685f84
BLAKE2b-256 47ae8af2b192ae37c9009c7cd2d4464f5a081c2003867b1ea83b59fd257b923d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b85135a5f5af27164aaf9c657407db7fe8a655598df7ac880e7ced06c67ab65
MD5 cdcd771e94831800ba40e14b62e4e0b7
BLAKE2b-256 f5edcbbeec3ac248fa52a2fdc4f4c4002f4ef3ce84d3eb4de5e4ec862cd5fd37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6aff0f570d79658dcf64eb49b627887840436670ef8a7aae164528ab3f038d94
MD5 aee54849694a6728af50b78ba6fa5e50
BLAKE2b-256 45e58d0d69ab669305ed52c815c2ea1cf98b9ccac3f60a45f11d5d59561c7a10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f8fc4dab4a8046ddca1f635ae00a4caba17ee83f5fb23866aa4ddcfc4ae0bef5
MD5 62f20955164c0a755d14c25200c6fc64
BLAKE2b-256 81131e06df57cb9e4826a8a40144b59f26cc24d88a83548a48d161e2c6b4742a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2386d61eebcd1a379dd43ccba5c5c87ce664303a0f0f5622e69eff87cbe6cbef
MD5 bf0e07d30f9b8745f88bad09f247ee45
BLAKE2b-256 8a3c05762b6a71203259d772601168d63ea717591d96ef6ee27c1516b1be904c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 71e05a4d96c4df74b0ac506e466fdeeb1f50a95eae2d6ea1edc02106d22f473d
MD5 1b5477a9f3572e19703a8947abd13acc
BLAKE2b-256 bc2cf46a292aaf84f8f3709d0a349ecdc32af47e43d532ff2ec35fa4e184ebf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4035d0c34378443f51c72eecaac7d917e9aa3825187aaa8cb772931292478a39
MD5 7a9e70c8eb0bc49a32fd698ceca5698c
BLAKE2b-256 753083a497f2b2414c92a9e8bc4ea7152487087d9bfd1a8ddcd0ea21389fdae0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6a0a39c783ab5dbd15b8158431dbe63505fc4fdf7de7a7eea010d1331da2b81a
MD5 74b13419198a7b1dde13baf0cf31af7b
BLAKE2b-256 c0b613807ea638a89253425075ed68d6651a7aaa7bc3b129e6a86fb3ca6ffc7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 793c6a7ebecb5609afc0dae328dd08ca70fe3cedb7550aadf8731725a81069be
MD5 2941657af6a330dd69829e2f5183f80a
BLAKE2b-256 4a43ff8f25717e5f6dca1b80fed06ee6cd3c428d7f6371e6b7fa56df0e7ef3ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 309edced4e615fbc2f21ae6fa6c99101282fe3215d5b4c637f1abbbc46458f9e
MD5 87da8209b92dd4f4c1d07ea1798327f7
BLAKE2b-256 33342dfb1fb21fc496916cdb642f5bf4f31b1087919cf8bfc7693b1b22acbd18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05d06d155e93161669092a717d948066d06b3ee9ea6f80d6f16efb9cf08b3ae4
MD5 caadf2a5076b289b6a22069e0d6faf5b
BLAKE2b-256 f71b05fe976b68cc2275d91804ecebc99336473c578a2cf60feca379b9e36ba3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 24c261a07ab925d1276722b70a6944fc2ec67ad9ab7d818dc4e7ee3ac7e7fe7e
MD5 a99e824afd026d84bbc9f844dc72f7aa
BLAKE2b-256 670beb90e1929e3f2252fdd4c88db244b8817427f8dc11d696fbc1cd3c47f354

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ae1a2a71cc5a4af73c9d04204ed7a52149545548db6cdd9d174cba5ea5298121
MD5 bb18241cc10727fde2324f2c0b19d4af
BLAKE2b-256 fdbdd1c04e8c5689ce858a799f65c51df57008110f2fc3d0567b4a7b6cb5cbb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dbb74c873f7b930995686ed3b765769260f126a40b02fd8cbf2fa091690044bd
MD5 5a5e1d4f21ad03c9103eddc7b2fd357b
BLAKE2b-256 de3cd09c23b75902bdb9426335e943525abbb092714e39eaedf51f68eafb0833

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a0dda89dd98e19805d669c14c7cff8555035d80cd29af33c42d4ea4c680aef02
MD5 e434c94501b44b7f995efab5a8163bc7
BLAKE2b-256 68b00f3c649eb71f118a4f6bda0db10ffd366e7eb68d38d3146bb234bdd5d5f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4be9ab35efcf804de5a1c92d078844493e69ebf9c24a141cac09f54837b6bcfe
MD5 b4f500489f64c39c049cce43846d9201
BLAKE2b-256 1afa6bd24bc62025be8b03ec3e9616ba0cbd6d8af181f07e669ce362ae464514

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd3db9491e70680bacca36d3255dd03bf2aafb122f27b48f9b5d7a8732819f51
MD5 3dd509542bfe8ab00c311e4539270fbf
BLAKE2b-256 2814c8c3263838e449be840ba89dcef123573b0e53f88e58400758aeb433b8ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c5ee2c021584868982245edc16a367b0c2fa15ba7c9f9079fde4d5c0e0e0077e
MD5 8e5cb40ef43597dde9e0df3fcc95d756
BLAKE2b-256 925ee4104ee07954c0caec00d493f5477ee536f5425e137ba9a65bc60101d8b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 24e4671b9341bf753c0b4325a911a5388526535c36e26ffcb1b6add9ac1b9825
MD5 c1638efb0a5b41942a3f8db3f0311b48
BLAKE2b-256 0573fab9b703f508056aaa9c687c27f69f0e55c345d91d282c38acd2451db490

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c4d2d16bdc0d9bc246489365844bb4f422877081a81beb7765f073b00ac631ca
MD5 a5ba76886ce2c6951fd6281cfcaafba2
BLAKE2b-256 9d2f178f95f17181c86f7612e58ec1094af119bfabcde9f52bf571cc80643388

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fbceb39cb74c40c9c42ae44d74db9399149b5fe549dbe9a5101381630a0e2eac
MD5 7b8a42d2afed03e6f0f37978cdcf242d
BLAKE2b-256 e41132d6f6fc26f06bf2f5c365b24441d4dbf2a1585c3a8cb9c65971957a48c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d90d2f5f93d21af052c93f882dc5ebe2d80df532911658af8c6b5c5e5633f699
MD5 a6d0e9120bf8cf06807161e7057e053c
BLAKE2b-256 2dcb70b4f9b61a0610a41806b20530523f2143ca4d156d2413cc97e8bb38cb66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 838940e4c40cd5e9ec9957a170e39d9852bda1230ae25f10e876e8c2e25ddccc
MD5 46aade29532aebb14774d51c07c56149
BLAKE2b-256 5771f99c30aff8fe46592bb3734ce7bdae635f933998a6f257640ff8cea7f683

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 28ad3e139ee346651b180fef1d45eb5081840a174bd6b522a0b931f134bc064a
MD5 53892ba452baf38249bdd4c8f338953f
BLAKE2b-256 c5686fa5677251e5b48009e735bbf3544b0c748ddf889f8204b20e724e6070cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 734f4dea72b02235b7e7f9179431d468b82d8946bb7ed2ecf74494778f4a749a
MD5 1046f7b7b0cffcab123efb93661fd081
BLAKE2b-256 4abd6c1b77481aeacf444ed27d84324de29646b5df5df2e5f65b509b8af348af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8cc82997af80ff9fd1b71e36130a5c62dd5a7396f63822144f37d53f95b16b0f
MD5 5780c24cb289275143357e24796c87d5
BLAKE2b-256 e0f33305dd5cc09bc8bdc8cd3b21d61eddb4db69f4dc35c31b0d1012bc0a49f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 af5d2f2c87a45ed20a5d1c3518b3d0a36192f5ba7e2738b8dea917eb510d2de3
MD5 7cda2d49b30ae1221a0f4734b58d7a66
BLAKE2b-256 109abbb399fde7a0c0c71b1bc38ee4ff95fc9a902e36c3168806c1d19d19b27c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4b386ec2aff35aede2a1c982045037b8976e5c8c195f0acf5ca343baa9877c15
MD5 dda2b9ee7353082ee3bd1c8220d0aac2
BLAKE2b-256 13519037ac544e036d8c00f4d06607f7faecbf59939caa41ad6735424cc5a972

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bd9e381c46222c1a9a9ef37d4a909e64b9b43413e8e8711958a0556df04fff14
MD5 183115e2ac0d5ba3d3916a75f30d63d8
BLAKE2b-256 d95089b1136d6af909bf45eb808ce9e96c7034b337b1c3b2abf628ada742e9e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eefb53e4fbe27fb82cdd05800af88a0a11be00288a4b7cb2a284420f954910da
MD5 012e96270e154c7c898eba3c209fc08b
BLAKE2b-256 c5f465836ece9179f21f49a60bc729f91c404d84a3d0059ee9c560684a54b6dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a60d2fc266c0ca2cb1ad42fd7e81c3fb5e7d19bc7f080eafa38ee0a284c13c25
MD5 395e19e1e66d009ddb6de59b2a6f2c45
BLAKE2b-256 b9e6830d57a73d93870a0c940283ef7f4d3f3cdbc7e4e99433a572f5e5fc2dc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1f7e9de61ce0c252c3ed5bb9a2868c6b87dff83f72683e849adc48b130993659
MD5 9f44fac1fd86d77af79c779607de2403
BLAKE2b-256 867d64f4053d57940b2501ba442282d575dfa956717702d6dec25d1cacf89e8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b840a0e5de0cddea3ea713b243faad7ab8f70dbdb2933097ac7934a4af229433
MD5 d123bf44c54eda496eaf0354778ae04d
BLAKE2b-256 abe9dc263fb0d96634c1070b84b82767d0a19cb44a2b502ad113ed63df785fdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 876d8707b74a17c02ed15aa5ff3751bb13a03921299a1223a3ec613873ab822e
MD5 8d1d155df1e33a4aecb73e83b8302bcf
BLAKE2b-256 17b86256789a550633d64f3ffb79792034238fc8c8a7521dd7d25408c823702d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e8df4ba0051f10895a7b05f27d43f2a3d7ea40dcbb9af51b8c2f30413d8516e5
MD5 e326c807439a9fea1c5553e4c786a3ad
BLAKE2b-256 7d5704baf20a87779b56344e4e9b495b69b01a0feaff415ddb588619171cc385

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 00190535675385f8f7cf42144aef83755859a091df7f08d988ef701d3c593598
MD5 8e25f442ef091e7a3fd5ccc78567d242
BLAKE2b-256 7b36ad14a8a5e9d3208b890ce13eb75e29a94cf4295bf981f6662be88653f817

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f8e7f3de4296c8a4164afdd67818d7771e51d9c882ccefaaaff44a72ea6211e3
MD5 e6bda000bcd807d97c444996e9e4d54a
BLAKE2b-256 7d4d51acff53aeadae6b6ef661f6e84eb1323203fda341550277f6dad0255fa3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aee44f7aba31affd7d1f0fb5b581b19ba0a67d31307691f78a4c483b4ada204e
MD5 7d64bf3d7d4ff732823981f79ea62048
BLAKE2b-256 d9e0058c7259b4884a9f1b3991c713a52a76aea7873b82b7db19457db17714a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e36bc957073ff6322dcf079f4d5ecbf44cf1a68eeabbda073b014b397b906f1
MD5 fec7591beffd6f5f9cfc7743e8d058fe
BLAKE2b-256 b7379ebc3fcb6f6fbc927f9b7285a58364e223d78588b930314ecf2efae3cf6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1c5f4102e7ef75b35181175745a8d7f4d9a35778be4ab906dffef7510962e1e4
MD5 605acf6c7113ed62655c302b845c78eb
BLAKE2b-256 8deeccb285dd6cc475b2ca52804be3c32a734cd5f43501be642e193cccefcf34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 16a6c81787739257cadca797bbee412b80b4cf1529a6dba4a2554a0ef3ee01a4
MD5 5d74c9564a2224d699cfa6809de334c5
BLAKE2b-256 8d80a26c5f16595f6c9d514d2499de15e3ced301170321da041026f6220516f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3d9080c07099a2bc247c7c8a3ba3effe1483ad92daa5759e4e9271f38e9bd1fb
MD5 1bdcc5ec3812e5165d8922b3e68e8a0b
BLAKE2b-256 0ab923a16622d4d98e31a6ecf1c905a1327e2f9911a93b18c54d3ceb4f124e41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0e882ff2f30607e85c005d84a925abbd304a23adbf64f49d5a64d55ee51a3f86
MD5 49137df3e364a6eb3f948d164451f642
BLAKE2b-256 52e161508d01d28ad596674233d62f05389882ceccc529c9ec72b0573314995a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c2a881527c6dbd6f1162df16285c08b2ef4ce063764631e00417840a543a490
MD5 31ed32c55d16a842fd2968181797230d
BLAKE2b-256 b4123f403018dd4a2136379f1415524aad09665bc2b5c51a181afafe59fe20ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5213a4db73717cbc633ee2293cf9d1a5f564fbbb4e92c23289bf9b9e57543cbf
MD5 79f2bb31050da730fb4c2de202882713
BLAKE2b-256 b0af9a83862b2e8652d4ce81d556f7fa668b0bcaec9361afa14a8dbf73bb7cee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a21ffcaf88278f30b519fea6ab84f105bc9b835cc167c0e9ef7f616600d8fea3
MD5 7e4372c060b2e80ec6f0a2388f224ffa
BLAKE2b-256 da0498d11df992495875a90c21b746ce3cc214177525b8a0bbb900fa6aed1fcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6dcf75f8cf7cffaf787d97f5ff891529821f99c3837b52c382c4ca7e5663c849
MD5 653444933e450d4b5d8c6b8fb12bfc0b
BLAKE2b-256 315441f31a26ccf51240e48bb6abc31c3db62d1e6072690ae1ff48870abb12a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dc5d8533c27f3faab2753af245f6d210910e489ac889dfb18cdf561f90956283
MD5 d01a5367d08be07367d8ebd2ffef7616
BLAKE2b-256 43c69529f4351432a30148e0b5845764b825687a5e173a293735f2d89df2724d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a41e10bd67aa647b89658e51f95a33e68f1a9c3d6582f648b151ce2f70786c98
MD5 9721e3cb7b6d961f19e8be7c0847cb86
BLAKE2b-256 28a46d923d0fa46c28a32b957d3284b687c5ecd4010cf51cb6daf381e386ba8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a2550a3f00a0008ca5eb2beb67ac79084150492f889c767e257e37029be4b663
MD5 bbad0bfa76d7e5f3091cb3ea1d54dacc
BLAKE2b-256 11c85e37c8ea036b3bc99667230f8c29427b67b350c3aee3552ee2442957894e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce3088de7804b040f625f136000691327c3b530ccca94cd92528987276d0fb90
MD5 1584c115a9da37b307f3fd3f30762473
BLAKE2b-256 15447cc61f4db11c5c44f7749be0e449b34b86f235a4e9a08bf1c293487295c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6ca4414a2805bca658151bc049b6bcbedbeba240c9f5b019d477ececce2f627c
MD5 18e79b83c5e39f1b81a74b47e4ce2fcd
BLAKE2b-256 41807bff26cc8ead7789d0ba5c88c834ec823b0e6ef3769084532b1b39d1fa77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0d83b25d43aaf5578e545618fb360a9456cb28c76338c2d7e5b47df2917a6dd7
MD5 94179eeb725b8160ad0465b248ea8a80
BLAKE2b-256 ece82191af9db60d82285452e96263e2f0354706cb580224147d48582ba11d03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d7fde7b6f400b85ec74a8260c07c4a03785247cb07dd2191b102861e35fb9076
MD5 e75f0d1d649d1557d903e94eb55cb455
BLAKE2b-256 19f4ca79429012c3948e3503708a1923633d948dc3392f1cece6119460781b9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dad27cab4068b9c6c78bca6f3658abd6a07aeadd4ff3d1a3c8fad9f0f98e7c37
MD5 7aeed56b2de2c2d9b8e53bef33d6f7ed
BLAKE2b-256 5a23619cb68c231c543e6941a7123ab09f8fb898d7f8e18a9aba73a77f5923a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8a5d6b52310a399b9aac22792168bed533e0427a73a67c37e3651eaab7d23ca
MD5 0856fbda2de9ff37e0912f80bb85b284
BLAKE2b-256 3129fd689b360c34b11746f5159d62ff00e9e8abf9ffb1a19f70b4c35b74052d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e2f54928c371c1f9d13e2276294a1a02e7a7b7476f5d4573351464afb3f1003c
MD5 4f9a48fb15488f03ee9f2f4fbe7f0123
BLAKE2b-256 4e6e0d301daf3f5b305ed93503f4481ecbbb01573f21ae0b844e27b61239af1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 385ece9bff1d65a2534d1d372c40adb84ced0f010f4788c85ae057d138f02c41
MD5 47fbfc945149e670c536d42d86d0df75
BLAKE2b-256 19b5d11ebb921b8a308f6ef342e0e65c7690a26f3a1cf1641c3b93cc785742c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5ea380bdaa4318eea9e29250cd6f3bbf5f95d1def1fbba05083ccf70830a6875
MD5 66a3d9da567400cd25c12c9618b97578
BLAKE2b-256 30970b7c3cb940d72a9150a05b304fd1c98b66bfb55d2b6514c49fb981e99bf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ac7d90918f54f15d6066c586aa925d0a689063e34944e0288df5efea3ee83d3f
MD5 dd62c64ca1fae7ef3f20949ec0adf055
BLAKE2b-256 73ae8043edfca3641986c12c997149e277ac704f14cb39010758f31a931f1991

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 37c809265abe1eed5ef0400412f407cf13255de9eaaee782dbdc77711027f792
MD5 71937f2bcea6fc4030b84a7f8d4673eb
BLAKE2b-256 6dfbb1bfc4f17a50f93a10748d5d3ff7efc990bfc284924074f25a9afdb9f299

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d4eb3b0f9f01aeca77160469c410b38df0aa6738fd69500274f365ef8892e64f
MD5 3f71a7e91373bd82083e992c02641f4d
BLAKE2b-256 16c54fb54e1cf4d9fb7f0e0a1c2b464670d0cfbf530cc8356f53ec0791e3c46e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a2acaf576c50a762a331c60f42fbe64ae3ebc73c97f316229812d622060f2aed
MD5 1da94c228abb20ecd95f0e3529935837
BLAKE2b-256 5464385c455813634bc4ff7dd173e7905fb06504448fb5168a42d4889414048a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3f71580a9af53d35de6631482a4012a559a10d747671f76888e781213b3ad0d3
MD5 950eb87438314ed6ad6314c533882b0b
BLAKE2b-256 9f74c50be2b09bde3364404d05a322458470edb0d54129dee20d807030846836

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7e204198c60009972c9d8bb75d012765e8e0f89a5cbf8e2aa56221ac29a9e677
MD5 45267e2c1b62be443554f1ab358e1476
BLAKE2b-256 b2fdc2e00cd971537278d8f961c1e4fc6357cea1655f6f80699d6cb7a8b26583

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.23-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e4d77bd5fab18ba203d806d130b4375b47a48c515953947858536bf912009266
MD5 31c092ba2446804f963bba8ce37876da
BLAKE2b-256 685d5c114ac5a47e3e79743d953dbfdb0d18975b85b1c769c98a31e581ef1d3f

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