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.33.tar.gz (345.5 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.33-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (874.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.33-pp311-pypy311_pp73-musllinux_1_2_i686.whl (902.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.33-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (965.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.33-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (875.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.33-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (704.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

attoworld-2025.0.33-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (726.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.33-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (844.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.33-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (727.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

attoworld-2025.0.33-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (703.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.33-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (698.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.33-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (874.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.33-pp310-pypy310_pp73-musllinux_1_2_i686.whl (902.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.33-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (965.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.33-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (875.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.33-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (704.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

attoworld-2025.0.33-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (725.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.33-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (844.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.33-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (727.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

attoworld-2025.0.33-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (703.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.33-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (698.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.33-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (875.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.33-pp39-pypy39_pp73-musllinux_1_2_i686.whl (903.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.33-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (965.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.33-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (875.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.33-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (725.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.33-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (846.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.33-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (703.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.33-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (698.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.33-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (702.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

attoworld-2025.0.33-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (725.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

attoworld-2025.0.33-cp313-cp313t-musllinux_1_2_x86_64.whl (871.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

attoworld-2025.0.33-cp313-cp313t-musllinux_1_2_i686.whl (899.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

attoworld-2025.0.33-cp313-cp313t-musllinux_1_2_armv7l.whl (962.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.33-cp313-cp313t-musllinux_1_2_aarch64.whl (871.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

attoworld-2025.0.33-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (724.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

attoworld-2025.0.33-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (841.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.33-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (700.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.33-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (694.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

attoworld-2025.0.33-cp313-cp313-win_amd64.whl (545.7 kB view details)

Uploaded CPython 3.13Windows x86-64

attoworld-2025.0.33-cp313-cp313-win32.whl (531.0 kB view details)

Uploaded CPython 3.13Windows x86

attoworld-2025.0.33-cp313-cp313-musllinux_1_2_x86_64.whl (872.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

attoworld-2025.0.33-cp313-cp313-musllinux_1_2_i686.whl (900.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

attoworld-2025.0.33-cp313-cp313-musllinux_1_2_armv7l.whl (963.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.33-cp313-cp313-musllinux_1_2_aarch64.whl (873.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

attoworld-2025.0.33-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (702.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

attoworld-2025.0.33-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (724.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

attoworld-2025.0.33-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (841.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.33-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (725.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

attoworld-2025.0.33-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (701.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.33-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (696.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

attoworld-2025.0.33-cp313-cp313-macosx_11_0_arm64.whl (652.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

attoworld-2025.0.33-cp313-cp313-macosx_10_12_x86_64.whl (665.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

attoworld-2025.0.33-cp312-cp312-win_amd64.whl (546.2 kB view details)

Uploaded CPython 3.12Windows x86-64

attoworld-2025.0.33-cp312-cp312-win32.whl (532.0 kB view details)

Uploaded CPython 3.12Windows x86

attoworld-2025.0.33-cp312-cp312-musllinux_1_2_x86_64.whl (873.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

attoworld-2025.0.33-cp312-cp312-musllinux_1_2_i686.whl (901.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

attoworld-2025.0.33-cp312-cp312-musllinux_1_2_armv7l.whl (963.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.33-cp312-cp312-musllinux_1_2_aarch64.whl (873.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

attoworld-2025.0.33-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (702.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

attoworld-2025.0.33-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (725.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

attoworld-2025.0.33-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (844.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.33-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (726.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

attoworld-2025.0.33-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (701.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.33-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (697.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

attoworld-2025.0.33-cp312-cp312-macosx_11_0_arm64.whl (653.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

attoworld-2025.0.33-cp312-cp312-macosx_10_12_x86_64.whl (665.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

attoworld-2025.0.33-cp311-cp311-win_amd64.whl (546.4 kB view details)

Uploaded CPython 3.11Windows x86-64

attoworld-2025.0.33-cp311-cp311-win32.whl (532.7 kB view details)

Uploaded CPython 3.11Windows x86

attoworld-2025.0.33-cp311-cp311-musllinux_1_2_x86_64.whl (873.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

attoworld-2025.0.33-cp311-cp311-musllinux_1_2_i686.whl (902.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

attoworld-2025.0.33-cp311-cp311-musllinux_1_2_armv7l.whl (964.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.33-cp311-cp311-musllinux_1_2_aarch64.whl (874.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

attoworld-2025.0.33-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (703.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

attoworld-2025.0.33-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (724.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

attoworld-2025.0.33-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (844.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.33-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (727.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

attoworld-2025.0.33-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (702.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.33-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (697.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

attoworld-2025.0.33-cp311-cp311-macosx_11_0_arm64.whl (656.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

attoworld-2025.0.33-cp311-cp311-macosx_10_12_x86_64.whl (668.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

attoworld-2025.0.33-cp310-cp310-win_amd64.whl (545.9 kB view details)

Uploaded CPython 3.10Windows x86-64

attoworld-2025.0.33-cp310-cp310-win32.whl (532.6 kB view details)

Uploaded CPython 3.10Windows x86

attoworld-2025.0.33-cp310-cp310-musllinux_1_2_x86_64.whl (873.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

attoworld-2025.0.33-cp310-cp310-musllinux_1_2_i686.whl (902.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

attoworld-2025.0.33-cp310-cp310-musllinux_1_2_armv7l.whl (963.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.33-cp310-cp310-musllinux_1_2_aarch64.whl (873.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

attoworld-2025.0.33-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (703.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

attoworld-2025.0.33-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (724.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

attoworld-2025.0.33-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (843.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.33-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (727.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

attoworld-2025.0.33-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (701.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.33-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (697.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

attoworld-2025.0.33-cp39-cp39-win_amd64.whl (546.7 kB view details)

Uploaded CPython 3.9Windows x86-64

attoworld-2025.0.33-cp39-cp39-win32.whl (532.7 kB view details)

Uploaded CPython 3.9Windows x86

attoworld-2025.0.33-cp39-cp39-musllinux_1_2_x86_64.whl (874.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

attoworld-2025.0.33-cp39-cp39-musllinux_1_2_i686.whl (902.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

attoworld-2025.0.33-cp39-cp39-musllinux_1_2_armv7l.whl (965.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.33-cp39-cp39-musllinux_1_2_aarch64.whl (874.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

attoworld-2025.0.33-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (703.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

attoworld-2025.0.33-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (725.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

attoworld-2025.0.33-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (846.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.33-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (727.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

attoworld-2025.0.33-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (703.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.33-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (698.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

attoworld-2025.0.33-cp38-cp38-musllinux_1_2_x86_64.whl (874.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

attoworld-2025.0.33-cp38-cp38-musllinux_1_2_i686.whl (902.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

attoworld-2025.0.33-cp38-cp38-musllinux_1_2_armv7l.whl (964.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.33-cp38-cp38-musllinux_1_2_aarch64.whl (874.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

attoworld-2025.0.33-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (703.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

attoworld-2025.0.33-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (725.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

attoworld-2025.0.33-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (846.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.33-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (727.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

attoworld-2025.0.33-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (702.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.33-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (697.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for attoworld-2025.0.33.tar.gz
Algorithm Hash digest
SHA256 aedf6f9f9fe9f9c46028ecedf5be7a39920045d6c8376a68af2de891c1a60232
MD5 43ffb56cab88e828e2a6ebaa9b860135
BLAKE2b-256 7cf03900801863c6a8da17770265ee76d318933816df0b1f28744248f613e9a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c95293ae7112058685a56b17623a98129b9b293542e8db7cd7edf3e8459bfd9a
MD5 5d0e45081d4c7203d8e0fbad72fd7198
BLAKE2b-256 141f001456cf1d5cd29c44def16575cc4c1de3feb254f334d5dac15e8717df6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fa3c4ec6e6cee65b424bbd891d3b4bb4aa2786c7bd8aa2b9c4a1f57dc371e28f
MD5 09d723a50aefc4c6f1973715e5299280
BLAKE2b-256 4772603a424cd38dabaa343e93e7f0381e8a505c476a9ab5846c329273c0a409

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dcfa2e341b256b07c1fb2777c9b9b8f9c257ffe5d51b7cf0afb7507b3d23fe1c
MD5 110d87813025722859a7b3618a009800
BLAKE2b-256 09348a85d6d9a88c5b6444093ad6ae53213e817439d4b7aefda14f6b9fb3ea06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c3955ed99882417d52dee090a9243b1747b1577e854cbcabf2053feed7bbdb6
MD5 6b5aa89f60596da830d1a2b1142f8981
BLAKE2b-256 33a33630a6d3dfe25b66e94f105b1c176a9a91ccb2f68f6617b53b085175b35f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca147f5db7640f0d2a19a227409cabe58c523eb47b0e8a5f7b5f8169edf585f9
MD5 882ab88b78ca8b8829dbbbf792d8b597
BLAKE2b-256 c49f8facb282eb17e1b11f5e0b26ced6c937a19ceb515d17e2894b9322ef4ce3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8f32703760db44c9e39d4811b002b2b3a29a31a1289f95d0de1e62b5b0198117
MD5 c9f016230f2f7b2d43cee27523a77714
BLAKE2b-256 d202c9ca1a8cd03728543b35566db13af9e4920f4b841fa00ad5489d6e770710

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 943d2ef4c5c096b1baebc5f7663771680f2427a77188111b7c2bcc56ba6485c1
MD5 d696cfbb1801d571d0066b6a9c481160
BLAKE2b-256 4d778b349066000299a313d1f21da8370347cbb7df56c89ad9fc80147548a16e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b86922ff43157d8f1e118c26c7cfdaf49396f77ce6825fa77e9ae27dc727e562
MD5 85a9b3251f19d9d08dbcad64a53ce1d9
BLAKE2b-256 62b53ab0064eff07a1f1b64b46797360e7267872edba0aefd7251fa1127d3971

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 329bff3cddb585323408a134dddae9bd1e3d9d38e851ccbf80f72cf3aafdc8b6
MD5 de9cb5ab67c78dca418587c2893bf1a4
BLAKE2b-256 18e28b6d878b4c74c9cf73534a6b0738eca272e2393d50f1ba0b88286ee4e725

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6029b064b31af6eb865a3bdd3126c01f1f52f701d71363df4c1232c3ac4acced
MD5 7061864f0059abc12440a54722669b80
BLAKE2b-256 6d111579f4886302e1deeb0028419f18a88f89e050216ca3340d9ef4eb982886

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b1fd1c64e682a5ac89330808157c43eb2c0a6f5f46b82ab5bfe7582fe6ab1253
MD5 c183338f6d92e8bbffebdbd94e655823
BLAKE2b-256 4422842d239edf721cb0783d825f6942c92ce8c3f7d2d53ddcdb27013351f8bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e9a5fdd1a4e52c5959628e044d524c2a6659e1ef4101eea21e54eb03f31409ab
MD5 6d981fee3dbc30a7a4d240165a34239b
BLAKE2b-256 6e5d4a4bf49330477460898d54cda01d843ebb4d90b58c491f7d60757d2ac4eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ec78818f03d415ee637a6adeb0b02a2ec73340bff3f478d6ce3524c99ad23bb4
MD5 e2f8f368756d227b568da6e6f8ed2054
BLAKE2b-256 05a7e3a3559d028661d17f826dace395aa697497b93f8f474149d5da09cae6f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 135fa859ee89d741710976094e7afb62976d9edb51c9763ed04fc8ef494a64bd
MD5 37e3e0d26e3d183477fa9dc69f8a6cd0
BLAKE2b-256 10b23310b0202611419f7915c930b2ec450ef8aa35b4318c4717c2151d4824c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3215d513e2714e1ed2824e9c2256560fb76eea84682b93db1ea19282dc551c6d
MD5 395bb30a769b47069009bf8c3abadc4c
BLAKE2b-256 7a6568cb654c572eff36c670eeb6f01d583f641f58cc25102beadbee103d9926

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5e63b03ca0697e37c40177957a62c84da68eb47ad6973ce0dbb63cb72345adc2
MD5 45499b04f8ffcf7d3f4330e89102a28d
BLAKE2b-256 1b9dc86c2a9419f6ce7c2b9c3c82bd46b72ba4cec16f3ca1815c1c18585497cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b56ebed9da319460f05302af814359254ccab10e7b0bf54cae8af1529814dd22
MD5 9dd783e0f94505ec4ed831109a7ed84d
BLAKE2b-256 9e8bf8d2ebd54db3f13253619c29c75267f4f56cd3c9d245ee99ea3b3531aac2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3808b47986f9285a05ee7888a31ca7785be071e7a72a3cd1b256736bbc9c10bb
MD5 f7fa589501a82f1b984c0ad83326dff5
BLAKE2b-256 e77f626135a1da5d513d2ab935ef64915a7f271c042ec92ccc701d44399b6ef0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d02e1575ff6b873def47567a06bb92cd052d013adb98fc3de76070a583710027
MD5 1cf25c359e592c6437e65b99a8e7f4a4
BLAKE2b-256 dbbabfc90c716e205050c6b10af02605a2e45bb7b51eefbb2f47fff6c32015ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a23c3f73d956d0febb98091cf3b4ebe544e5bced92096bb1222511e44080242
MD5 cf2a03a2ad3a887c2e025df3dd9cddc1
BLAKE2b-256 82fac33ed1d52e670c24da43e5ff5274a948642b19a4b0ab40de39ad1c72ec2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 872f2d8965b5932c4526638c1e9d30ecc9eaea564e8ddf71e4bbf9a3465248a8
MD5 2c57cf8dcc175d2ccc942e0c120b9f05
BLAKE2b-256 3743818332d287f82a42df2f7608a1985e85c41b94c93a2ce4c1372e85ff224a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ca44fb63d0e2fd65bbd0b0645886f5f545081392067e5aaf0fc961164f42db20
MD5 d85ead962de0174818ae8493bb477cdb
BLAKE2b-256 c9671243c692abe67cb7da805c622c8a4440da0539d0f3965d442b6f480712be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a76e0aef17c35649e01df94e1fb81cb2ebbe9bf6d535222837873bf1690272ad
MD5 f22a857ac7c2d1276fc9e1f09e6c1bd4
BLAKE2b-256 b898faf0ec1dda7fa7aa9332bfc65c2f5168f3fab1738fe337a99d57458a01d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 003a1807f49b8f595c971d154e70457b51f093987cfb5d311c07943d1aef5b36
MD5 6d1918dce7e9e4512a33c73619eaab52
BLAKE2b-256 413838037ceb87b341865d096e82593bb921d755e8dc8f6a759f0b3031d1eba1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 67625c166e0b4222f4932ea51af3b054bccc4dde39072390bb01e1f5a2df348d
MD5 e3c13ca272435bf755866dc7957d2e22
BLAKE2b-256 8738c3e96946f30f21a3ca0afa8f208a6e57e01c6329fafbb6cf9f2cc428ce6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d2df25941dec660642aec91d16576d010f0360c3c1534335abaf7f9460ef2a6a
MD5 cf2903ee20adf56966097ba1bdbc233e
BLAKE2b-256 ae8836d9d3d791aa119829a08573618a959673e57585c6d1ab2435b5bbfb492d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f95d5ff864c148adbd0a3043921155af8eaee3666007dbd470b5b138db446ac6
MD5 94cc76282698184f597df8d67cc9ee81
BLAKE2b-256 3aeac51d9ffa3121f8897c254bc720c935c9f1260f9538ac0b8c513015ac3db5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ced76ca6a6e44c7be7dddde44d35d7acef939475a9a9af933ef3266ece651b7f
MD5 150b1e57285ca5d89f4340302725fb51
BLAKE2b-256 e57afbf4ecb9993f317421a94c9883a0d5a3ae7ac428a2ea6a1723d701ff62d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35a250552c75f0e42c07f1d79ee342b436ff16b6834b91da46c35e676442b11a
MD5 f33cdf935ce7c86ae263c58568c828a2
BLAKE2b-256 6f6978d6b10ab3e9046015b03606b43fdfd4c97539c1ca058a241063e6b395cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 275147daa5ff779103e2f5e5708859cae298d0c8dfe789fffb6fa7cf7d6a6026
MD5 b9e7a654928bba3ff0687380a284222c
BLAKE2b-256 d6386cb0304fbeeeb78d9b4d444b46d821c806537ea025c8f95cdcdc0aad5325

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b542103ac69acf951197d07b068ede41a0956e69d33ca7a2c5f5e38afdeaaa70
MD5 efa79f45e9a752bff2736c58bc4c1099
BLAKE2b-256 a38ef8af1bec95d70997de083e578bcf2f80659f7a1264fdd161d31835b0e743

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 351b6ca930d763f3dff086d5be536831d08bc5ef59a74fa1929c50358c00457c
MD5 76832a09a37ee169f8273bedc3a4290f
BLAKE2b-256 d2543233b013492e49adec21859a76e62421dd5db73edcd660c7675f7d65c91b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 922bd4d1374e10205c59fac724d32f5f5e95162d10a92be1657f2ef070cbc9b2
MD5 634da68693c496063f49fb54fd4e2be2
BLAKE2b-256 c36bd42cc22294f49a3b7192780efdc77d5668d4d12b375671e641a76dab1eee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 178f510d7ce4b23230e0324fe09005b5dccad4cec3e9b41965cbce9e0a080ab4
MD5 97f8abf5821341d77104f1e86d33883e
BLAKE2b-256 c04862551966e5c0de45ee685b6675d847a754253c64cb971399625a496d32d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c996b8cbfebccd7ee8b1447a0d73b420a2382d25f5cac1af101a3e626ad73a91
MD5 cba48190449d9ae5665f8472d9f2d140
BLAKE2b-256 61c2c1c3e0db7cfc22c74fec732569c38b5aacdf431c4540886da753aeb30e97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2b8cce6270fa2bdfa8da617c9a92e30ce1b915ba27d91ab4abbe9d5b39d37c3a
MD5 c0756b101be65f2fabc8d592cadea911
BLAKE2b-256 409d8f624e7c5bbcea0d2479fb3eb79217507960cc2e07cd3e71f7009d0f8bfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f16831307813f69e0bea47422107407897b9cebdde07a875ee0257df8d884087
MD5 3c5fbce52769c5f63978faf60e38745b
BLAKE2b-256 d62e6309972d9bf542fcc7728cf40d941d0fb3486189be1301237c227c519c28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b72cbeee20f6257f0766415a275d8c8dfc5ed2aad4183c64ffd8d27db37b6475
MD5 ff48f457d9d9c1d8bb418fb06ac2315e
BLAKE2b-256 50873966b2736d5aba80a75076a2269f9061af47196eb808b8b8e5a044ec0191

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3ce7a4e9229ba70f763b905c7dfe7bd2ffcdaf129f3a0422a2c9f338212b9e07
MD5 442c51f6b89262a810ddc289bbb53670
BLAKE2b-256 6fac53916ff23d2b833b6c6332661ca146c2e67518add3959bb50b5de83c028c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d635eb815a9030bb69d04033044eb3a9400beb8ff5902ad73bf6a496e01eddfe
MD5 03ad8912b507f6cc69d5b59a5a019d3e
BLAKE2b-256 8406e5a3a709617d051aa9527ddcfd2f2cf2ab13b0aa6918133100483af03e47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b439f8a78ce079325c131422db84873daa78861d7187ef2d68b4a67e8206ec4
MD5 e03e6782e6ce23f84cf94a24c370d14f
BLAKE2b-256 af645531210a75ac0322a82549aefad3aa37a77fcd4b2031598b1d2fad028253

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 73acd20fc4365909757b79b9a0c6a6f3c114f9193c6fad45e5340480f1bd56db
MD5 25be9c01e1376c04634c4ec2b85a509c
BLAKE2b-256 f946ee01654f605e7466ef44d4e0b1b5ce4580e7deb7be4ef84a1d4dcf107838

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6707d08760404c18a0f15f11ab5e13458622f7770a3d5a4c1736191b05f7598f
MD5 69ba6432b4245c8e05610d04d48c1ad5
BLAKE2b-256 c5532302010eb95ed7b3e761f2325b1f71388d4b6be2146f12cb74a8821966de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 93d8fc5938b3686d2e493d513f5f6dc652a11c8d59a8e9ff6f651dfe9465cb89
MD5 824c62ef9813980f6e8b0d988905bf2c
BLAKE2b-256 3e7472a3651c74365649630f08eafb040d6af61e4750501cacefeabf3e5fc76d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9de16d13628bab22a8144e65a44446fbfcd76cae969cb1a47a8b5ffd6d7c68c5
MD5 0732e3a2c751e5d7d1cf69f80e3731cf
BLAKE2b-256 c17ae0b407731451c5b0f811d033ec003606fe75b043162bf362f7c12c4191c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1e1866171f8204fe2002b243b16b8d5d4c22db7c0277f40e56c76306a3829c8c
MD5 f90f43540860331892aacea4823e6765
BLAKE2b-256 d8f73dd10a9a421fe36719b8faa43c49f23e709f0953bbe6cbef7f347019f244

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bf3d869c2a1af2f42dde0e4f7f6e15ff7f01ec6cb73267ee3003ce86e030decb
MD5 cade042d33d8d367c6fa256d9f9eff58
BLAKE2b-256 a28945269c86b1816e5e43a3680b7acfc3f34f47857eb0e7d22e6040ef62df3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c23a225ede5837488b5923b61cf9dbcaefb5b848e3a3302f672538ec53f25788
MD5 507c2511674136e79e6ef1f23fdb1bc1
BLAKE2b-256 a48859fb6d0bb976376956be37e57493e0429c80e2aa92fca56f3e443f974375

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 100b0f7a306cb6914e0e8f9f677ff17e168d2c6f0b9cb2110f4d31c09d530d1f
MD5 b57d8f768e84c1fb8e3300d086a698ec
BLAKE2b-256 0ad3210a1c6d4d3ab8f17621f8ecf533f4901cf4aede1a22df6e2d20601e82b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9dd8d90cf35eb59b6eb79056a3536b0adabd79f25117eda949edb9ca5a95840f
MD5 0d6208b7c3477b1fa6660ff2e3bd58b4
BLAKE2b-256 8c16f95d0a806fcadd3b76bb00aa9c90a60a9650c4d01531d2b173a774d17e29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 294ac1eaf071a68619a015cc4bf562f2883a75ced28ebd137610c9999bcf521a
MD5 b1397b8d43756da4315452c7bd3761a6
BLAKE2b-256 27f06ba102345b147f949cca3ec9b1c6a14f7f3e6cd9094345cb74e04d652463

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9b15622845622cae757c159c9364bf5a46fe02d10717b25f32c834b1f76b182c
MD5 ab093d8850452879c82e6393f3a918b4
BLAKE2b-256 1cf654b2833f73e24c9762089fecf27397d7ea7a8c96fa7d86cc00e675ef7ccf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dee645871f29cff2ad733b0cdf77a51a3c73293d64a68e936c8b4be5a3b9a3e3
MD5 c4568f1cdf509f8ede1914e4e1b92347
BLAKE2b-256 c6c3a1f65be6ffebbdde46b919a6319954eb87956009e25923cd5f740f2aa6b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4491d737f13aa203f4302d4031ae85e899c6fe62cd3db0344968567aad1f764e
MD5 418db1baf9bea8701670cf0eededb450
BLAKE2b-256 5f80bc3016d5ca09bf3e89d2315969da94111c54c5dc054318beb8741d8ad626

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 57f815adda44492ed6ba0a3c5ea68019310e3c87adef03a6e438e2224ff3490f
MD5 b319567e0193ad9b37d7c5874d6ec2c5
BLAKE2b-256 2ec34dc310dd568a0b9eb3a59d041c60637533efdea00c19b2353f4871785cd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 41f850825b12974164a12d33d9bf68976d4e203de28e36db9653043e82a41cb5
MD5 596b5d9eed8faac3b8273911008a3e33
BLAKE2b-256 3e003f1f42e0cf28ab2295be850cae7b9bafc123919d90acd5cfab2cfa898ce0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 86fe5023f18871acd057c9cb6c8926df5dfb2630f27de11334038dd3a6d849ec
MD5 bf1a7492224eeaeec79e21985f7f1220
BLAKE2b-256 14357644e32d044968bf6efdc761a8629c23685eff52d403a7fd9644b509992e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4393ef9d673f6c03626b9b63abc1e31b300b378d6e6c5ae85d4d349d2d7b6c57
MD5 d21804d0c3eec095a2f1108cefa49518
BLAKE2b-256 739f22957fd76b237290cea473e6d9b82c52e948c03eb32f48d5f15fb078ab27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f8daebf75de91c4573e1de77556da793be0642be3304dcfbbedcc048c623c25
MD5 a567a476ce700875116ef55979ea93d3
BLAKE2b-256 2ae0f7154fd19a6eede877cbd3117aac13ea49bece84bad259912adf5dc743c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9b7c056e7e866d69b515a1f3aecedffa2c826fb42e943e700e1c8af0866d7bf6
MD5 a6d4dd434e82f4669010bb2eac605632
BLAKE2b-256 467a1dfc4a6e70502d1e60ee244fcda9f3bc636fb9c11dce3060204d17c778e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c2d7d88c8b9a792b0f0383680263b90e82eece812dc366625855a9a0b642c5e1
MD5 58d95e51b26deac758435e19a68d851d
BLAKE2b-256 ea094817573ceb384c42db13bf4f04bc20603d756b8761ccf3bde8a87e33b2ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6a5ff2ac79098e501d0fca80396cd2cba7367c763322dda50c2e1e0acc8e089c
MD5 f0d3a9b5437645ecd72d481b832de02e
BLAKE2b-256 57b585111d16b1da55ddd8895770412bcfeb8ef9d6de142d4b92561be9d86f11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2edd8be9bb18ae6ef4260b81dcee80712cdec9363936d28b9b49e3af03338173
MD5 22aacbcf1f4bae7b555f9d9ac6aabc2d
BLAKE2b-256 9f5cbe4ef0ecb5a8f5b9bb52b244f182ad5171dec927481f73f769ebf9e08f38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1248cbdb3510c1dfb425ca8140d5f2b4843ae1b51328a51ac192c5727c1910ed
MD5 974e02f6311464fb440bafa3c979174b
BLAKE2b-256 1e91058bbd90bb06e47788f7d59d839e5d58ea4898e897c6a119d481c64662ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49a45923681829836b20f35695b5f98406fd596551df1bcfbfcadbf9c644a279
MD5 702c3f152617aaec23704c516e6eae64
BLAKE2b-256 744e899dc1b2f4d8eccde85e8964fdf25c96a2c8d8861f1505d78232c9f0942a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c9f55c3be68dceb49750026ff815e5bf1513d0d737d6dd1935929c48a88e8beb
MD5 1657456936a32d1fafc639aac72594e8
BLAKE2b-256 46d3131c44adca815ad84635e5b797a97484dcc97719fb0931743e843e621843

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e493c921a8e162060b9ac6ee2ea648016db4ae228f8be8f38651c1dbdd23af42
MD5 fbcb4a90cbc33f42a556ee929f03acfe
BLAKE2b-256 a8fea60a1b690b1db58198b3bd168f8bdc77eeea161ecadbd6aa82c46edaad69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0643f42508e3aab9c5b811e90555b349a25e7a8f337536def904632393ff3b7e
MD5 c0c6c18f33f8f280665436983dbc6d17
BLAKE2b-256 9a1e902cbe0438393838227ad4314dec18c018bbe0dbbddbd60447e05db8251c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb16d0977ce8551de4dfa2c83c0fd1be0e8e0315cd1d5651d62103972bed6f82
MD5 c10a9001bd54e149db4de6aff4e443bd
BLAKE2b-256 2ff42c7f710d76952dab443bcba44c1e616ec32ef0b19efa7b59786fa75eaa5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3a53f884cb71e6609e5717f6970a29bd2f2622685e5dc10c153a55f07e79b743
MD5 e9facfaba8044c65905b4182a04c29f1
BLAKE2b-256 75df2510b3875f68fa82a9c051888b5521d5cbc50cc8bf454b3128094ffc364a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b94ce8a02ae45fc3506f568ad67fee6dfc2853c8bf2c16c48ba4fef61823ad47
MD5 d561dc1e69c88ec0ce986808a8e987b1
BLAKE2b-256 26c2cb8c37b2c4ef84f6350999803621458d602a241d7c947144ff3909638970

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cf5893f1a95c67b3344f6f688f21fec167b888f37e8b96911d7ff5105c8e4a9a
MD5 dc6e0c165d48c2edb9247af4030fa9e4
BLAKE2b-256 0332846e4575834ba446d9460cd37dd9dcf0c3181fd6aabe24ff09ff9ce74798

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eed802f391f6f2a83e1e25f51f21b9a95f9106045c2fe0182a3ebb532a4fa1ac
MD5 dd0ad3a431034ce1bc221852c845d7fa
BLAKE2b-256 ee49add3148699fdd6fbf4fc3952f19e5963447a55edad0993ef5e8b9d78fbce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 33e87866b63325e97637933e7f80bb6bb166f351832d71d13891444e5a3bdf66
MD5 d674343fe7387253f06bb4e588a6a3d6
BLAKE2b-256 872c15331a558292ee1ee9338f289319dd3ce5fd1bd1ff1c56236788cc6a3084

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 22497113a546edaeac7d870e3cd7f68de6aa8efaaa854cda04457429f2499532
MD5 a882591e1d95fcbad015444d55accf95
BLAKE2b-256 2d4058d1f12baf5cb672b767bada6589eeb796da942ba89c44a3d5d4ec0bf86a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d75004c237a755fba2e91dbef42b3f54b9439cf95add1159c5eeef40dd076d58
MD5 0abb32f265a82fe594956a17a915ddb5
BLAKE2b-256 ba98f6098a8636ad1fb9bb7344f602056766be4835580ad4dc42b2e87192a8e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 facf76254b0e70a99d0456f3b367c7400925a1ab6387c2f52459cf9f44bec6e6
MD5 d37eb3de61015d37cfb7fb2d7d0f1ad4
BLAKE2b-256 1a041bab402ef14e509ae6d27a25e4ba3abaff5b6027998c0c0148cc76246bcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e549acdec42d13173b5b047f128570b7203b49f7c7da3793bfbcbf674faee84
MD5 ddbb4e0258b53276cfd55ff5ec8024c3
BLAKE2b-256 37c5cbae232f66b8cfeebd20fcc8bddd162353a0cf196e420a27c8af463ce585

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 909426a808ac35db0b145a85797bb52f0585ebed68c34487ac51dcb26f3b1b58
MD5 6bf8ff0e49be31dc5767d06f16ebb252
BLAKE2b-256 082c51b51eaaf32ebf6b4090f999303ec3e16562a13b5ee2af5411d7142e195e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cf0d3e3beed4808c45cef671389ee6f3d6fa4c08760519abc2a92297a1a98fe3
MD5 8d105dd5197df9478c820b1c51f2241d
BLAKE2b-256 8d90a692c0d05c30d331094b09ac6da589be97d8ce973e4c53b4ebeb0207e643

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7e1a2861bf7f11f4ddc8ded9a790cc7b5e8984a389b4697951f7acc9ec5a2861
MD5 e8e29b6c2a1668541cfdbb0869392a2c
BLAKE2b-256 71a0f6224b6031455fcecf2810552395331a305a89fb731efdd4725a2163041f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bac16bd4ef40e962de9afc12ffa362e145d147eb64db8bb005c31c50449ad544
MD5 d615d7d7e4a8ca4308bd4782329454ad
BLAKE2b-256 82dd0d78213da70696996d8886922efba3c1a4b64bc3fb40cc1eeaac0754e2b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 64aa02b73b058885d5d22d9ad590aaece2b42fc14ec55ce86b4fe021f3cadfef
MD5 b12b2867592667af9562331e4bfcfecd
BLAKE2b-256 0c2bbeffb05be293e5681895a03a2bbb09ad9546eb6bab79527e1c2975d8159e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 121a9142f80ef363d542ec08ef330f497cc30f90f482451375ed6dd230fdf555
MD5 cec482327321a12e743151d04b300d87
BLAKE2b-256 c3abfbe993c53b265b7de97ce8bb22ccaa7c74b66ad92842040be5bbd2ad7113

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 94f8343d6a18a3880799ac4efed3c2e1ecbab338a7305e461ae5274e94f3f8fa
MD5 256622b6717e7e1ae6a354c38cbb66b8
BLAKE2b-256 dec8a6dfedd4334fd9fe5d488d6d8962bfcff611cc945ff846b1536aa38c066d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5bce27fc72828c68df6c88870d23f8f9e4bc2183707ec90f7cad93163a48ecca
MD5 1674e2e8704df56ab07d965a7a1467a0
BLAKE2b-256 d23630ae73da6cc53282d3f5f80d809f3c6707e6961bc387dbfd58ef5d704838

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf5be3ce750c953f1007c3c18bb5aca4d9e6cd171fc5e52a61678bbc2e919b88
MD5 20f0d75c250471d1fcbbf8c3ea652dce
BLAKE2b-256 75c5083133b0ba31f0230d5e18c4f5882bdf07c65ee723064a7e6fcca50819c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7c54d6d6f2ec75dcd1fb89f4ed8fe71e9e158301461aa6f6685ffdd5f2386cce
MD5 5b5d18ae4a15c7efb77fc26089d83ada
BLAKE2b-256 67efb636ef660fad81439e8f18661dfe50e83e5c22adbfbff1f425845f257f67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e72e7e5c7f9a4a3d371857a77933cabb297dc50ded3d5ffa27a6a3c26983590c
MD5 175a797b0b8c405f4cc3bd762eec5736
BLAKE2b-256 29a0fafd461bad9adb69ab4fe176106cca7121ea0584b2f3847acb4d6ab22ec5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 873c865e6a1175efaf629281684c6bfea5dc93ab7059a74986d83f32b68cf6ac
MD5 21f41dc96f098770f5a757324ed89e72
BLAKE2b-256 fca65bf68a8efebeeafe3d18f2ce99cf3348d575125a6b2273bbaa69f33387b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 31aed041d4f1e81ccbe2d146f75393fda7becf73295a158c0b82de8ce26bd1b3
MD5 bb4475315694f2ee80d4443347bfa2bb
BLAKE2b-256 2bcaa32accc90467fa84b89898cc58a997456f626027f0bb10723092257084e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1b938164e552ecfda8cb27f731c2faf7a45c043d58a5a7df48e6a1a2abf56f0d
MD5 7c2b748d2cd23eaedd9bc178f6273690
BLAKE2b-256 4e721f5e2279c978ea57936472a01f87be7a5d3c6f38a1becb12dd9eafe1bb70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2dc47a35e13a65aa2ad6346b95f2f2e814f453bb3479340cb992464fe1e6c6f4
MD5 60414ca26c4c210e7a6b409082c31828
BLAKE2b-256 0c79277363b631879b5f0da4b89e00deab50876ffe5db14a84d787cf0b316d5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 962b8fc6a2dd5feb11c048d498315314fa8c52cee3e4ac043a7631355f4d5e66
MD5 80596bc44bbb03ceccd23630607fc8e4
BLAKE2b-256 c402706b6b0ec5d62e8b1d7eca1598eb2b74bd6db9b2d22bc8eb0c2e65cfa2c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a4669a555290f33f26bdced7951e89b2237a6b5d7dbe467b4fe8df3a7ae2f2b
MD5 cd483abc187b0051a24e82eb334ec25a
BLAKE2b-256 764b418431faf54ab18ed0d74e031020bdda604d456d2de515fd1b0624be2d14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c0f9a9314a7bb77143e5e5e9580511003638e6187724f35cd7e87c80bb3eedde
MD5 6948eb1082237685aeb5b0811cff2f4e
BLAKE2b-256 0905de41a37ea63dbb6a13220ed571a1c499a638578b4afb193c14e237618d99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7418dfaf38a87865a0a19deb7e830ac56f0d65af5561d822725296e657a90c9e
MD5 734aea65c9dc58c1810dac04dd037056
BLAKE2b-256 c3b3588b5ba01bca69350085bf8ae767060f133c078e610f6e1f628988113174

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 645f743341139559c681a666be7c873b830bbfa300e5138ea1cfaa7919581f74
MD5 c94861753b69d9c9931c65c9f7dfbaf5
BLAKE2b-256 6de914bccefae94f976e3006e9c4b79f5728cbce2936f93852661c0e4cdc64d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 667c938056cea1c4eded562a02d2fcda90ac76fdfeadcbd9139a7ae4d001124f
MD5 a2e52c5de5a910f526a554c330c95642
BLAKE2b-256 29310b64237390f1571e58f5ee8831db8aa7547f4345aca7350478dbc2d02269

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 18c94c0f77387beda2364a33073c769d733578b41cbb2313c8fe3b8a20f0181d
MD5 121a3c70d8882a67a195413161784963
BLAKE2b-256 cae2780b067cc1a1e5b389ca9336f9f3b94a2814ce5bf857d6d59c8664447361

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 58e92780f93e5d00bb2268ff52a6610085c0d28cc148feb7b1729d0d38073699
MD5 746664a1428e5ac61b6286f48883bca4
BLAKE2b-256 fb2062f96cfb9d3aa4199feba05831b7f3700214c92988e296cb616fcc5c4625

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5fde4d91e731118ac109a712a333659c3a3c01233db7e4a7c4a99b612b6cddd8
MD5 df406fdf9a22125b1dee1492f3038f63
BLAKE2b-256 443c8e1a7d63d12b0f583bc5bfa8ea881950bacab780481179240c5a10b1ddfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bcac97a1c2a2c2eac76faa61d0fb3946e093054e7b938548e0acdb5c50349abd
MD5 47ccae34c46d2043fb8c46d41903e150
BLAKE2b-256 59fe6e002e2c4d976326658fb93d5190259aeb2b204eebb631984d22c8b2406a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ea075e9d854dca9f0e37f0f5fb64e30ca0d350c7eb36afa93258afe419c7fe2
MD5 d072f3a546b656a50997231079a645e8
BLAKE2b-256 c2844d39225423ae06f60cf832f7168c8e598fd644d47c3ab44df5d2ffa256ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a2a101153ea56d8d4bdebd839065962bbc0cfc48923afe3aecc56656e0adf46
MD5 39a5962e9bdc3568f59564071d7f20e9
BLAKE2b-256 d7e10fe7299b0c70aa88ee2a9237de2cf79651179aec378b3969b2091147445a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 942028ef559e38cb1e45cdda34dd17102dd799876c9a1bc1112174c6a79f8625
MD5 d8d5fb70832382162a4c300bf218fa6c
BLAKE2b-256 98b6576b94be4840aa3a714789b56eaeb5ff053e5a819f951acbfeba71ce344d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c04619d4c01544d9294951ba0b5e3bebb9f18cc2c79a71893b7988f2776c81d3
MD5 0cd9a10b2271dfd11b6671521d3362c1
BLAKE2b-256 4447752685fe46209bf1c1bb723f7125c30f99a6669e6f84b132a72d879a58e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e04e919982dcadc0c87cd33694999355cc76b885be2bb5dddb113fbd7e0cd156
MD5 56dffc8149516868793ffd3bfd5615f7
BLAKE2b-256 bbbc08d15ea193bb07e981547e732f8ea626d1cccea0b09b4e17998e435b1e2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f62f8bd323ba7794811c9b0d6bed29a1f56c4463f3d8bf9ae2af5da84ef9667a
MD5 fc036f44d01e0368205ad329f0473973
BLAKE2b-256 6839d729891366b89f9ccff907dacf628c7bffaf60f958096e98a57bf21e96c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7c49e12bd71a8a77f090e8eaba6631051db7498e1e2d529777a37b40c5ab6b6e
MD5 5dbe28f665acccf33316155619a6ce4c
BLAKE2b-256 364a6641b7bdf2633c450e1952269425b0adbb9576139cbfb9c68946065d2160

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 084c82f9f72598f26779d6b1d06cefe434499de2eea1494c52ee9a2131d7f96e
MD5 a89475ca129e088fb2b494559768f1ff
BLAKE2b-256 f4068e471b7876611f82d4c0e0406ea1e71959fffd261e91e1d35cdad81be2b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9e8fb8b6f3ca6759b6176ee73c092cbf0d8c99ba661ee56fe5e3310846a484e7
MD5 c20c903323da28f8e8a4f3895415cdff
BLAKE2b-256 38cb66e6faf4e4bc7db6a1b3b8c3c1b3fded08e49bf022fa8170f9139afdb3d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4fe1f18be5197166206acb5a5a035c31af3a1c513e847b6ac10d1bfffb6597a7
MD5 fed053f13e7c3831ca227585db787c69
BLAKE2b-256 16920cfcbae898a09a73aa6cf8c4419ca2e686c7ecc3e33712fd6c60c7fb142f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.33-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0bb716d570af0fb427540c00ef624b839c8131681f925a3892b046b09d592810
MD5 e208a01c095d4862b9218dcdc5d46888
BLAKE2b-256 7ee413f915cbd5bb1fadb2754f4b703ef5688cbcef4ef49a99d51926b58d4de9

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