Skip to main content

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

Project description

Attoworld

DOI

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

Documentation available here!

Structure

The module has several submodules to keep it organized:

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

Contributing

Code guidelines

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

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

Working with git and Github

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

Forking the repo and getting a local working copy

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

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

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

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

Making a PR

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

After your PR

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

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

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

Developing locally

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

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

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

python -m venv .venv

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

Linux/Mac:

source .venv/bin/activate

Windows:

.venv\Scripts\activate.bat

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

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

maturin develop

If it goes without errors, you'll have your working version of the package installed in a your virtual environment and can test with it. Of course, you can also quickly iterative live by importin the module in the python/attoworld folder of the repository. You will just have to run "maturin develop" once such that the compiled library is available.

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.15.tar.gz (188.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.15-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (576.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.15-pp311-pypy311_pp73-musllinux_1_2_i686.whl (602.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.15-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (674.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.15-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (585.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.15-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (405.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

attoworld-2025.0.15-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (436.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.15-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (540.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.15-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (412.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.15-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (406.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.15-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (420.4 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

attoworld-2025.0.15-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (576.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.15-pp310-pypy310_pp73-musllinux_1_2_i686.whl (602.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.15-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (675.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.15-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (585.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.15-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (405.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

attoworld-2025.0.15-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (436.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.15-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (540.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.15-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (412.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.15-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (406.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.15-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (420.6 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

attoworld-2025.0.15-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (576.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.15-pp39-pypy39_pp73-musllinux_1_2_i686.whl (602.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.15-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (674.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.15-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (585.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.15-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (437.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.15-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (539.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.15-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (412.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.15-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (406.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.15-cp313-cp313t-musllinux_1_2_x86_64.whl (575.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

attoworld-2025.0.15-cp313-cp313t-musllinux_1_2_i686.whl (601.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

attoworld-2025.0.15-cp313-cp313t-musllinux_1_2_armv7l.whl (673.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.15-cp313-cp313t-musllinux_1_2_aarch64.whl (584.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

attoworld-2025.0.15-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (435.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

attoworld-2025.0.15-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (538.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.15-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (411.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.15-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (405.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

attoworld-2025.0.15-cp313-cp313-win_amd64.whl (277.7 kB view details)

Uploaded CPython 3.13Windows x86-64

attoworld-2025.0.15-cp313-cp313-win32.whl (273.5 kB view details)

Uploaded CPython 3.13Windows x86

attoworld-2025.0.15-cp313-cp313-musllinux_1_2_x86_64.whl (575.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

attoworld-2025.0.15-cp313-cp313-musllinux_1_2_i686.whl (601.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

attoworld-2025.0.15-cp313-cp313-musllinux_1_2_armv7l.whl (673.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.15-cp313-cp313-musllinux_1_2_aarch64.whl (584.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

attoworld-2025.0.15-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (404.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

attoworld-2025.0.15-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (436.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

attoworld-2025.0.15-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (539.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.15-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (411.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.15-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (405.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

attoworld-2025.0.15-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (419.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

attoworld-2025.0.15-cp313-cp313-macosx_11_0_arm64.whl (378.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

attoworld-2025.0.15-cp313-cp313-macosx_10_12_x86_64.whl (382.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

attoworld-2025.0.15-cp312-cp312-win_amd64.whl (277.6 kB view details)

Uploaded CPython 3.12Windows x86-64

attoworld-2025.0.15-cp312-cp312-win32.whl (273.5 kB view details)

Uploaded CPython 3.12Windows x86

attoworld-2025.0.15-cp312-cp312-musllinux_1_2_x86_64.whl (575.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

attoworld-2025.0.15-cp312-cp312-musllinux_1_2_i686.whl (601.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

attoworld-2025.0.15-cp312-cp312-musllinux_1_2_armv7l.whl (673.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.15-cp312-cp312-musllinux_1_2_aarch64.whl (584.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

attoworld-2025.0.15-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (404.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

attoworld-2025.0.15-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (435.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

attoworld-2025.0.15-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (540.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.15-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (411.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.15-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (405.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

attoworld-2025.0.15-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (419.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

attoworld-2025.0.15-cp312-cp312-macosx_11_0_arm64.whl (378.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

attoworld-2025.0.15-cp312-cp312-macosx_10_12_x86_64.whl (382.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

attoworld-2025.0.15-cp311-cp311-win_amd64.whl (277.8 kB view details)

Uploaded CPython 3.11Windows x86-64

attoworld-2025.0.15-cp311-cp311-win32.whl (273.7 kB view details)

Uploaded CPython 3.11Windows x86

attoworld-2025.0.15-cp311-cp311-musllinux_1_2_x86_64.whl (576.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

attoworld-2025.0.15-cp311-cp311-musllinux_1_2_i686.whl (602.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

attoworld-2025.0.15-cp311-cp311-musllinux_1_2_armv7l.whl (674.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.15-cp311-cp311-musllinux_1_2_aarch64.whl (585.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

attoworld-2025.0.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (405.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

attoworld-2025.0.15-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (436.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

attoworld-2025.0.15-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (541.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.15-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (412.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.15-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (406.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

attoworld-2025.0.15-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (420.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

attoworld-2025.0.15-cp311-cp311-macosx_11_0_arm64.whl (380.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

attoworld-2025.0.15-cp311-cp311-macosx_10_12_x86_64.whl (384.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

attoworld-2025.0.15-cp310-cp310-win_amd64.whl (278.0 kB view details)

Uploaded CPython 3.10Windows x86-64

attoworld-2025.0.15-cp310-cp310-win32.whl (273.8 kB view details)

Uploaded CPython 3.10Windows x86

attoworld-2025.0.15-cp310-cp310-musllinux_1_2_x86_64.whl (576.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

attoworld-2025.0.15-cp310-cp310-musllinux_1_2_i686.whl (602.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

attoworld-2025.0.15-cp310-cp310-musllinux_1_2_armv7l.whl (675.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.15-cp310-cp310-musllinux_1_2_aarch64.whl (585.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

attoworld-2025.0.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (405.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

attoworld-2025.0.15-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (436.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

attoworld-2025.0.15-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (541.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.15-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (412.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (406.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

attoworld-2025.0.15-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (420.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

attoworld-2025.0.15-cp39-cp39-win_amd64.whl (278.0 kB view details)

Uploaded CPython 3.9Windows x86-64

attoworld-2025.0.15-cp39-cp39-win32.whl (273.8 kB view details)

Uploaded CPython 3.9Windows x86

attoworld-2025.0.15-cp39-cp39-musllinux_1_2_x86_64.whl (576.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

attoworld-2025.0.15-cp39-cp39-musllinux_1_2_i686.whl (602.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

attoworld-2025.0.15-cp39-cp39-musllinux_1_2_armv7l.whl (674.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.15-cp39-cp39-musllinux_1_2_aarch64.whl (585.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

attoworld-2025.0.15-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (405.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

attoworld-2025.0.15-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (437.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

attoworld-2025.0.15-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (539.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.15-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (412.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.15-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (406.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

attoworld-2025.0.15-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (420.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

attoworld-2025.0.15-cp38-cp38-win_amd64.whl (277.9 kB view details)

Uploaded CPython 3.8Windows x86-64

attoworld-2025.0.15-cp38-cp38-win32.whl (273.6 kB view details)

Uploaded CPython 3.8Windows x86

attoworld-2025.0.15-cp38-cp38-musllinux_1_2_x86_64.whl (576.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

attoworld-2025.0.15-cp38-cp38-musllinux_1_2_i686.whl (602.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

attoworld-2025.0.15-cp38-cp38-musllinux_1_2_armv7l.whl (674.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.15-cp38-cp38-musllinux_1_2_aarch64.whl (585.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

attoworld-2025.0.15-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (405.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

attoworld-2025.0.15-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (436.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

attoworld-2025.0.15-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (542.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.15-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (412.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.15-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (406.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

attoworld-2025.0.15-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (420.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for attoworld-2025.0.15.tar.gz
Algorithm Hash digest
SHA256 61524d8fe683b8462bf3e752824b073951fb4c6badfeb4281ef5b7f751aea8ec
MD5 08a446acd551c02d24e9c1950d92d920
BLAKE2b-256 597e44150c217dbdb09c5aa3d46abdc840b1d5c4c102e0cf0b21b9b9d9dbf656

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 11d00d56dcb73717a87c59b8403919c339b699349153978d2d705fdfb0fca82e
MD5 b2cabf77983e9900c284dfdfaeb67cc1
BLAKE2b-256 53252e45ed98bf9fd159b678c76f85ba03a0ef376cc36b18770b519f60ea82ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6c4f5be2aaa8ba6d1825495121b34d7bea70d9f7fec486c0855e6e47e399d183
MD5 415b1359cee81849c738cd8fb87f6991
BLAKE2b-256 87419464f14db6dee5a0a4d88cbf4d484a62be89b5180c670e2e2b4a367631ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 92b57d8696955716c7f88fd5e7a7b856705a0b0e58c7617a5e6372da1e48caae
MD5 41459c842bdb3d5a9c1bb2d40c70205e
BLAKE2b-256 5b82aae7d4c638593cba19a6b941c90b53a8de8472f5921611438b7b89fdb444

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5b6ed74f53e3d6d8f1d1c6b413774afc3386f060121102d2943345fabcf91b7c
MD5 5cc83fbd687fb91dce6133880ed1933d
BLAKE2b-256 440f8a6c3ba2905bb81e0b6f2d8d31624d5df68faf15deb6f82d45a90ce4e6fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 994ec2a8f8056625aeb705a8d44c88d0d18e486aa1090078df4a22a70482819a
MD5 2bd40f0cfc4fdcff8f2a5f01b0bfbf60
BLAKE2b-256 b624aff95bd86635cb3e2f93b2c728290caa57782984df50f1bb93d79ba3fd15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 284695885e89e3fc143d8d6924863a0edb2b6c33173dbf287164bfcf74c5e9d9
MD5 9537f6e627fdfa0ab515c2c2389fcaf8
BLAKE2b-256 f6c7a5390123ab25201ae43714d3b96aa5b7c8ed28f2cd458adc70c6c20ee1e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6938b5ff0d8b434d341dfaacce4b284b350ae1a1307f66635e56e1a7ca8ca532
MD5 8df6099558b001894a14e8528f03d320
BLAKE2b-256 155c19f1bd64f16f98eef1428ace261a7cc0619d491c8a7c9b0015d4b20b5407

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 11c847c44e3b879e29136a95fd4001ae6f2ad5e8e550b42a5525c214dec05cd1
MD5 3ef3332a6fc44e0a35787dcf7456bf77
BLAKE2b-256 8de0832857e6dde54de6cafe8d3c0c86268216e3b6fb11bd6785adc8cca22638

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 201a873eace6fff26ed82699729dea9579144033b5fee3fef9e04f91eafb4c49
MD5 77999863d8c582702c88383d247e97d4
BLAKE2b-256 03ad183aa65c9ee46ff085e980d05dc906a9545d0205e274bceb10406180ae51

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.15-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.15-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 29f4f86c021592e5851138ed2494cec4312aa80e2973079cd84eabfaaf1f55c5
MD5 600e16d42c71091f5aa79ab7f6aed3da
BLAKE2b-256 80179595d3aa4cc97187e538445378991f8aebf43a9195e0cfe1cc8b2135102b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d9476c1362e675d9f01b51f3be199d17d334c01ec387295564707bee9241f5c6
MD5 515e045207d6eac1965c3e6b3033d277
BLAKE2b-256 b9abbc8a7b399dd9425cd6516dfb499a8d141c684f1119d6ed860b788c7a1d11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0c3e96b2df2cb23dae9e259629c47388e99a30233f1f3686c171bcd95807b0c2
MD5 38c716edde59e1cb203927d7f05151c0
BLAKE2b-256 953c547b4f3d8c9b88bff00276c206941f9d62575319aea6316c1dcae967cf50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5992254b0476e3ff5503621074bdbe9be7d8d3d07b6621a192aef81b5fb2b726
MD5 732b1126f27d0f4f0383da61c5a5d959
BLAKE2b-256 fb86b0848db47b78a8534d9163f176fea607510f9609a5a1ef31e6a8652a708f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a0f9ce18ae4159456fddc76eaf88bed042a82720dc3a3c835591fb50eea51a8a
MD5 dc14efea9f23da01a109fb973411db36
BLAKE2b-256 49f6efa13c382e58f02a4b4ff8060816ecceb3890d016e89b07fda319abe62cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 673952da518d4cba8b33228a643e1de7b4b884fdf9a732e4daf3f9e9878e28cd
MD5 ff4f560aa02addc0b0b6c5bab81e42f6
BLAKE2b-256 a54edefc9d3db939d01bab722857f4b241d718f704ff61f4bb925a934c86c546

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c568a2a5185c0be97d89656b58871f8c562a4e477e88f6e2012cfb6f7fa6536a
MD5 e95d05f96d51ed018c71cc33174314ae
BLAKE2b-256 1773ce61fb358f6997d3b2ec5fece90ec7b611db63765eee485d9d751bcca9d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 263ebfea475f7429a922f4253b9ba05a5034b9cf08361616ade2f155770e1930
MD5 a68ac65b3b4537d4c8f55740626f5076
BLAKE2b-256 21bc7b463d7fb41c359c334f468b5e7d5d8e3133f782e1c6bf0d332ee4dc656b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2631514b842009bffc2b8c08c75bbd0294c13d6ac8228b8dbea9e4698fdd625d
MD5 6fcee6fa09d31b8ba9d51b06b207ac1b
BLAKE2b-256 d2ca256172ab1aa8548255846e8eaefe5b7675285079eac90de2b64badab9cff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9df202703b0ad72ebb6fa0684b111757f8277c07732d2d861e3949432998e678
MD5 c9d3019c2b8f8ac97fe276cd097939f7
BLAKE2b-256 cca9e9567035ff82eb227a9d06a7fbf2e025661e61db2b0670d8cdcf83d2ead1

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.15-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.15-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 eaad7415a9b0a7051e340cf8de0242da932445f08d74df0a37487657b4f6e143
MD5 e1f11b177ee4b9ada1954e5434921cc1
BLAKE2b-256 ee1d9b08a49251a3265394a5484453feb76e694505b25a67fc9ff45912fd7b34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4905e8ab3068501388f5d7aa025bfbc512b702d204b5d6a58ef6833018898447
MD5 fcd14cf3ff598d63c3ff4e833b8dd205
BLAKE2b-256 6f5470c09a89be62209a0dd01cf62b49a46930af6eef144f4d934ab87846102a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c34f900de86c8d53115b1864047c3c35806fff36829125dbc530d94966aac3cf
MD5 aaf85b3108d4208fd958ca5d549714e8
BLAKE2b-256 60e5401722914c3f3c2e832336b53a0b4d2fa46f57f2d81678444b6d0696eb0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1b2ad59c37e89d141881378770f406da823f958d478875db9f6fa8c74d4e2756
MD5 5341cbf4d969394c9581a4745381636b
BLAKE2b-256 5a7dc3c584d7e71a1140ccbde659bfafb7881a323f516e1bc4c054eaf732e1f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dddcf6acd901cd709634744d6731189941c9330b6f7f9330c082ee6d793aa951
MD5 7a121d206778c8bbca87ec0c9d048113
BLAKE2b-256 531fcacc5f2e575bd7eed05f9a574f735874a9a94570abf178aaea131fd47a74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 23908e5cb9e33272a3322357087b6174d077abcefb48bb3c69d37ba85ba594c8
MD5 6b82622ee994cd921a24a2c9e06cf0c2
BLAKE2b-256 5a23a39f0e777f6902cc7c1ae6dd913531cbbea8665893f5885e885a63aa1187

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 db86aad65d3f33e70382540bca1f38b091e010ffc172924046b9e9cf6b165c56
MD5 961f8720e740b052050d154048443270
BLAKE2b-256 11852ffb0efc008d783a5fe96004a12b36a9802483a215a554f9b7cf38efbdec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1bdcf8facf7dbcc7ec72635265d3f5aa892487f7c7f33af98db880d603f508de
MD5 053bd09036b2cb542d0d41f96e91c7a0
BLAKE2b-256 c6bcf4ba3645e7e93f0a7c2011303436399e8e922d35e70bd2905a8c31f68973

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4d8326cc47a99055098ae8dbd9e8e82706f5822dcd7d213cbe646d9e303b8026
MD5 00596dc20e7a15000334bd99e8bf308d
BLAKE2b-256 fc53531f0fd0dcd19c3c5f1654f6665b39dca9ad7ce16f038d510249d1a0919f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6438e7ab30aadf91d1a8620846f1a6ee6f03e2fdf5d02d64530b6afe5b7d8838
MD5 5833829072e8d3fcb23703132cbe6602
BLAKE2b-256 848465e8c0ac7cc0105a6e9e3611cfa890de09a07040b5f45b90884c371cf500

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4fbaec3c85f6309ad59df788ee17364b5a5fbbec587387f7e0a7df7800698805
MD5 4f5060e318106de5d141f1d9cd7b43d5
BLAKE2b-256 333aeaf11978141991b2b66901e4bf2eaa93590b908f4568dd5b09a5542655da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cc9beb5c4a827dbf57c66ffb9dbe4bbf9da55974243cbbaa21ed9efc22cb22e6
MD5 402d1f82c85b5172728d64d32550baf8
BLAKE2b-256 b6b1e20f09f25c9c20e5e03ab47656e94b8dbdb87948d40c81ecaa4057b67eaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 82186962b7b60372c7d7016d3f290c1fa31cdc317aaa01e9dff1ed47b5ceb52c
MD5 6502a45c5e0a4f180036b11c829b9fc0
BLAKE2b-256 761bd154f10da869d3317d5d033fcac893600430086d93329177aec98db69959

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 24187c4d3581b4a4cd07da5bbf524ae36488eb17313469604b6be50db6f95454
MD5 0f107bd37444c37933a88deb1cfe0554
BLAKE2b-256 f915dba8637bb85af12213e26d848cd657d7403ecf78b4d4cbf4ac9f3c1636cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2c1417b6bd9700088df2f02685fbd6958666862cbd71785921647c9ca3a211d7
MD5 48c676926e4ec9e95a409b1b561c7f06
BLAKE2b-256 7b391e56092621200203e59466c3c4905d4e89e09d6cb404aae23243208b816c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2159441e5352c004605c4ab80a7f65229ab0273cbf650fe51a4da8474f0d924a
MD5 be3083008141012deee0511298437d83
BLAKE2b-256 2602879c7c8b1518968acbb6a3de7c5ee08e337c1a225e41298fa02a4957d290

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e47d4f05769ec2f761fdde26f767f8ca1a021e5890d59d1ae2f7f040850b515d
MD5 6a6693a3e82cfe8effe3ead4e5324771
BLAKE2b-256 bf430b035b48aa3ac10d062968598a06574935b3ad8c913fb518bbc3370402d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 64f5e41e6c7454e631df0def7cee70b9cca72e96c1f9a428dfbf9e915a476648
MD5 e6a2a1511a27c4d6aea220e2c8d57d04
BLAKE2b-256 adc9a83ac5ecbee6f013c62694c016762f82ba4fab401d02df73e7b1452593e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 64e14c5dc8d8064d0a3d6c0a60b2957a42ff16f286953ca87fd39ea5192fdb29
MD5 78adbca878e5a6ea793cde2ce34986a0
BLAKE2b-256 ccd5d267d2f16f050189827c606237d68ef24fa0fd3cb66573e360cb45ca2b60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1950f6a8cca490c045151d9fca67edcb073458c56be5d8d914c97f8157d682de
MD5 3cab36ca11f723707c5b2957abcc2124
BLAKE2b-256 48f6ae89050ae19571748a220c490562337ede6bfb274e4339383f05db3a5b0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 86e0502b4d66abd8a8e8b817f1f58d7ca152946ff98eebcc0e151ddf6225eb9d
MD5 2adbc68aa484ede35394c968198e90ab
BLAKE2b-256 08d2817e26016e3869368b808eff49917ecb27f006e2dde2308abffd778801be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d5bee79cc3938ae4a61c886ac4618e29f3ea2e3318329ddeb0c56583c1cceb47
MD5 32c92fbe4389040b99309884c04554dd
BLAKE2b-256 bd59eff2f8efe8ff8cb9235e82165b85f150becf6a7e8943e22d5fb8b55d57da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d9b9e7297b5ed68837d3e4b089e35d229174cd28b01a9f0fd5420c2bdcfa2c1c
MD5 ccd0e33ceed8ce1037ccdd759fb6306b
BLAKE2b-256 0b5eb3628b4e84e9d171775292d31f6951f053829be18e81241fd31c1b35269c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1772c16604613b272a47124a8daf6d4dd4a13ed1476b04b5b753c4c47fc8de0f
MD5 e614e21677e9d2bdf50b98a69fe5418c
BLAKE2b-256 6e7a090148d2b5979c90a7db22b942ed499a95a7e7ec19125c96dab750f58486

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0b8a427b0f58db58949dd4c96f5364240db1736c9fb01836070735bed66c0fd3
MD5 239d199206b3028ecfb293fca96588eb
BLAKE2b-256 206757ce270c1128fb2a69ee112dbb6dfdec26685fabf8202fa502154a4999de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2badf9e733a90866c4ec7510fad53a0d841a2cfe6f5ebdcafefa6a3c92358070
MD5 195465d839b5540e03478e6ae9abb035
BLAKE2b-256 3e3afaedc441028c635e7ef0110394be0f5322206252317bc1475a71686996cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c5b80caef09ed18e94fc4451b0f0da1bc6f256e3245c7fba68c394df854ec1f5
MD5 94d8b0407148dfe7a47bbf6343345931
BLAKE2b-256 2043558cbae9fb70fd8f4481871ef2732dbd3f407cb7d86351b09652fe318fe7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 08edad783f26363c9b277f6f5e5f24bd422a07eeea87964f63bea40beee15ac8
MD5 821b2fd77f02143f8b46a9e37bd40539
BLAKE2b-256 2e6d7b7dab2492073387a63a6c2d14c4c1f35ba1dcd9615c63cb76bf219dacfd

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.15-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3e0a079c7216c078a0a4515b1c82ecdc36d7c556be38cc2e948a198f2e921bed
MD5 f2fc52f6efb2049809977e46690d8f97
BLAKE2b-256 04d46dbdb868438e14ae59a3fd4b545d644b028627b5b333d6559c0838483af1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51871560eab539c99a1e342758f819930d0fabd8571342352c5474e99c3931c0
MD5 01b79b4d59ce5c71aff3271535f5912f
BLAKE2b-256 789efd601abc2218e62217a27f8d1c5a228af8a81d7251deec5962c7056002f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a0842c3ae365ea4d40ed7156075e5c4b78d10b599305d089cb76e6bc23c8d232
MD5 97b5ab22d24ea375b52b7e247760551a
BLAKE2b-256 3f1b830e66ddb49e0f61a801a9667f29b9ef856684c4f97e9d5584942b72a820

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f59cb8638326c12143bbae78621df97929863e7e25ac3b290389e674e32ad924
MD5 16cba63805a51567de3e028915e2bf03
BLAKE2b-256 6b8073d5320d52a660b5285561f862b66af81c409a97bb774afbf33d336854f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7e88967eadfe5d273eae65578478b25b851cf48a04e5d92e1b235d2f333356d1
MD5 24d701c6a47fb4cc53028c955946ee88
BLAKE2b-256 8e319d80cfffb62faa42d39208f55cdb76834e664ef75ee4378e9f917d3271a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22b1cbdd21123868f96e7ba70d8bf82d6b005fb3275151d346700cd4e8625153
MD5 3eb7666f30c3254d86423ec31940422e
BLAKE2b-256 ac8555ec1b12e6329979522aa44ee0fc769b06ecc50edf96ec60abe3d1d678a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c93c9923c8d6ff2d9ec43875ab9f8a76f9e68f05070f30f1aa5a4fd578131f2a
MD5 826ed8fdd9ffacf2dd8ab8804746e753
BLAKE2b-256 7442a3f39f931bbf2f68a14d73d3e512c9b319fd5226c0cea9fb937a3d40a583

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f111c820f81d2aaa2c840fe80c86a4138d266d0c02f676bfb061f23c805d2b72
MD5 1217086196fb2982646cefad90c4b55b
BLAKE2b-256 268f9e19593fd301cbe8c4a389d84b9d5438a0f28e9538596dd3d846ed6ee936

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 44f880f430a93e0b80c863313395fd9777af1ea9617598e41c34035708669a68
MD5 ed5a4dcf4fefeb5165d9a1345ce6a6a6
BLAKE2b-256 a56194dc87719d147a3e35fbd79e89114e77cfee525427612ea29a882dec1c86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d44e7f4a27049d127198a63499cd009fa5409e83a081bcdc27fa7d2deede8b6
MD5 7e9c96076626b60d7b62b417a2dfea97
BLAKE2b-256 998e2ee7c8f010ad5a1863617c78dcc827621300be45f7ea6d926e4f8ca7ec7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1c796690e18f710fff47d68104a945ea6274b4a9e13a85c28ce6d78add3fb660
MD5 28ba71650c33525bcf724f293184ed81
BLAKE2b-256 60d288e3584f21c376b72bb624d5561c631c232013f726a8514807cf7ad957be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0ad0c7338489f412e3dd9d331493fe1e7b9fc90e3c0a9d85d85f6be3dfdd22a2
MD5 b37d12f15597b3ed82d6e512eb83850d
BLAKE2b-256 247e9bcb0a76147422f795c4ac33acdc4b3eabf9e08007cd1184a274cf38f3fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 69d2da858c63031c5f14827b1f08998b28a76d4e629e4c81135e9f13313a4be5
MD5 876b375f399099ae2aae820a12f32bb7
BLAKE2b-256 b6d52c253fb84748c6d9db3fc979f9eda85e10ad5b56be2b508a3957cdc4b0a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 62c6f2ab0d0516a083159b1ed20460348af7c3ba6074b6b7d3a1cc745479812f
MD5 7a8936f27615fd215d417f31fff210d9
BLAKE2b-256 86ac183af9ffe30bc20705504ee6b798e483e92a89b2216096d3c1eae75b96e1

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.15-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a76afcec21f6a2961d3812355d659cc2b4252d7adf1f21f5dc56da25ea5a1478
MD5 8d017c557dc166ce5898467b4848813f
BLAKE2b-256 49596ff6ae71810ae1dd60c5706aea7db64bd8a018afe028de512fc156a43882

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f14ec68f588f445ea37894ce67b4354afb166e23a59d299dbc6d21e3811794f2
MD5 3b65ee9923bd306afae575bebcc26eaa
BLAKE2b-256 01c596373b75a961b3d0fd7b3901a8c3f3e0ab407c7b2d428ec35aba89a6da20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 382efa8552633412f7c84c7b9b61a2935a531fac9f681f3eedcd9c74bdeaba5c
MD5 7d4422d2d05278bcc94e646de6128fc7
BLAKE2b-256 d1925d70a1226ccce355f88fa296caeda3b71cc3087b8437966edb17a3728ea3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d1adc3e81f4e7e817a2d2dc25b0cf355d2800b083e11eec3cace99a6930b9b26
MD5 91de895e3b6076f554c477bb37fa67d0
BLAKE2b-256 b739d37cf493e98fe6643b9915d86ed2292c4191c9376511cce0b78470ae1d10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 37fa44df45dabc3ae1452242c925f13b0b41d6a17bea91bdc993abba4f5755a8
MD5 db33fb9ca21cd0dae41479cd5b03a706
BLAKE2b-256 58f6ef63a900dbe2f1d7e91e06c7698fcdfba0481f8a367ce4c83774a788aaf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16def19da7557606e88115477bb7e460c2f92f4f1a831d53b8b26384ec1d0b72
MD5 6720471c20752c5f3ff50de5b825828e
BLAKE2b-256 8108aebb459abea61bbd7c9b7339222d6befe1247e35d9d0d8481a8146008612

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1250803b67daf5757bfb1e19f04a28b4f3662ed0c8a7f1b4a3895e0c425e6add
MD5 36c017858edfd8058454f9876c93698b
BLAKE2b-256 e5fc894c84e07293e15b588e52b4011233ed6fce2fae92f56151cf78f1adb96d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5ab7dc7657a5cb2aeb8c92992d0eaee6b404ff006c2421aa5057345656d04806
MD5 69695c93dd20efece11c7d1ac56514a7
BLAKE2b-256 9bb46d3df331254e022ad5bb12085af5094970694693d7800a2c2f356225b3b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 01be76c5a119aa2503034b4a91ab720660ab3d34236f3e44825f4a7da2544175
MD5 0ee94e28f2f95face468e980ca06a235
BLAKE2b-256 8ea77591ffcf34c6ccea29047fe415ff7a6c4927fbcc26802fd1bb57c15c0c0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0dc28ecb156d92f689c2f2f609fd63e532091ed606b4c7a8893ecf40f47bd04
MD5 dc763eeca090e9d08ab415c428511e41
BLAKE2b-256 5f96329f3c9231ff0de07378544cdf1db9e9bc37f0edc4a108e7249e5caf4db6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3f67012030a1a11b406373b2edd733e46700094bd955602f647918523411d801
MD5 95d9f8fa645f1105f13f43dd34b2e2d1
BLAKE2b-256 44e52952b13b892b514aad88ec03c0b78c22b45795f4138a750066d4b0783d28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6e06fd7e7384b138fc2598dd3fd686e6ac98772256361ae931705432a5844d27
MD5 57814e168a7bfccafdfeafe6b7061434
BLAKE2b-256 0afb26de71ee340332fc7cb4b45e4d1754df3a241dba18d1ba42f2376cf1dac9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e04c756e74606792f0c55ed77662263f4cbd3aae28522c449771100ae47396b6
MD5 e5fd7d874d9dc293d67be22cf4ec3251
BLAKE2b-256 8ac55b76e4bffc862213158ec104a6c985d020053a60e4167d2215c6f1320593

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dba43a27b338ff64a9d3935a78b1f1e38c4c1ad74f8025ad628299d3d639c551
MD5 786dc9bb89125353e3480f70e2e1438f
BLAKE2b-256 fe34ff96264b951e0542ed2515118c965f5fc556059da7d57acbb018e4672f7f

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.15-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7f83547fb1ae31c95e15429f97ff48c1b961836ef7594a9f9133e470ec49d334
MD5 623186579f859f697e3aeaa0a104c19c
BLAKE2b-256 86f4683eaf8750c1afb75f2e9aae963bc4d39a385169dd87c668f410a2b4a078

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e85bc88a6eb9b84024ce07e9802fb6c5591a0f2492e2cf6833fef9ccf037c619
MD5 165b6f3c09017444f51f0300e6f6dcf1
BLAKE2b-256 1e4e0199f87eaaaabdc692ce28c0a778617055851510dd7caa3534a1e3e718e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3b320561a7f090d0267f1336782a1428178bfa36dc506f74479e5e28609d2b4d
MD5 42c991239d7ca4c08df82eb26db75716
BLAKE2b-256 f904c46ab51375c3befeaa11af1d696373367721c48a46edf79fb59789ed0c82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 51801646b4ea7475d954dea4980492776ef7d41d6f17eace837af278198810a1
MD5 0c635a9c5856cd3ddfa5923bc55c3a8c
BLAKE2b-256 9dbce0015b8dbb7f67db0fc9d403bc06cbf1642ed8bf1c6bcff660adf79b4894

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f723ac8ae385f4c25266c880b8d672ac27ea244bce0205228010ca159b09c161
MD5 6ba40ce7e32d3852c3c1717e35c311fb
BLAKE2b-256 e1a822f53f236ebac5f5420139a327ad72558a861ff480388527eb50795d65ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c4cd0f47f526fae601f05af2ae64dd914ebef3a124c250da0fd2d856ff40bfd4
MD5 b0e8525a6eed4f638865d5b101f9d676
BLAKE2b-256 1cb38dada188df4518f2a7df2b6fc773fec08372d03c2f3bc61196fd84443173

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3484f20c224ef217b1eebc0cc3cd288e1e75b3891cfcff12944f049ed99d4b29
MD5 44c908ccdb7c2fe07f3d7e517c47bbf2
BLAKE2b-256 23f0de4ada94fcc7a1939cf3c04ba37f8f4c94503ba7a420ead2bb93b3d9133a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 905bec1735c5499d275319e28463643f4e693b7c589acd4e08d5cfad4fe2af46
MD5 9a00f2595f4585e0d38bfa9849bfd96b
BLAKE2b-256 b5b5f1402377cbe0ce67e241ef3efa3baa6c8d1ed79973fefad087b2e40346d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4d41a8f3f122a9a272450efa50c7028359f63552c5fdc78ffabd25138418448c
MD5 564e56c9288c7bc4ebfca3aa03b82483
BLAKE2b-256 84907d2c824d0956d31cec73e33bb43f45039a2dbd550bc960dce1f771e2f271

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f85849d4c8314a6bb04d12a67ea7738cf0e6e6ed753869f2865dd23c80952b77
MD5 0705cb3f10d95b41fc36f64dd117126a
BLAKE2b-256 dfdbaf1364d37eb8918337435ae2ed282450d833064b6631bf61d03a088af99a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9aefefa9e09f7b958f8f3bdded92d0b0d8c6afd788afed8f38c2de7747a4133f
MD5 3d111759f8651e0adbce8989a0010375
BLAKE2b-256 298d8fd260b359a74611901129c261c510153b85be13963f69da75a1b5092f56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 67786529095c97199fff235330a670a741474ccb65ab69021adf7e3077912f95
MD5 771fc65ba1d2a8c65844db3b0bd7b82c
BLAKE2b-256 1e0234ea4e4fb7637df17e95aaca34e6f3f97266e71b74e759d31a53f70e0e08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b200700aeb2ab029ede74d18c324fb888b0dbf4c221b403948dc82aef0d565e8
MD5 b584f1fbc6f574139db106d4453f2a93
BLAKE2b-256 b75e1bab4e81e597a5a5d60ef9c114f652b31451bf9b201f0ae7538a8916350f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c1861cbadb6bf52eda9356435607d2cc67a6e999315dcda2202dd258810dc63
MD5 d0d30577a5c6b835f3aee6a404048577
BLAKE2b-256 95ba6cab623c30a32c5fa0c69df2cc356e040aaa4456ca04656ef7edf87071e3

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.15-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7d418597e7bfa774fcaacfa9fdda68d5f637e6d4787924de4f54570b4c6d457d
MD5 076cc79c39c67716bbbe4929cf20d22c
BLAKE2b-256 5c93818e0342314dad7012809528fbf301d2fa41ee23c37263a4941ba0785872

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5b3c3218d02894629ea25c1886090ef74e7a4a0396d539247ed7a741f1f43f4c
MD5 7739034c8decd73a5d8aba818c515ad9
BLAKE2b-256 d469231c23f4ca199ac3013dab7b32c8496f20bb8c8244db126b7e1e1618898a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c2f0aba4ca86a325e59f95b33318cdb083d98d64d41123921c12a1ba239831a3
MD5 85e317376c98a7e1d93c32f975cfa25c
BLAKE2b-256 ea44573ac3ebfbcd1722e1f8a16700327445b24f236511ed1f51e80cb11a9a5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f844e4ae422735e24039297d4d732fad315fd2edda8e720cf037d334e557c6fd
MD5 531bce488afe54227faaa8888d6b3bb7
BLAKE2b-256 dcddde1e5ee60d40efa40895fd119b8e515741c674f5fe90f555947771743aa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 32aba4ed99e5b18f1c4d412fbafe3978ed41f748bfa84276a67b9afb04ff0430
MD5 b6e02ae656d33c6782c5a1371a908c07
BLAKE2b-256 53a910e8c31ab5dd967433993a0dd5f8ce99097f9738bc48942fc1975c27857c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 370dd65124bed4d73ddc1ecf0f9784d1074865c7474e28708ebcd39e6d286457
MD5 11b68c0a067e673af26d346b72bc4ebe
BLAKE2b-256 8079fa35a777a04e84e0ce2336e3bd148cf77347e505583e93f1c5bf7368b20a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 da97df8b2bf2efc392e8f8d690adaa5cfa443f747e4ca45f7e464fef3ef495e9
MD5 1c6c4b25bf887afcba2f7e9ace53a563
BLAKE2b-256 3b9db8b79cadd590029b1efac7d9ab97da69bcfa9bf7cfdaad384cdd0f83342e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f1cd6a6a498f0db6dd9a5f4232c788260e4da6f50aaf420dfa7e5a5ca3ce2f9
MD5 0c414cb52f87d6859e77a08a279944de
BLAKE2b-256 0f3c7e938f4c56f4d322de2528a37933e83b310ef2e32b1a2a1b21f7b5ac673b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7a841abc13095a223f88f9c651a0bf499a3e637773feb8f224e24768c13de31d
MD5 cb898c47e515d88b78f4fa3d803deefb
BLAKE2b-256 e7b1b0e2773f75b085ca3defc79190f6113f143131fc26ab491d0287e38039a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b5eb897e93591c6bf401ae9f5281522d04ed3817b1506a5e01bda8682da43ede
MD5 b233a1063d985a84fc145ca1cd8161f9
BLAKE2b-256 f01cb7008c0fa999e4c23779fd9de63b2b8e0f302fd4bb600cd68689cd6fbf7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 83ae1113e11adb39b0fd455c094c58b19e70ae6dd38a1472fc7afb607609a10c
MD5 f534859d3c0a4a3a183cb5a993f8c6f0
BLAKE2b-256 2fbdba2a09acbb63e48db543feec00dc9fd90341dc9e0ddd849248785c72a08a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86e34467375feba56a34cf1ba01b5a24f11a34fd600a42cde05f549a3f3a9b15
MD5 266aebfdcdd5880b8cb8bd0eafa18326
BLAKE2b-256 d851a8aed374b20d5cecf8b7485cc09b243d26f64072550dd2d5c2d15706f98e

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.15-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b2a000f7fdd6fe9b2325db9d3a8d3b8d7aaaa52a00c047efafaf4a536ffe9cd8
MD5 5ff19082ffbfb057601fd290589af020
BLAKE2b-256 65a5223b5b6dcd84e298f6ebaa3d23e562c8cd717e72f87aa0f9eb68e8e8e349

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 be38d098d0d72d2e529d1aaf5a2142fae0452652d422744c4682d96c3b170afc
MD5 f49913fa8d91bfe4fb5abd6c648367ee
BLAKE2b-256 de108017ef25847eea8cbc1fd7d6aaba314b4e517b37fdf86ee581477fd19617

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6093ba6f01226b5e9a8b6627c4b08ebf485cbf49dc8edfcebe66fcb61bab4553
MD5 95b623b94bc2ade822396c4802c7ac1f
BLAKE2b-256 07400fbee20f5df82bc4caf5613b798d1bbf74a5db8c87c625ce9234b0f5b943

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ff4da34f9b3903cb59a952054d91b672b04383747f6ea290cc6db1e901c3c33
MD5 94fbef0bbfccb87299b3b625754d022e
BLAKE2b-256 1a5434dc80cbbd54047a68ffb7d658ffb5e5ad6e562a1560d9082da3ae90fa79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6ded4258f302fe6c1ce63c08ae25522d1cea8801475b972348d0c242345fbae4
MD5 dc4dd53508f69407a55c35bd318c59f1
BLAKE2b-256 d86986cbe7c1141e0f750e369618bd0d066f7e32ff1fbfeeae64a55da2f6a5dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3890c8039f12700c00ccf355ba01bed5466fdc192cedf3b50cb62a4f1aa9401b
MD5 6d7e86e6cc9f2b6d4c344d4a3b843b40
BLAKE2b-256 dcfecdba74c1c5b334e207c85cd441004c2db5f816409efd8369719d8f6c1a20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8efe22eabcb610ed4385d53923147a6ce86318eb3b6d904782972bda3a574f5b
MD5 51b829b6030c0e6a1fdda1178b5d0657
BLAKE2b-256 b6d619ec796e2c75577cb7d0b33059143a85fef30fed3ab6161ca3c34025557b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d817c88f5f2525951f0d3c04f8365c2e8dca182eb36d6046185127581a4ea10
MD5 56381439eb227c2ca3345643b74dc4e8
BLAKE2b-256 9e53aeb306de70447e9278dc7db551b5a3e65847104f1830b697b7a08067fe0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6fc428086e3fffa4e5839251fc6f81b6469cb5d7e99d2c152117ee596ee8446c
MD5 c317de6b8f37a5f749710e590eb632fa
BLAKE2b-256 15d8765c18dc208d0edf4b557c54d552438f1d9a41844d35f621ba95d2a94ad4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3633dfc1cb084680d97824208dc93aaf4cd1781d6a4a0e1a8a1d04a971ce6617
MD5 964f5a400d367f66f4f6efdd541fca2f
BLAKE2b-256 7243dc089c9c1d30c881a284b2e089a4afbef5aeba1724dbf5292dce9b0a1f6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 22e8bf45cd11a3ec8ebde465361d923b2c589c4d2ad3d8e61884d074ba2982fd
MD5 93bd8737b944721d7a718b4a8e963946
BLAKE2b-256 cad84a92fbf70edf2abcc44e1166c7dccaad6121fecd3710178c9331684d7e9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 490fa338a2078df50e6f62949635fe42b7c462b08aab3c7c1a2b79f6c4b1e48c
MD5 441530e90973c8048a0097ab2b69c672
BLAKE2b-256 17774495a523f7912e11f6fc4eba4c8e6180c82542961de381e78d7b68e596bd

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.15-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.15-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ef28ed84f6329d22921a1e8f4e143711103ab42b93df0e99806a2622f0abf2d4
MD5 6e3e4a865c1b99149e924c8e010faab8
BLAKE2b-256 4383d30d81df6fdecad3af9c66bc4defa039782910157be73ce1e7294808c67c

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