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:

  • data: classes and functions for handling 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 and pulses
  • 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.34.tar.gz (410.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.34-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (938.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.34-pp311-pypy311_pp73-musllinux_1_2_i686.whl (966.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.34-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.34-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (938.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.34-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (768.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

attoworld-2025.0.34-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (789.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.34-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (908.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.34-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (791.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

attoworld-2025.0.34-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (767.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.34-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (762.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.34-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (938.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.34-pp310-pypy310_pp73-musllinux_1_2_i686.whl (966.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.34-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.34-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (938.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.34-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (768.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

attoworld-2025.0.34-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (789.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.34-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (908.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.34-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (791.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

attoworld-2025.0.34-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (766.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.34-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (762.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.34-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (939.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.34-pp39-pypy39_pp73-musllinux_1_2_i686.whl (966.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.34-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.34-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (939.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.34-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (789.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.34-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (909.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.34-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (767.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.34-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (762.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.34-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (766.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

attoworld-2025.0.34-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (789.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

attoworld-2025.0.34-cp313-cp313t-musllinux_1_2_x86_64.whl (935.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

attoworld-2025.0.34-cp313-cp313t-musllinux_1_2_i686.whl (963.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

attoworld-2025.0.34-cp313-cp313t-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.34-cp313-cp313t-musllinux_1_2_aarch64.whl (935.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

attoworld-2025.0.34-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (788.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

attoworld-2025.0.34-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (905.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.34-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (763.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.34-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (758.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

attoworld-2025.0.34-cp313-cp313-win_amd64.whl (609.6 kB view details)

Uploaded CPython 3.13Windows x86-64

attoworld-2025.0.34-cp313-cp313-win32.whl (594.9 kB view details)

Uploaded CPython 3.13Windows x86

attoworld-2025.0.34-cp313-cp313-musllinux_1_2_x86_64.whl (936.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

attoworld-2025.0.34-cp313-cp313-musllinux_1_2_i686.whl (964.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

attoworld-2025.0.34-cp313-cp313-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.34-cp313-cp313-musllinux_1_2_aarch64.whl (936.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

attoworld-2025.0.34-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (766.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

attoworld-2025.0.34-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (788.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

attoworld-2025.0.34-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (905.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.34-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (789.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

attoworld-2025.0.34-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (765.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.34-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (760.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

attoworld-2025.0.34-cp313-cp313-macosx_11_0_arm64.whl (716.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

attoworld-2025.0.34-cp313-cp313-macosx_10_12_x86_64.whl (729.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

attoworld-2025.0.34-cp312-cp312-win_amd64.whl (610.1 kB view details)

Uploaded CPython 3.12Windows x86-64

attoworld-2025.0.34-cp312-cp312-win32.whl (595.9 kB view details)

Uploaded CPython 3.12Windows x86

attoworld-2025.0.34-cp312-cp312-musllinux_1_2_x86_64.whl (936.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

attoworld-2025.0.34-cp312-cp312-musllinux_1_2_i686.whl (965.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

attoworld-2025.0.34-cp312-cp312-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.34-cp312-cp312-musllinux_1_2_aarch64.whl (937.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

attoworld-2025.0.34-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (766.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

attoworld-2025.0.34-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (789.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

attoworld-2025.0.34-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (908.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.34-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (790.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

attoworld-2025.0.34-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (765.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.34-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (761.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

attoworld-2025.0.34-cp312-cp312-macosx_11_0_arm64.whl (717.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

attoworld-2025.0.34-cp312-cp312-macosx_10_12_x86_64.whl (729.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

attoworld-2025.0.34-cp311-cp311-win_amd64.whl (610.3 kB view details)

Uploaded CPython 3.11Windows x86-64

attoworld-2025.0.34-cp311-cp311-win32.whl (596.6 kB view details)

Uploaded CPython 3.11Windows x86

attoworld-2025.0.34-cp311-cp311-musllinux_1_2_x86_64.whl (937.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

attoworld-2025.0.34-cp311-cp311-musllinux_1_2_i686.whl (966.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

attoworld-2025.0.34-cp311-cp311-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.34-cp311-cp311-musllinux_1_2_aarch64.whl (938.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

attoworld-2025.0.34-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (767.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

attoworld-2025.0.34-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (788.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

attoworld-2025.0.34-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (907.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.34-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (791.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

attoworld-2025.0.34-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (766.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.34-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (761.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

attoworld-2025.0.34-cp311-cp311-macosx_11_0_arm64.whl (720.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

attoworld-2025.0.34-cp311-cp311-macosx_10_12_x86_64.whl (732.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

attoworld-2025.0.34-cp310-cp310-win_amd64.whl (609.8 kB view details)

Uploaded CPython 3.10Windows x86-64

attoworld-2025.0.34-cp310-cp310-win32.whl (596.4 kB view details)

Uploaded CPython 3.10Windows x86

attoworld-2025.0.34-cp310-cp310-musllinux_1_2_x86_64.whl (937.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

attoworld-2025.0.34-cp310-cp310-musllinux_1_2_i686.whl (966.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

attoworld-2025.0.34-cp310-cp310-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.34-cp310-cp310-musllinux_1_2_aarch64.whl (937.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

attoworld-2025.0.34-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (766.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

attoworld-2025.0.34-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (788.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

attoworld-2025.0.34-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (907.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.34-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (790.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

attoworld-2025.0.34-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (765.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.34-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (761.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

attoworld-2025.0.34-cp39-cp39-win_amd64.whl (610.6 kB view details)

Uploaded CPython 3.9Windows x86-64

attoworld-2025.0.34-cp39-cp39-win32.whl (596.6 kB view details)

Uploaded CPython 3.9Windows x86

attoworld-2025.0.34-cp39-cp39-musllinux_1_2_x86_64.whl (938.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

attoworld-2025.0.34-cp39-cp39-musllinux_1_2_i686.whl (966.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

attoworld-2025.0.34-cp39-cp39-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.34-cp39-cp39-musllinux_1_2_aarch64.whl (938.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

attoworld-2025.0.34-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (767.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

attoworld-2025.0.34-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (789.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

attoworld-2025.0.34-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (910.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.34-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (791.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

attoworld-2025.0.34-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (766.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.34-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (761.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

attoworld-2025.0.34-cp38-cp38-musllinux_1_2_x86_64.whl (938.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

attoworld-2025.0.34-cp38-cp38-musllinux_1_2_i686.whl (966.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

attoworld-2025.0.34-cp38-cp38-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.34-cp38-cp38-musllinux_1_2_aarch64.whl (938.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

attoworld-2025.0.34-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (767.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

attoworld-2025.0.34-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (789.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

attoworld-2025.0.34-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (910.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.34-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (791.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

attoworld-2025.0.34-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (766.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.34-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (761.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for attoworld-2025.0.34.tar.gz
Algorithm Hash digest
SHA256 36420bb483b4a2c1442304f9cdd0b168e72bbfd34e12940f2eaefc4a3325e58c
MD5 39b8ce0dce3bfaf0f739185f64807e92
BLAKE2b-256 ff13bf710ffdf8e219055af038171901bd131ea4995fd14608ec2c9a3e4fa183

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e393034cb75bd79dbe21150f165602c666bf435595ca1f51498737beff74bd6e
MD5 cda9d7165f0828ae8279f67e3e11a2f5
BLAKE2b-256 4798c9f74e09f14de46101e5dbce9adbce71dfee0f6c91b58e24cde4493ceec3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d6794010b91cef9692badc4444bfe00f4066c157ef9a55cac3d6acedcbfaae96
MD5 290dad535d07742423ad294d1cb677cb
BLAKE2b-256 07e04f47c6f8b76c655842221a12070c032bd1a86c46111099049d7e8cbacc17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 df6387676ec45edd317c71973367ac549650852e94de1ce952461c41f08bdf5a
MD5 8b47d9e3c939c1a47dd737caf2ba37fc
BLAKE2b-256 64b66a9c4dd7fa4485d923e01e0aab257f8e16afe218211d942f820fbe6dff0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 54bab0bb6fb558a1ccaa486718c321b55cb6fdce7b5130d2cd785703a6fd5f37
MD5 e21f04b7ca6a00928c534b4a3577c40d
BLAKE2b-256 cc175bb767e2c60a805b4ef125e7e191c49ede6f43288dfd7b889d73db6bfdee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9278f1bd23a4355bce1a3090d5c6127f08fb7442e8ebca2b4733745ad81fb94
MD5 5901ba1d168d1b65c0e0fe2a211ab6e0
BLAKE2b-256 9f18fa6baa609b052a1cf93f99e7252e411d326fdf72e52b5e6287cecd6be426

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 078ebc4761990a744855f3b8bd5bc3c914613134297d989f78cf4df4bc18fb53
MD5 52c4acf8f766baf88ebc9598a02b24b1
BLAKE2b-256 ba72d82f891e75ca09662016f66642b3d1fffd32393d6dbab30ed2b88201bffa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ebd4bc788a89126f59aa0e7915a05b33507f74363ed01664643981f3228ab580
MD5 d837c961e02dbe212c5db99c04c9c730
BLAKE2b-256 f43f267a7429fd9d89635c8409758cd079395b1d581ef40bdfa141d21c0cfd62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 36242e1482995caf67b60fe2f59d6d0b6f8753d60a4dd65c42bf0ba4ddfb2d86
MD5 587ac9349e322c007c59e35df4c7e33a
BLAKE2b-256 1308a6f7b6e192ff9bc8c2ee49acd7d7eb9335df1681e37c39b30b056b610b97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 249c8554c7d7ff3afbb84d900b0668e3884ee2b83109f4a204f84de59c2bbba5
MD5 7ac431202edbfb31121b0a896695bf0e
BLAKE2b-256 9892e34124faf71c25282afcbdb977b21694a4b8a755f83d2fd32635ce989c1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16ccaab7f3528e281ff3b05186c01272b8591b67f1e107658934ee88fa8b22fc
MD5 775c6aa61c8265c8d2da3769f6ae48b3
BLAKE2b-256 8efcdbddbe25877320f11acd7bdacdb7999c20cdd1e2ee2a96030656174e7038

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 afd49087b5983d6554b717a67a30b15fea4c4b7c3d22f0414132a1cfb245f9e4
MD5 219479c370d5264533b9973dfe31b8f0
BLAKE2b-256 73c408267adba37a838dd17708dc2e93e42ad93124959a2bca6e801084ac23a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 36e14ec2e2671d2016cbd0deb27adab1623b126951f4d0e66fdd1bbbd4ebfc69
MD5 491199d00efcb84a5db8f57572582afb
BLAKE2b-256 d1c68c05b8e1f3eb98562fb050d963bf0701424e14b957ce224b93df92b8c2b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fb1e4311f0875aa1ebd5f1659cd82dc3ba386f9f1d0a71b92491e87ac843836e
MD5 2e3a4a6e084f64e7311cf63afdac4d64
BLAKE2b-256 725920b3c2d949a9b498794c0f5071acba2663ac69b0a936f2c4b66b22adcfc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 beafd38941696973db75eaebd1fd61e94b2ebe288b523cef0ad72c55a5ff69ed
MD5 cbf66c9795b306fd6eead7774c97b655
BLAKE2b-256 558191cc6dcc44935b30d8e0c9e16d72be1d6bbc463ef014d7835f4ea30747c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0cc4b5f23e522fbd191b96d7e45170c8ad35816d766461527c925008bde7e58
MD5 6d21a107e2034e6e7177a11598fb07e8
BLAKE2b-256 22d5b04071b6cb18685ef21896433ba683267ef27ef4688d679a04d16d0a8222

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7f9ef0b41c1d632a0bdb19c4712eb743854f9b4aac022589bdf549427c867c08
MD5 5da11dc16fca1ee513d14d64c85f6670
BLAKE2b-256 036b57adaa49b5569c8edd611641bceafceeae66be726f0b9d261b01f82e64ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dd10f7c34b98f4c2fa6ac8a4fbe2ff435edf0fb8dab4711ac9ac0508842da91e
MD5 35c91e614d6452b70ebdb11c3c853ac7
BLAKE2b-256 35df1992833270eee6ab7f4384ad170ac7288ee935b95396409b68b63872b94e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c151f9f07388ffedd8b4b53088845d36e17de5e2755a734ebd282ddd1aeaa2c1
MD5 45cbf3267288196bedbafad71422f0fd
BLAKE2b-256 a496642b99258bcdddb61f10e2429820c2e1b125a40f8db626a36269933f80d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3a002dc3efee6dbc13235133a9b392578a01dc6ccddd69d409c5670cdc4531e8
MD5 e50c0b6e7b853b101378b6edc4643809
BLAKE2b-256 a53359c099d2213173fec1ff9c35457c7b95b228c53227bb67f0cf99a572238d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 127214ccd03f3c86c446623b66e3b1941ec7636ca5e7a6d41ccadac564872b40
MD5 4a466166f357a4fd3127fb3daeee9ee6
BLAKE2b-256 8de02fa21c60111ecabe52f0f3018ad3a5e2caf5041fd27bbf3df185b39d94be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e663c1177969aaba4097fa97e636b9432f604546d285fcb988f1d410ebeb94fb
MD5 86bc18328a333819b29b6e4a7d46554e
BLAKE2b-256 c7e921c96157e7b55d40c925bbc51b96ebd9a91397c642844060def07834575f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 084e0cb6baeeff733fb65bca23ba39b6a9c927a7c5fdf75c9122f36683e0b282
MD5 c7b29d6a74b75e7bdb25e90d2c8707fe
BLAKE2b-256 96f5e24fb31e6a16b49a8d9b46c461e890bcab05b24cdfc79884ab7bac86a2d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 573cca33589276656fcbcffbe29e5a63a0c7a53617174b2a9cb0fb0feb752acf
MD5 075502bdcee2fbfd28374a27ba2b0b59
BLAKE2b-256 0661e8b2f2188c0eaf214b821a5be7f4ffebe81ff757656ff14b2fe3eefdfc83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 53ce3bbdbc2c6dd231341d832845b93faadd4d229723c07c034ccd398b107bb5
MD5 1fa1f34e46f7dfd55c25287a73f59bb2
BLAKE2b-256 cacec691ad73dd732573acfee1bdece198019d22e01b11142b19955e3001227e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 270f8f8a8e7c204a2c2fa01c527e5ff9ba6e378232d4f9766d6753b0b58d8872
MD5 59f9e78eab5888ea35f4c95fe92846a9
BLAKE2b-256 43d59cfc0ed2fa9e43a5c4d1d7e40602fef032e2cefe0d6fac361131cb2f5422

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d8a75f0775ec69eb3e5a21f9df7d0107ef485e2b2da0d54ab8c1eb1539489869
MD5 ba9026d93cc8adae92326bcd6df50195
BLAKE2b-256 f37437c439b2ca274967b3829b994cfbd00769879fef304ce03a25908769e9c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2c0631439b969a3517ae26cae5653540f14f0b9a01215a0d3c6849552f28105c
MD5 bffdd3966f2b65abaa0e23b60ca2b8ef
BLAKE2b-256 194605b5e6833e296c5c95ab04176fc1e1dce4d7ed193ed808625df1f6b3ca20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d9a15347223eb966b69dbef32fba81e4176f8c51f829ef177306bac0f23746f7
MD5 4fcbe33d23e19b2db45c661bed0ae6d2
BLAKE2b-256 75e846871a94a40e13a17052d77c89693c7cb9ec58759cda3dc837afdfe91ea8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1600555dd58060d902ebac9f3c75db092fb8327a56d891b4c80a07716c836523
MD5 f04e5711e763f5fe10acac6951cfdc1b
BLAKE2b-256 8fc7f206e4fa8ce64143a9ca8d594efb94bf0abd5af0484645ffc623c78ba1ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1894afe75dc7e05d2a6971eeb30548f6e98acd568a636fa62af63bdf95d5d513
MD5 0d064fa9689fcd3818e585de5290f521
BLAKE2b-256 e9f41b8fcca9a2106c7843f4cef4d90dc6927944a28b00bc3f0c2aa79c15ab83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6c53a9af130c8dd0113002cd6d2812981e491f4b0532f7989eedec27b2be196b
MD5 254055bf64c8b57b719114e79bd66000
BLAKE2b-256 92c80ee6ac066626e74ba02dac3a2f08e735c04a15a4ece8e2a76736c62936f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4a683a1c0d4d443e318b9bf8100d759422ff45c39b6bdb734b8920a329b8e7ed
MD5 b85bc45b2eabac41a34e27c05d2bf8fa
BLAKE2b-256 c9b915200a66295f983c66e9102174ef9f017fd7835d10b05892ee7c37ced2db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3271f6f3cb729f2548cf55811380fa391c2b5337fa01248e03d987da9d2fff79
MD5 c8302061d75cb6f75e3be01145d747b3
BLAKE2b-256 f1e6c0ed0380c3c533e788a582e6d413211b887ef35a8fa264f935de5deda9d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 54d81033047291a7395ef87cc175b17fb818dac1b40d37d277f673139cf429b3
MD5 251c4c22b7c8299ef4b1ec39c4fb2e63
BLAKE2b-256 5be9665d7be8505f29cbcb523731684094ab2fb1d3f97ec2caa4fca901c1a311

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 37bc13af87f2a2c9dea12a0b4df209334af7f7ee3d732e4effcdd23f6d84fc6c
MD5 5a5d8fbc15990d17f2fe261251daeb8b
BLAKE2b-256 5c4322f2fd4e8f52e1fa373c5ec246b028877f4c929aacc088d024472191650d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8014bd5779a27fefc8de201fdb6b09df864a3c0bff18a5d953fed776dccad769
MD5 48d5259e01f063032101ff899e0627e6
BLAKE2b-256 7dc31ede8a081d88fb0be5e11309c3785dca94ef09ad0a4ac1a1f1fe361bdd7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c180381b43112be35f8efddf196ba9a67dbdd46ef84fd3764b3b57d997f155cf
MD5 f99ffab8130f982f78b02fab98e1dbfb
BLAKE2b-256 55e29fc06bea866bfde24056a1287799a0ba364df2bb15cc794b54500092c733

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0406bcf8de54630596c9da120223b2db7d4c83088f4eacacd47cf815ada6774e
MD5 2a3db2ee11c52d91bcf27019b9fb6dbf
BLAKE2b-256 00a57c6e8de97ab0b80dd2b6b9662d197377f95fbc4562268afdee4d94c64fe2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b230af9dca9649cb6bc445f2c11d555e73f197344e3fff21575bb7458bf9e194
MD5 15e2802a7f10bc4aace0ecac44a59b4a
BLAKE2b-256 093111a651c609b4626dc115deb38bb2817f9f7874f27ae68ecc63b857863131

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2b9c29bec1d8167f29c34872c658a2b6681f960e10be89bc1ebfb243f078178e
MD5 933dff8dc1e5a2aa36775b885c522184
BLAKE2b-256 5590c14c5365d0baab5212477b635a16d17cac7dd8ed4cb587b5c3a2fa85b99f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab24025f11946a9c8165b271105cd99e4907c017257f1cae00454f086520d9bc
MD5 f4d0e73e33da17116872d8e2a9c6fc3b
BLAKE2b-256 596c4a2fcf579d7942615ae1771d72df9f352f09af811fe5da2948deafcffa91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fd2646934e47c17c51ec563482ffe34fde963a50b41831f077013192bf220ef2
MD5 4da1537ba1e6abd49ef61cd33422573c
BLAKE2b-256 fe1f394fca00cbd7e03cc6c4b41ec176cbd46186d80501a6db78a600e8a372ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 258c4c634db5c53d2ed04c6518a3ef7242291c6f96ce74880e6a334ccccfd2ee
MD5 a0a5bb34d6216fe10d1714375f4abbb2
BLAKE2b-256 318959bb725601f7583936ad878b32d4c17fc5e310b99befde3fa6c82b9748c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0e3a203d7c1aa4fca3f649685d4d0c22529dfbe241c06501cd096901ccab9a34
MD5 359692532797f11a125a5813def6824e
BLAKE2b-256 725efc25399bbabc82f83f44e0de91af8d8ce6c5e13a256be9090515ca69c29d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 755642e1d6b7e60bb660e90971ba3cd2cd9741d23ab9b86fc31192e1179ce942
MD5 f69b41b9abf37984ddad09b40dbdb53f
BLAKE2b-256 42ca0cb897f2d7bfe1f6082439a3234fb8f2e7ab117c6767abf59b0b5015f9be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f73a7a5b3ce9d61e895d85b52379cfc992010226a2b34f6635da869f3f25ea2f
MD5 23cbf9541290660592143587c1baa985
BLAKE2b-256 f6ac8389ef7bea7679a5a28623ccf892b3ff4e0f835d279682f623d8cd710807

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a2896e0fe27dcb3b193b4ad8819460e9ed229b539edbd52197a5a02b9a5373bc
MD5 60e92d4efe35f1572fb6eaa5d36469bb
BLAKE2b-256 8257c6288d61464e57a327e79d383a478589304a1d7c55af6297545ccd871441

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9c55a3cc7f47db8ecbfb0c60b38a571254edfa0e68bf031d8d73a85df39572dc
MD5 e23c264e6a78936b7dce29d599903253
BLAKE2b-256 16cf6eb4c729c32303d4f18de476d458d0b073b4cb24c9e39df4d6f6ddfacf16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 615a04f6b7dfb0ecc09d5644ea186f364ceaa132d5ed539e051485876fb3eb41
MD5 057723197da8bb1f94b5dd3e6926c1a3
BLAKE2b-256 d9bee74fd5a6215dda2b034f5c6d5a7cedf7db9f0f6eb85bc396906c1269ffa9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 82c3847f354afb7a76793118147e771d1134dcca5e31bb15daf42246cbb81915
MD5 a0cdfe75315d185bbdd4d656d4dc1dda
BLAKE2b-256 d05e098490fd726805322ee6fdde6a6a9b115d5fa74c24b20b4d0a09c53cb685

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7c5847562eb72c34f56b062c42b37f6bf3754d35041d846cf9ae5405041c50a
MD5 394f7259b395fcc6fd912062e5687186
BLAKE2b-256 dac3a1ad3b13e2927c563e125df935b14a1fbfe086c4eec2acec83cff489006b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4e5fcd1077beb30a294d0764e6cfe779e0ed5e0391bebb964dbcad02807b0460
MD5 8b7e8a5f9abe7d7e35e56038331b9362
BLAKE2b-256 1b75b07cd8d5bf568f377bd624ef3da444ff32ec21b50ab20c632c03353f826b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 846c8181243db50a39ba1d59fbe45cd93bbbe005dae69edbd7d250c48b855f20
MD5 de52ca31bc5b49affc8daf61764e8fd7
BLAKE2b-256 7fbb2a590262efe73b5ab8be54f34540fbae13ee52d3b904311bbaca79d5a3d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 45947e33235487d7b7515cc110ba0537fcb841c60aac56f87a61b75b49e1388e
MD5 e7b21fa5acc3c0a8282ea440ec94462d
BLAKE2b-256 4da20b731c640975101ad0bf87198255b600901a2c9255ccbba9d9c62ea4ae8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be29197d809fbf6de19957f4fec518bf7ca80dcadb73e2fe092b3ae0edb8082e
MD5 bcdf82fe4487adf234f0e830bdc63aa6
BLAKE2b-256 f320ce72a48311af7aef471f8c734381cf14980aecc4e49e783f0c4ac26fd90d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2ff52b746e8a70b4fb7e3e15f2a7179e222015d57465db61aa1126ed725f245f
MD5 61cb0b09602796b04cdbf5af9acecfbe
BLAKE2b-256 c3bc0b9d829ac841bbc5e93757ad3dbcdfafbadde9b6173ae629c598f1d817fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3f135e2c48c19e831150e77ff49c605d798dd7789ce7d2783f8809b94256d223
MD5 ea3ba10fa485fc11db91c8e9ca110e1a
BLAKE2b-256 eab2354230a0ecd42a277e915d389a761a4a2d86ffa5d7fb14066d86b2cf8bc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6a430804ec244357c60ef3745d96fe3b98a6e018d54a95c386f3369f3d407b6b
MD5 51998b8949315b8b712a803494340d39
BLAKE2b-256 789c52799c84113177059633560ed39655815af291fd8d78f4084be0eaeff3da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8eb0cf0a21782d528e6c88da66d3aa1237f87ac166bb9b1fbf6ff13cce5d5f9
MD5 ef805ec1bc1446c145446c8039abe285
BLAKE2b-256 7ed6c437090a7beb63fc404d611bb9fc2e3be5c83ba7506ededfc629e39e53be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 06368dfb38c39005e7cb4cc6dc552248c0145dc6076f815d53add15daf1ba304
MD5 d45eb1e6adf2ad1be3184286762fe72c
BLAKE2b-256 aa7daeaf744bac325d76d0ff92d84233219ec518de91d7e4c946e9f4c964cef5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a89d19097b68c2edc287dfa6094fe6f0ec9a83a4688ccac0299a26127ec36cb7
MD5 56eba30dc217b90d5da2169749198091
BLAKE2b-256 34044817d2aa0b4d15be06c3e3086848537f2d194f3ec17939f7bfa757771cdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 282bd19664179ff249c9f45e410dec79f276307197266a90867a8f8e9547ebae
MD5 68ce7d678c2626591ec5b270ad25bf92
BLAKE2b-256 74a3e12435ebb298b145ec8510cd7913b4ba3be92ce880cdd67d5f5690fd9702

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 326eb6016350a20ce06000ee31cc500c5ea3e880936ceef6ad348485d527eca5
MD5 ece92160a29a16a5ebca241a6b19fe73
BLAKE2b-256 55127e35195f6e2af0d7dad0cc719ac73bef073426403c3ec4b0b1c01d1773d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a86feb98a5b9d175b64878260b8e7b1750dbf5c71d66b003f2e7f4c1ee4cd02c
MD5 8192684be1fc8299c917a89203a2a3f6
BLAKE2b-256 9d4ef1158056caa4ad6cb78c3d919ed2a1800af1947826f7c913b6a749ddf11c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ebf2104768fe0e0d8bce1c1dd62d47d404c703d8c8c290f49ebe6414d3b7417
MD5 3ccd67bb870dad6237caab460d5a381b
BLAKE2b-256 d457d9c65ab792bca1b0db2482dbcf4e17bbc4ac2f55b117ab96de8623ca3dbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3603f14f08520c00768901411791637ff7da29330cb6ea266237550a910087d9
MD5 b801207919ae3d515eedde25b2507df9
BLAKE2b-256 dee48b3de03e4d8fb096318f2ef4782c176256c91b25d661e193985f75ec9236

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ee9ffe58cd4756f42d2038e901882a8bc51cf3e26627b9fbb42ef1ab548ea73d
MD5 b958291746877cadfff4f3f8a206515e
BLAKE2b-256 6eaae88a1d4f6e26b7dd4ee40938b3dfca267ff9e060451f670826145de96e69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f2a4ae5bd9c996164d57e2d67882942b9cf1a191a33ec251c13893858fae2eb1
MD5 1a7e969fbc847c3d6f944e0245c55818
BLAKE2b-256 c50c3763b3ceeb0032507a33ee7f5951f55cdd6502034564613efbba9e06f678

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1e48d1e97cd3c1124d55e224a058366b49f38991931c6b1bd263c4edeaa138ed
MD5 4cd134bbe43db2e4ae8632d57d104311
BLAKE2b-256 5458f62f7c98ab73c94d4fc6bb402acbb049880fbc4294ea0866de5e69caf6c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6c282868449b5f281ef398d1bd4fe020665aaf2c8d1cb0e330551acd12ee4a47
MD5 e68fa16415272c350b9f3735a3f5dc39
BLAKE2b-256 4ea0ccfdba604c426ba3864f5757e36ad138ab3cdb2c8f9bc1cc80ae5eb40ca4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3478a7bb26ad9ad6d8ba600cad5b7bd42fab17513815fc35c1c6696de153c953
MD5 37f46d7533431bde335612009eccb4ac
BLAKE2b-256 690c7253c0c9d3e4784ab29491d72f5851986bedbbdbae218916cc7229ea1af1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fbdd938e4676977b28515874d02e0b67b51385b99390e8c793fd6a9c105359d0
MD5 bc883c74451a6c061a89425af9ee907a
BLAKE2b-256 c320e84ae87f595dc6b0a2b10b105fe610d3aa233717777a66d03b970d2d5de4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2e4a859273f4b72c4785cfbf2716a62a2e4b44c407602904419ebb5529f3891
MD5 25054ebfdbd0e367ea02d00f31b1c5e7
BLAKE2b-256 209a41d43210975bc40f5e6ff812da2f916654e3d3a365939c14b529771cacf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7c434617e83e0c058ec5e63493fdcc43d257a6cefe8488e1d297fa75b535fbfc
MD5 2d801756781714a69fea20e1f43db031
BLAKE2b-256 25f6987186ed8e1ae9fd82dd4b973c214798ba18141781f3dfa3a29b873a32b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3fafd705a77185cabeb175c5cbb097f45a78123215e16c1363f2693c7b8614b2
MD5 ea443b3c2301148549caa3e577f5f8f3
BLAKE2b-256 1667818463076e720010143d0be30f28ffe89c5302fb2e94c065fed888a09679

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 133cdfec8b2c1c3874f3ab6fd51540f5965a7a91ac90b90532e5b7934df78895
MD5 29607163f34afba22d7ffd2d649cf5e1
BLAKE2b-256 103754cf2fb00eab645dd77e6a8ef5c9313713d4e0684de516fc3f2a15545035

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d0b1acf6c518844b68f3b675e99f5defef577a4f915dc0a3a86fa0ab56e75e5e
MD5 c0a10caa84c26b0a57eca2d1b7a6eff4
BLAKE2b-256 77003dc1f49b6b88a55370302f75bd69dcafc2079402b84f864160b7fe9a9d5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8ea2d38d703144eb3a65a165d328e7ac5d6d21322e6f34e567f7cd946fe001b
MD5 6077fbcaba326ab9ea1158d41fb269f0
BLAKE2b-256 84e5ad125e2c5d16faab64fe5c388fffa4c9707b0a85ac8bc8e536a2a97b1f68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 225e4ea697b216f610e135bac9510491655de90cfb7dda594fcf5d8fe924388e
MD5 d2586e8fe1e96ef1a41b28c72c0f467c
BLAKE2b-256 53520ad9ea261ff6a55383c73d004aca62bea25c027d3dd9e71188b8371f0153

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5daf5c364e0f6af2513dcba4cc30b917267cfb0550b41ad16b6846050998d945
MD5 b55bcc2f21b2889fa7918a4024a6aee1
BLAKE2b-256 e52d5cf4992b1dcdb3a085d3bbcf4080ca1ccf8358eed76d2e6b3a521adc0d18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 22c399682b04d1ba832026a23092e69ceb288a59cbef87aff723864a613563b8
MD5 e535540db7bc8313f71a22b863fda89a
BLAKE2b-256 627389abec8522ebf21ca202e151dc6b1b2671be77ce717cbba255ad4159db3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a0001566f4c1afb68628a08b9254cfd7d3baf710abc035f5df1e5a33037cd2fa
MD5 da2471843b3de586048f830e21f19e42
BLAKE2b-256 b66e09c5da00c25c520386fa5a78669d6b733f439047fdf164224bef7494059f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4d3a5700600528b1d661427ef80b3b72e6fe43f96ad2374855aa32357d7bc233
MD5 7dde4a241d51661252d92759d9e28613
BLAKE2b-256 0b0cb189e70fa2275eacf6cf536fd8d391db39abe9b79b812553d88c56a1e524

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 303bd07c65c83e68422b3b4d71200a8ea816215a0c3868d3ce9320d82262a5bf
MD5 505e378171ca74c3d781cdba969eabd4
BLAKE2b-256 64ce972c80df8dcb0cc64239e1e17e423224e222ea9316d1533d1c7f6426040a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5f4848473905a5ca0f78a82c15cd5220d00ec26ddf882fd7046404ae5aee2824
MD5 9ce4be2f80edb51c43fd3341cba1b61e
BLAKE2b-256 2bde860523a834e91efe788cf3e31b9067f0e6c4d28ecc121729930806313825

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d4670bddb797b488c0d7815799c25bdccb188283b06f675b735539cfae6dd907
MD5 467e7c46bf732f99973603c60028edaf
BLAKE2b-256 f811ec38df5aafa82d46a6071551553f749e57c16b99d4c5822196fe745efbba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4046ff3ca0fb80317fc47a5fb0c1b79c302e07da5c962cc49645c1d2bbf124c9
MD5 7bb0846064b40d5025951c8c830c3eec
BLAKE2b-256 b771f9457eb62f71475f6e1baa7e0cdc6806da497271764f93bfb3f0a487df1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fa1118a7fa4951edf60c416fbd2d583f6f2d3bbbab25636ad048c41372157248
MD5 2e6091a92b696582b80674732ede10e0
BLAKE2b-256 27fe5ab26b1dabcc5ffd12ddd73979f9254b77888a140992a80ec471b9eb6a4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ef3166d2b52a3dde1c76800fbf5ebc47bc27f297c8a708b521803067f5e5c4ab
MD5 9e40fa6792c99210593087f05348d782
BLAKE2b-256 1038fb224509cf02782ddfcdc1a6829bbadc101e0492f6d2649b228010a14fa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 968cd18071a8e882a50b547621a68011f8dc156ede38bea742aef2708a791497
MD5 3a0297a2879371cf7d6a15a414cff182
BLAKE2b-256 2607d05aef24e28c6642a5cb43bb2047f11efce39f8b024ea4c478cdc1ab5326

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ba37ed5d0684b5a722aca8575b8ceac80729ef52ea2c2923f93904981a6d8e5b
MD5 7039cd6f020fa9eda848eb5236d1bee7
BLAKE2b-256 56bbcef5d9d050dc96498525f5d043d4075b640cdf48802a3f908431d7e647db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f2fcbc3ddcb36ffb11f2acadf0faf5b12990fca1328d79017aef5642500e5cd6
MD5 67f5f9d83ff51de0e49bcfc73f0ae402
BLAKE2b-256 a95d4c77f9bdbea1622ef982ea9218ece51a94848135f6e0a4b0d37bc36ea9db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b32cd19c57752fb78c339e70109d53ad6f008878c269c67c8ed9bd91b69a0bdd
MD5 7121070263d69801b49f4dc107602db0
BLAKE2b-256 c4707a20f793d54568bd7929726dc0a54c795a3a5b713517d8320e5e400e04df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cd8e3205207ce3177a7ec9d41cdfd6f9e1bb7126013af6fcf95c4e50041684c8
MD5 71af5d2cd94a7e0a077bff077dd68bae
BLAKE2b-256 61c359f95b714e8d7ef3c9754e48fa6175c462586704be5adadec851d10626b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b80a7ade4919669faa61870501af17cb1de263cd42f114b03b9bd7a39dd897fd
MD5 f4c3d4546a263818bddb2ae12c122581
BLAKE2b-256 0cfcb80e4e93362194d2dbb4f2174a29cf0088cd59182d1f48ff9f83c4690075

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f078b7fe001622a03060ad9ecd0d8b38361e237388223a11959d3bbaef38679d
MD5 a7f41a3ec49ae20174edf99d076eb6c9
BLAKE2b-256 d8aae4a5916a6c8391f636469a5af0bd9f9d229e78165eef735630ea793476ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b5d5c639f51c5268f997a0620b42dc8737dc772d3c056638c83fcb17857aef6d
MD5 0d04adcd5d39e5fab9756eec194ba737
BLAKE2b-256 448e8a3c2011c68790741b8eb6a56b13f06da45c5c06139a68ea0bc83251afdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fd71cd370723acbdb449217c0202049dc3b8c5e1eb873a2544b892c4d7ca5481
MD5 af509a349739f9ffe26a13605d5f08c3
BLAKE2b-256 6eeb0db1dfbd4af0cea819c9c2df8ce17172860aea34b758489334e6d3bf9f85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5db8b2d62da291c037f1f57abb3b8dbdaa94e8ff70e3f406de85eadcc0fb121f
MD5 b02742192284eace22b606d3a5e1e45d
BLAKE2b-256 cdfac18f20e0dd4242d6681563dde4d487e9d0de2abfca7eef73bbc08984421f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e29142d2121367800bf7228b09a9672eca3596def6e3b3e9bb2d8ec39cdb9776
MD5 8d3b064db0f813e8866ad7be8b810b69
BLAKE2b-256 0586e8b7643964d82aa8e3ae3f528b1e420d20850d382fb9e110c5351d8834db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e952861fca352706a01f125e8c8da9588b3432a0aa42e23f1aa7fb63d1daf91f
MD5 b9f82842bcfbc0df9e13e7696607c170
BLAKE2b-256 6d76bf2612eac3549ecdf39e6c5636b2026e7970754776181a1001fccf734d9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cb17fbf6bef438ba83e1d18bafced16941f75f7da5aa392126fa04fff29f8504
MD5 b4b65c147f6167bbbe0b68f24d7ac732
BLAKE2b-256 59a1616dd275a7df5cae221d0093bd8030aa77073c6ebd107ac1ef48f3827e4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 57ef8cb0c0205d757fe912ba9a5ee2988635a429e3edffbe5ceb5ae9efcc2258
MD5 99298e1d91442dcb9d9d0e29068bd2d9
BLAKE2b-256 31d40cfea61b12025045ef39a57d67ba82472877f0a56e2a82d1e9e3fe9fd344

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 557cfa29267231570728735a9c6eaa8561dabd3ae0507a61c36a3c7308b1afa7
MD5 3fdfa5fbd483e106997596e8088a2753
BLAKE2b-256 6893a687332f3cb0d7ed59a2d1b39e3516d46c5cb15312f3276ac44d7822690f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fbceec8369c0e091e7cf9111f422cde8573aed63203ad743984af3eb121df320
MD5 da00027105dd2b8d7d4c505126a56710
BLAKE2b-256 4e8efd8383cc2ea2f329a255f4e1dd2aa325a6b0661100888d7ba1ea77b54036

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6d627c64d59b72d3a17cbac7aaf74db4ca873fee4394bd4374a8ea4d49c719bb
MD5 6174f2242dd4bab4245d651b83668715
BLAKE2b-256 a60ce17efcc38f2b3ed8cf36644c52dc913e77cdd5a5abc4e6f8ad2a8fca6feb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5bfbc231754c43a51cea715f113dc1efae48ad485e7b2ae9a5e8a0ddf67158ed
MD5 d52147757b51aa597b1687d1bc6453a5
BLAKE2b-256 3a263006f6db7cd9209b91f6eb83c85e30a6ec9b3aefe215d85e281bc1cb46d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 341bedf03be557ed13bb9608699e08a4297d7485e448bb1d3d0651e9a609d68b
MD5 a398a41707ada2894e155e2c43d5b05a
BLAKE2b-256 53e5f3f202561e7f11e442e3c28b4a2a2fd4bb041e4159269b311d15c14b99fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c7ba755abcb6c77b8c22428f02fbcb469e8e041433dfd29a40d14b512530b93
MD5 906dc8b65b5dab721a421122a1467ff9
BLAKE2b-256 821b92e15860be46f741b06b687dcf10748402fb794587d08cf1b1a01300aedc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e07304c176fd88ef5dd26d11cc16f4687b09b9c669cdfd68b56050dff504f702
MD5 cfca2f5fcb4b8cc3a7882b18afc91ba6
BLAKE2b-256 164ac6a6bfd7003f684de6feb0930ac583fc85be20b4e0d0a43d26c8bde59095

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8418d089095f9b37af5bdd5787ed4d060cf6618c97ffcfafb63cb2db7bd3120d
MD5 ba14c9d594afe6d0a4a1e50aacb3f909
BLAKE2b-256 93a89372936fef62c7c4fc8d1ae97cd37be42ecabb9f1bbfb9fe54daa891638e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a66982cf51cbfc99aa5b79b4626ac5f700450d56cc6ea696def398af72fd1bfd
MD5 8e060b457a8db535a0215da62b94db49
BLAKE2b-256 6da9d2d6d90702fbfd443ee50e67a846b8c603140eccddb82345c44968ead4c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f5cf78d8e6312f83f08ced267e4378a3672ecd1b7f324f720f5e6c84547d01f7
MD5 62db9e572f36378be24fb4aa827c31f3
BLAKE2b-256 d47203026b17d3309fd2c9906052104802f725b27b969a190a6cc32e8eeb8267

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.34-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 64de0edbc70b25ac5f8198a22c3d11cf528644ce1610d3add68698e45c144320
MD5 6037fced8a9a1e875fc39725e91a4a3a
BLAKE2b-256 8d2359bd67e49bebef8fcbff49bdbab1cf846e50b621b30cfaae1346b807420c

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