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.45.tar.gz (486.2 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.45-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.45-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.45-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.45-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.45-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

attoworld-2025.0.45-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.45-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.45-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

attoworld-2025.0.45-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.45-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.45-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.45-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.45-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.45-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.45-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.45-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.45-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.45-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.45-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.45-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.45-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.45-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.45-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.45-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.45-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.45-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.45-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

attoworld-2025.0.45-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

attoworld-2025.0.45-cp313-cp313t-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

attoworld-2025.0.45-cp313-cp313t-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

attoworld-2025.0.45-cp313-cp313t-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.45-cp313-cp313t-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

attoworld-2025.0.45-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

attoworld-2025.0.45-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.45-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.45-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

attoworld-2025.0.45-cp313-cp313-win_amd64.whl (998.7 kB view details)

Uploaded CPython 3.13Windows x86-64

attoworld-2025.0.45-cp313-cp313-win32.whl (814.0 kB view details)

Uploaded CPython 3.13Windows x86

attoworld-2025.0.45-cp313-cp313-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

attoworld-2025.0.45-cp313-cp313-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

attoworld-2025.0.45-cp313-cp313-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.45-cp313-cp313-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

attoworld-2025.0.45-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

attoworld-2025.0.45-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

attoworld-2025.0.45-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.45-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

attoworld-2025.0.45-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.45-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

attoworld-2025.0.45-cp313-cp313-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

attoworld-2025.0.45-cp313-cp313-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

attoworld-2025.0.45-cp312-cp312-win_amd64.whl (999.3 kB view details)

Uploaded CPython 3.12Windows x86-64

attoworld-2025.0.45-cp312-cp312-win32.whl (814.0 kB view details)

Uploaded CPython 3.12Windows x86

attoworld-2025.0.45-cp312-cp312-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

attoworld-2025.0.45-cp312-cp312-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

attoworld-2025.0.45-cp312-cp312-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.45-cp312-cp312-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

attoworld-2025.0.45-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

attoworld-2025.0.45-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

attoworld-2025.0.45-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.45-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

attoworld-2025.0.45-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.45-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

attoworld-2025.0.45-cp312-cp312-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

attoworld-2025.0.45-cp312-cp312-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

attoworld-2025.0.45-cp311-cp311-win_amd64.whl (998.0 kB view details)

Uploaded CPython 3.11Windows x86-64

attoworld-2025.0.45-cp311-cp311-win32.whl (814.1 kB view details)

Uploaded CPython 3.11Windows x86

attoworld-2025.0.45-cp311-cp311-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

attoworld-2025.0.45-cp311-cp311-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

attoworld-2025.0.45-cp311-cp311-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.45-cp311-cp311-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

attoworld-2025.0.45-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

attoworld-2025.0.45-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

attoworld-2025.0.45-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.45-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

attoworld-2025.0.45-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.45-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

attoworld-2025.0.45-cp311-cp311-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

attoworld-2025.0.45-cp311-cp311-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

attoworld-2025.0.45-cp310-cp310-win_amd64.whl (997.9 kB view details)

Uploaded CPython 3.10Windows x86-64

attoworld-2025.0.45-cp310-cp310-win32.whl (813.8 kB view details)

Uploaded CPython 3.10Windows x86

attoworld-2025.0.45-cp310-cp310-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

attoworld-2025.0.45-cp310-cp310-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

attoworld-2025.0.45-cp310-cp310-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.45-cp310-cp310-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

attoworld-2025.0.45-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

attoworld-2025.0.45-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

attoworld-2025.0.45-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.45-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

attoworld-2025.0.45-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.45-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

attoworld-2025.0.45-cp39-cp39-win_amd64.whl (998.6 kB view details)

Uploaded CPython 3.9Windows x86-64

attoworld-2025.0.45-cp39-cp39-win32.whl (814.4 kB view details)

Uploaded CPython 3.9Windows x86

attoworld-2025.0.45-cp39-cp39-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

attoworld-2025.0.45-cp39-cp39-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

attoworld-2025.0.45-cp39-cp39-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.45-cp39-cp39-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

attoworld-2025.0.45-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

attoworld-2025.0.45-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

attoworld-2025.0.45-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.45-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

attoworld-2025.0.45-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.45-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

attoworld-2025.0.45-cp38-cp38-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

attoworld-2025.0.45-cp38-cp38-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

attoworld-2025.0.45-cp38-cp38-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.45-cp38-cp38-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

attoworld-2025.0.45-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

attoworld-2025.0.45-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

attoworld-2025.0.45-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.45-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

attoworld-2025.0.45-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.45-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for attoworld-2025.0.45.tar.gz
Algorithm Hash digest
SHA256 d9c7e442707700479a706174870be51a2fb6ab61b84a42a4f8840b12f3fd6c12
MD5 ebea8529ab6e4776bcb0282dd99e8ecd
BLAKE2b-256 cc45cc4fa2aee8559e43490b45b73876d4a8362ae43364c7d6acf23214ab3ac0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b50e469372e4d1fd8adbf0d2729edd54a3e511e801ff1bf0a329f27ab88f34bb
MD5 0f5b880c79d1c5b1227420d144cedda6
BLAKE2b-256 17a223e2dc56dfd1f171973ff5644cce5ea296a0b4ad758f3070a85926e14a4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 abd85d02bf2c1a89942b24f1c00c0fcc558c0bfcbc472a88677cd365339f2ac7
MD5 7eb7c6e16dc0a41b0da80b027b6a0c55
BLAKE2b-256 0776d73703d297ecedbc77a252447e55587cf3e865855a72378b6c68c695a521

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c45afd81e4f9fee7f34306a15b8a817d8f39c77200f3185725263021349e231d
MD5 4c1f88dfd03ddfe371f01cd09da29b48
BLAKE2b-256 d71e3fd8fa1c2af1cb55c58d19e7918c384ba2ae36bcbe11344608ce462d72e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cabc32ea6d3cb2413542e6023475dc4c5e78332580c002b7cab348ed10e8e833
MD5 ebfd15627e5e151807f7fdcc429941ec
BLAKE2b-256 006b596273004367a8089b9cc3df7dff0382d1658f81d15dbcf58bbd7fad009f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1309adc688390a77d4416a4b341bdec21f2e2fca47ee122cc40ad2eb09f3e432
MD5 d98f993b37cf157c4c17f791a60ce1de
BLAKE2b-256 2934325557745e22fb733e6ca74cad909d46577875c24abf7c51321cca2eca5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 922d433cdca1c4065e3ae2a45ae5e6c4838007ffd0bb362f9e017b27a80ea818
MD5 681eebb6d07bbdd4d539f4239cf893d5
BLAKE2b-256 f6b3f3bf64f09a5783e6e9e9c308f8ff4df21571024d52b8beaf606ab6dc3ead

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 553eb026485bfe736aafb30ab502e4f390aa682d50ca07fca13778adc54ee3c2
MD5 daa7fcd7f4122e0873bdbf70b299e3db
BLAKE2b-256 e984efeacddb1406cf049ee99435442bbc58a58eb79f0e5efc13fd0479868341

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3caf1cf1a8c128a7d811f4d6da813a82bbcdb16282f5207d5f291d417b243c17
MD5 a9c9fcfa579cbe0c2e71cc8bacd048eb
BLAKE2b-256 2097f6b4355f9ac7538fde9d6e3ce33e8b8325c752d8aacb6a8d841366f59062

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2d888879d269980f4dcb6c322af12df5fcf1d01e98ce5299493e3ea94589d056
MD5 97e779134feacdc9a3c95cd2f876bdfb
BLAKE2b-256 8c0dc2ad02eeb92f44f8b888e38c6678f8ac8690ce93b22bb42de9c3839a4bfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d6d96801a79f0a6cfba483968f0847acd2bf7a33f93295727c3cd8c3e1532a74
MD5 598167906fa19a720839808e41a1837f
BLAKE2b-256 7fd7f82bba1a28b9f05d767d9ff7047b6eae2eeb5d448f9124acb9979d76abc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a9a0598301676931be6b4ee964f3fa569dbc88707dfd3a94786f5543082de5df
MD5 e38bd57b37cca3b4fd41a376f87b8fa7
BLAKE2b-256 26a2829bf784938200454d3ad76172981ba4eee544c373e1de2ae48c2db65c08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c1712ef8524b11c4939dcdcc5d2ae23be5971f467e8f63bf9310fb51d6ae2ecb
MD5 99a639f2f8f2264c74c162d7239efa08
BLAKE2b-256 a0e180982166ab2e9c80ba4d83f2736e979fde0cd1afc015b3b41275c1326d81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c4d016bcadd70518542ad151c4db0dfd8d3458a9a4b76b0137d27ec76010ac7e
MD5 ac8d74a793adee64794b8d6ea5a85417
BLAKE2b-256 90f6b53025cab3f0801267833570e1cb1e83a346d75b9d787fbd73858b38b6c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b62f6378bf8f37fc4e3fea61f6d13edbd2ce1d1ebc908b07062efcb370f14896
MD5 50f9e6d413e333547192c09170581336
BLAKE2b-256 612b869948b4957c5e474f4f3e960c53886ea36c415c159f1bf68d15854bcffa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9a7a25ec871e7b2474337bb60ee39860a430bdaf9e757b56f2b045d0ae29a0ba
MD5 0e074c371f5d1d69e331cc82ae908a2d
BLAKE2b-256 ea80e8798a18f22756a6459839299d26d5d9676d593ad0c87348baebb6bcc833

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bc7ea010d1e52e13c093ca6f2883b47e700614e08df0ae10f0ec8df7f375f79f
MD5 e548a48c036eeaf12e6bef1a958ad0d5
BLAKE2b-256 6ff509def24e0c9d71d0764e0a6afbd031d9da9fe3c48a74ea0c7b1b5127fa35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4a0e4e6f0f0360546cc82eab51fff57f38458abefc33626372c245b0034296a4
MD5 6ea6a86770d8c2b792e4f67146b01cff
BLAKE2b-256 24efdf6a5a6e8ab515253a3193e3408df0e322cbcb1db5d9ee492b8c837ed5cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7da258df3a9b158903f34c2abe23ae08736393859981cdb16eec9e96c244c714
MD5 115c0d545bdf62173e2d6214d51206ba
BLAKE2b-256 e9b57838c9c6820026d45f364d1a00a2ab9f528d5b58f4183eb9f3b830d7f890

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 93f305b31bb5b459fc916f8f811efb38e9fc494590552b10b2922fa3440af2de
MD5 348511e67a02f0253f799dcd1d02dc83
BLAKE2b-256 99dace5db606bdc7b0e33f664945b8b3b6799e7cd6e43873d61dd9d23877e3d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ef6c11d856e533d54b0c29559075a7f99944910709b9675cc030c76aef71afd6
MD5 c0e42b4bbe71d1ddb43bce895a54b7fb
BLAKE2b-256 4c5b15dd2cae825ca594bb9eaa00e3464c568af2187940642696ab83a0fc1172

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 16f5b5533c97489152cda23af8ae1f668338cdc4af3b0f81bafaaec231955260
MD5 b41a2cf201f3926720898ac6319142c2
BLAKE2b-256 613764c438412c634265e27e1cfdf4a6324e016d029877ca75da59ae554fd249

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0976d73fbb183ea38cc182362df486116042e4418722dd90386433ce367cf557
MD5 7fec1c15965926603382ded84dea9f73
BLAKE2b-256 c586ddb984b0edbf730945157b29f8a25d4e4ca797356bf576ac2064d5c618e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 730cb667165e6e97d32ffeb5386f9348e404444cf8e3577086396600f2a77ac9
MD5 470632cc8beca58f9bb46d7c144b407e
BLAKE2b-256 77dd061d4f7e00b8f144ae8411e55f92ceb0c2d61fae5617b72008671c225c22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f2508caf4cd77aab46cb0516939837290dd4e5d7b942224083f0d3150d5736d6
MD5 f3512da27c2e5de64dfc857ae3ad3d73
BLAKE2b-256 3b2d056dd992ba672664c2528c69f0a98415ec4fd8ce86fa5006952313fa4b39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6d406c8c343fcccd215ab462d05e833e510f0e8de9fbc0a3a7bc4f8ca612123b
MD5 dce6bfce0e006e8d5169c12564914126
BLAKE2b-256 b9d13a513880d82e95120e991e9461c2f76c2cbad42fab6f5b317b5edea77685

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 72a5985d13d963c4febefcf42e84da85c15b092e4ad4432e9f0f293b48c6d55c
MD5 8b6ba85879f533cabebc10cfe6b242c5
BLAKE2b-256 6b6f2f0820bc9648004fc0fbe5e325ba2b72ca5135288cacb9ff6ef152bf1e97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9aa110b1efa5e1eeb428e6a8dbbb71c9ac6af681daee027c847453f7384bde1b
MD5 5eb3fba22265060719a605b6493885e8
BLAKE2b-256 4f58446d32790b0a21ee63dca4752133cf171f5a96a3784ea7b0045c7a81b4fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3bff3f61ee8570f3719dfe772322083b057c961d6903546e78dd769f5194ffd8
MD5 6642f8c38843eaab93c7d2d5dc7357cb
BLAKE2b-256 bf49bc4d6f2aeb7f8475e20b4f85960696ecaed24573f9262b1fb10cb358e9c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ace94e8b673fbe12b13ac74084388378859a785819324618c8a5127206665ac1
MD5 1920466dfef90f4022fdb065de74967b
BLAKE2b-256 2ca58d78f32a24787d4362c9b80867c9b51f78cee8eeca413a12650a46e1deed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c2416baddfdee5729557c3e9ac083c3c3cc9a1e0c70ff6936758586955529f84
MD5 5c3eef999b6ccc0b0a34e1a54b63c944
BLAKE2b-256 e0c21c5ebe93c2ebc914fb6395a73fe600e1ea40f7d9c0016e9724ca03f9cd64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0695cee61a65ff8aa2c4ead93bf21fe47782cd81aeb7d7a3aa7e972638c32d59
MD5 11289f93e1c330ab6f6f1be0c04fb122
BLAKE2b-256 f88d1c3fce7c43015b412cea06a357c9d1df1615bd44c2cc426543a95e8c7452

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 90e4d99ebfbb76d49ecb3408ffc7d96a14bbebd441402cf0c3b770de155ba033
MD5 b03e9cc4ea1624422d8dd4d4a58f8907
BLAKE2b-256 57f6c0fdfbdda6b98ce3cf219216f5d19e286fc86558839ccde36d44a953fe16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 70ef0d4c14ee518d99bce3608f55c746e80831fecefcddda2e12daccf0234b8c
MD5 563f43970df22240272a6d0bafa54cc9
BLAKE2b-256 3b23c15e4736bd1f52d96da55969e9ba90f479d4269d9be77d480a1abf13f71f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cc71d4c6c11b00f338b1905c7e0929df14ac618f1c9294ca5a269f9ce7b479da
MD5 a644d9f0277d2673504460ddbab1d4c0
BLAKE2b-256 10992aaa919016bbf26810713e61c11ff21a5fe8b6fe103471df99a6da9e40c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 561f4cd441d57df6f55e569c4f18b0a6398077865ceeb04fa77ecfa64c5419eb
MD5 8875e0576cda33da52b70ffd79483a32
BLAKE2b-256 854c3025f542eb34228d6cc78665bbd68f45f1320b24cdd68d82c128852b7836

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0943916bd8bcb1e15b497e0d68c115351525ffbb27087031195f5a41d8f3688a
MD5 fd17d3cad60860a5691ccbf6724ff7d5
BLAKE2b-256 cf909c3170c747668939af72fcd4d3d1f342506b515bdccf97a18d37cd64260c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9fb9b1c4ab5382360efb8fedff944d79ac3872414ff13a4a9eeeba4ea39dc67b
MD5 0e17fa6710a7309eb7d13f601e1ef74c
BLAKE2b-256 6db02bb6b63add19ef2422bd7e91864e32ffd7876bf0eeb2129cd71457645804

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 56720c3cb843bb6f30e138a975cf0c7f776dbc16aaebdbb0e4e6d26c32f225e5
MD5 e2bca1e30e14af90efe1953c4ab25861
BLAKE2b-256 c55a44334864429e59d6f57b9880138b06bd4241e8ca7bd300fdb80686e5352c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69dcc0e404abcb89efc39731fb570f886be5d33803e9ec50086860486143750e
MD5 a505adf3b15959b22d242c90d9902d08
BLAKE2b-256 af29b2229d62717d0bedef84c5a7cc13c3cfe9a1de2dae9411fa682ed032bd24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bd7c75109ae6365b893758cb24c1b624944fd86d598ea561fcf2d04a59e0572e
MD5 534f71bb49b16727d6c7236931e11062
BLAKE2b-256 35bcf4999a0f4c01a2aed389a21b7790b5955bbf2e7505dbd4c3e1656dc0577e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bfaa15d0b26a4caa3e6518471d37a4dcbf299fddefdb9070d65ff63033a52bae
MD5 3b249fbbf14a69ae93a8b002772dbcae
BLAKE2b-256 7e7f280d8cdbcf3feacd97034509d6fc294de76c0c75dbe8a4dc2611192cad52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e7b97694678b76720658c34b16e621c0616834403b0c49d835522aba106e9cf
MD5 f448b830839ead4b3f9fca38e6f7c586
BLAKE2b-256 d01cb3074e1657e11bd7bcb194b004be7ec83d78c6b38ae7ff48284a9e8bf7da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba5ec740db8afb993c14986e8fa588605240bd87fd22f567e404e7a94e286ffd
MD5 0bc6b423b76fc47459f589ca3d97b0ee
BLAKE2b-256 6c9eee7be74e7c413f4c0c9fc3ab5d3934df0b1d687273fde5fac49149e5accf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dee1434b091fbfd2c9bce31b3f1aa662ec1de0094575e8e4fee726647f73a8be
MD5 52e60c5f29ee41714a788c55035ae2b0
BLAKE2b-256 0489b5a7547b9bab2e786e1946362185a7b76775e6d049c647935c88aed689cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 af796ba3f2d24d3800b820f379b2753f7ad87146f0f631fb768afeee01296e57
MD5 3a8c21bbbb6e3f5946bf563e99fee0b6
BLAKE2b-256 fb3f0dca813b9b4a8337aee2997b574948cbfcabdbbdad9e6cce27a1fea27ec2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 07e380980d580288d32478fc3e9a008bef47d57d127396aaf9b55a552fb1d3b6
MD5 a5316378ab6ea81783349bddc20d81fb
BLAKE2b-256 4a28d4c68ecef2b31279122295ea8326a341201d75f837a31620363696077469

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d8ede3fda3583340175f968e4bde28c4aa19185e2d02cae8d26b01237205b8a6
MD5 4ed70299567eea9c97753d84017a642c
BLAKE2b-256 dd0559565645d487f6db8a82a638190bf4c00ea5b3a40e8de7c5b7d5f7532d93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5909e17cb301b0020f920404e9b99dda21fa38bd4ca3f3aa9ae76458c7edaefe
MD5 43c6d2f9ab5a1f21ba998e6c431bc2e5
BLAKE2b-256 6edcd2cbe2c8e8bac4d90e12f50f7b3f96b8cbc4ba994ea8ecb30b7fde552fbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68d252067169df6428bca6a8ded798aa4fc13f4ee2707fb269099e80a89ec3b7
MD5 c9befe4ad58094ea498a3b08c446cbb6
BLAKE2b-256 fff54291a0991dc7437ec05aef18bbadd2ae1551a7fffd5e879f8e6e04a8916f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 582f12698941e8eec4aa3065d61df4f994611c10f53c1608039911cc547118de
MD5 ed129b84e7339ac0fb24ded372b3428f
BLAKE2b-256 25ca5cc4ab2cca57d8150cb575eab6f936d21758f9b9844d9363ac55d87a27b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9584d9cd11c87a23849228aa016128a51a06ba5827bc502925190f451520729a
MD5 7182e2047589c42a1d385ad45c78efd1
BLAKE2b-256 1c4afd1500c9ffbdc2f5daf612329801e7ecdaac499fcc968062c7482d09586d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 60f421a4214fea42bb8e145d8f391fc61b8b97ebf5ba8c5f6ada01926394f03f
MD5 db13182a4eafb4e8c79e9460e2de957c
BLAKE2b-256 031efcf0b83fec03c9cedc1b5157c77910c8fe4700929c25a5367eb26251c901

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 923040dd612a0b6bbb4c53271f220c472d6f4d2c1c6c17a83f8192523fd456fd
MD5 9a1664096a6f17558804ca67567dbc01
BLAKE2b-256 3144fbf6c71e3b4d9f0394f4962ac3758c2b96f508832b5064b763c42b06cb75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b2e71c008eb1675adaf9bf70d0167b763896ade35299e28b87cc5ae460e984a4
MD5 d558d0cf5c7f86a3c7edfae1646a4e6d
BLAKE2b-256 d7e357758da4a213bcb4b3d77ae604d968e3a845923039e2a61179f785cb6b52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 25b4970985b1a58e4c003906e49b62012afff89005a321d7b90a1569f1b7a309
MD5 72aab2611c816eacb0aaca43a8269cd3
BLAKE2b-256 bc44cbca09401ec0bcf1e5f420d61e602a1b81719a6082541cef8efccd744237

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 21b746d04817582aaf0a5d615b606487615c8c1a07d5493d2027400e28c71fc0
MD5 d9ef07c4fd8f2f27cfbef41db36b82c3
BLAKE2b-256 83b9379ee94926a166bf048baf302232cbfdf2c715e6eeaf5eee8c875c7600ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bb5bf73659f9a042722d9d1f274c5abb76c3482acf777cd58f0f3fafdfdf9ed0
MD5 ed189a099eb403b7fed97f30dc086d3f
BLAKE2b-256 ab2ab4c7fdf75ae40654646b93d8faa17b1bb21bbbdee9524ca70da7d9a7f638

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4dbcf6752c30b6d74aa3752e753d540174e3a2daa4c9d3ed4d08c1861f146582
MD5 6aa7716616f024ed2f91d30a6ecd1c00
BLAKE2b-256 c33c14cc47fc6c5b7140c16dfcfef6bd4650240e3450fd00efecf0ffdef392a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e31787bd60166e15b93dff973f8cf12914bde3a30a04ec22cd617f83e69db6b8
MD5 132f3b397fbdd7f80c17ae6e71577b39
BLAKE2b-256 67abb7443c9ee270d5b0695ac28dfff4edc5b8e02be115c4f81c4d2227197adc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 296908147d8f5021cec5e9e7f7fc17d4f21e76d32bd0c0e42bd1928b3000118a
MD5 96d285fc266d802f7607cbab4bc18e32
BLAKE2b-256 9528bb1c085778a3c6cd3f81731219f5004d379a813fd475d94d9a1b1f3bfc33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2b337fec2cb3a3188556b2f2a31814af40df8b2851defe088598f4083890b1dc
MD5 2a56bd376473b049c29b2eba9b3ee0c6
BLAKE2b-256 bd49f0ff65f21d9f29af20b0a27cc639412b097e5d7d190f212654a50eaed3a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 352e5a3d1e39820346b95b3de5fdbb1fd5049e0898943cd2497dae712a1ec805
MD5 c179d7715e0a4308e430493e8e1aa130
BLAKE2b-256 e2896bc1b7c08afab9bb460a3b522e04bfd773a9086c6f9817e7b8381bac9d05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e1c7a49828927512cb2cc87a65c29a0d96de7d06acf702d8e8e9876aeefb1fa
MD5 fb63631c4047c9289b24b268147335bc
BLAKE2b-256 c97a081d3537ca48fd8875370be7b8164eb8996bc0739afdb2ad10fffa95e051

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 40dc168e3fb6cd450b99c7aa3e679b069d6c8fb2c3654d9e7adfb512f9fb84cd
MD5 7820eeb345c66c850faf0b14597fccc6
BLAKE2b-256 f5556a226f17f9f1f96af87725dc65586bd89d5c3e5e324ad554c012ac55fad3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ed14026d8667ae94483b98e9ef4f9f1c3bf96cf31f2243d3c29f0dfeeade5e9c
MD5 4a4534336e0d927ce9e8b3afdd49b508
BLAKE2b-256 93632729ccd233a401dcbb763ba0ec5b8a13df650ce33e840a148e2d478016a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d9e77bc3c59973008e648c52ef84517fd01ac93edcb0e9531c64af29b64e32cb
MD5 6c7a38505df064952111cfd6b93bd267
BLAKE2b-256 c90ad557d6a3c0e39a55d47931c10c248d9d9099126e614fb14e6989ab39b6b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0356444096ac699a0ed7b1d65a63860bed6c289b708ef27fc81d69ad2e23a0d1
MD5 4a1c67c51cbe57a80d58a03ff8925172
BLAKE2b-256 b66a848f689b784f06b592500e9c3efff82e23359f5f67125036d78606255d52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 998754ea8cb1d5a2adeef4961b889325b571562ef1b5c762b508eee42ee5cff1
MD5 2e18fde3c8cc4c43b76400bfd72049fb
BLAKE2b-256 3f874fccc0b570aace4d76c5a8bc326ee391c3560e9cf7ec911450a2a4e250c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 16232f60d578cde130d9e9a0f0b6e1d5e373de5ad7acdefbcba3767bc0feb275
MD5 f90f6279288ed3336a3d57da7f67969a
BLAKE2b-256 49489cd47561210d330eaa1a95f3b654030c6c76f49d18758589f2026a4afa32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f866273c1e187437a6376eeb6c2dca2d4849c0e534000c6ff0ea42b60a2454d8
MD5 b1ad5794f93efc6d3700cc82f6111794
BLAKE2b-256 b697e21efc6e42cd63df8b0302ca07719633484828cb706c97009a13d1a834b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 877cf90cdcb39e0b97928cacfcfc3aed2df442bfe4e74100b50dfebeae2ef92e
MD5 2b480fd61c281cbe020fb29274621cb1
BLAKE2b-256 ac3e3c710ee2cd6a6b3a79d934cd980e0ec9e7806b8910c9cf4a35c6ac5c7010

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 62a9086c944168ac8c4c17797d2af90b7c7fb3205ef8f0ae1d6f05cc17463030
MD5 28c9df9a0059d8f85dcdaab1c4e4b865
BLAKE2b-256 f39baeb9b192c94ccae261db9387e4759b215faeeb31eea095b2bcf4b5afa41a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9883159d1781dcfc5df5f2952c07fd2098a94f0a8441fce5c288941d3a598193
MD5 53d815d7ce44930b12806cc112b795ca
BLAKE2b-256 c0094fbff5cebadc47b79f3d1209bf1b5d0d00e6ec82a99611a480b20461edef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bccee80ad4a92752718c8f5ec94993a64574b1a7824c324b78d6da1b228c0f4d
MD5 f22169e54934dd403b4fba6fcaa95032
BLAKE2b-256 9384c1d4a33040e55af4b9065d5301f0653a7881f6c4619906779c19702a49b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 209cbdddc6d5a3fa70b7dc7ba0f455fbd68627d33ce7e2c286e70af26a6c91af
MD5 d505469b7bb18f8242e1e5f6bc935dfd
BLAKE2b-256 b088a4cf00d69095ba6a49b9fcea66188c46769efbcb21a1318955d0e19135fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 34772cd097b4e9bd129c42a28d8be09e62f1412f175c324569cb68fd732bd997
MD5 cf2565dab4a280b55e9b886d19820ada
BLAKE2b-256 75eadd1c405d9ab55caef3747854d02537d7a2d5f62d146675ce378639d025a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ddb15b67b339dc4e8ec48a848350439ac325f916a8092a3e937765135b15dae3
MD5 d4a05d8b23eced4091f3303525ad8cb2
BLAKE2b-256 f8e8a1dc8db984ecec738c395d34afefa05efe5ab783e00a97b11e089c740340

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 45693eaa755a5b545dd11c8516a9aa198dfefff6cb4bfa070f97d6e565cf8f2b
MD5 038ed8e4dc550fcad6ab196569ba5141
BLAKE2b-256 dc8d1189c591106c30cc47019315b9cfabea80817f2b941a53d1b6dff7dc2735

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4ac35613cdd7e2cd84b0764354f39702ff492276b2c7fb6dc36b552760fe06c4
MD5 a0ee0941975359f2ca788a45b5c5d3e4
BLAKE2b-256 24416af86009c49c48da8fa124b46c43cb99b40f3a4aa67f1fb3c8edca3baffc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7313f0236e347af370eb01bb1b746173c2053f2506bfc0fed835ea33348e4d15
MD5 614b5a47325910867bfda18ea26dc369
BLAKE2b-256 ee1eb77facec100290495825bc852cb3d8ab64389cc03122878f79c725fc5ba5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b47c4d8710c9ee6416c800e8b931eba91c9eaebdc7ef87cf036babe8f8f50147
MD5 1812a3c41d530185e0844432a21f6306
BLAKE2b-256 ae8ca91facfe848c50e8a75d8ff8c84b7388170fa962a9e4ba09e8206d4fcbcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 61c93f4c305c032b4bb5a18b7b7ddec3ad2d43a7e2fb4e436191efb94902a030
MD5 4b20d228f82aa91389d594b12ca1d0df
BLAKE2b-256 21422650cf3fc085087a769738493129e40e3822d6decb1d726112a1e94f35a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aa74951907b65a12ec3e6e4bf1d1c66d008076eb19311ac4d55e2028f9e46d44
MD5 8e6ea79ea5de56773fee4e3270d8a2eb
BLAKE2b-256 2a2b58f5d5c9ea35958bfe122335d5707c783b4c080909cbc0d29a67217a9f6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 46cce300e3b68bf0e5d7857739b6e9a5548ffd57bf64d81dc52489640872ef8f
MD5 286c5355c9f73d72415aad5fa9ba1b4c
BLAKE2b-256 bb92d3ce3858db2e86852eb52dd553343f3001be6b1008b52c4ac521dfdd68db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8c9d0d14b96ab5195711370469e31d7cd72ac1c78c2816e3c38313264df21f0
MD5 5ffab7b8e04a117c7fb7b2bc88718f5d
BLAKE2b-256 99f711e73ae808a1a03bb85090d603c3b8bc1209cf935b78ca9dfdb4ffe974d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3548807005fa28ee0aa366e96a6a778f607a9d6cdd8154ed19cbbe7d90affc59
MD5 8f0721506b9af46401dc31fff4d5305c
BLAKE2b-256 62609a7a10d7570b2525a009a232ba259701d9024d183f41265acb69309b94b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5a590e442e466ac54ed2a8ec252e9c1097a4cb9c1d26b34ecffdf1373fd684cc
MD5 64c8a537e77a39a5df768792e5815442
BLAKE2b-256 0ba901a2bde2209d0b66c3f379346d6564517684ad71bcaf4fd7d4802aa62144

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6b19e6073b8a42b9c2793f969b047a6a7e2fbbd8b78e8f71834435d3eaa7f702
MD5 0dd3b753e64d4d5b96d0efbaa94ea5c4
BLAKE2b-256 4281215e22bec6ecd5e08c726caede18fa19ca2bcebc8622ef0d4e0fd86d6c7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6dcc6763900ce736d8ca1f66137d904732474444592e494bdec04951b33f6a07
MD5 5fc1b1b578f38b3ff25d119e2020ad0d
BLAKE2b-256 9008da0b9e879fbf406fefb0d5d20e83eec90c9891878bb315b3f853199d6e69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e50fd626c67a9a65865f5d5096670ff3eff2fa9a70d91945b7df28d15e82920
MD5 1c0c5a824b4384858eaabd67b9acc10f
BLAKE2b-256 a3e5755b079bc2a91881c4dfce33d91ed5384b55d32dd346b6aefaf0603a7bed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 194682e5ab1d847d1a370f08a1709628bbad285a6d852cf54ca01e1fb4b66a5b
MD5 e33da5203ab37b43f4d3d779c4eeb8a7
BLAKE2b-256 42fcacf7f721edd93491618c8fd595399496ee81b6bd3a452f03726646bd42a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 eb11eef08dad5fac20aca070345ad406b649c2e099b35666945b26d78b6f087e
MD5 b26755cd8ab30ec14bf60bab85a41541
BLAKE2b-256 9754d8431282aa0246e7cf8d1b91a84017701df945724bd61ef0022e15b4f13e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 51cb570dc0f2e81b8e17b09ee922f7f09c37a1c70b37bf63b32b709305bb2ce6
MD5 3ba26220e903704171b100c008415cfa
BLAKE2b-256 f239b9fae3a84e9b54fcc39219f381c4ac422f56f907a78501742aa851a520a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5643b5574cc3730a9b5128a0e2b57488dbad2861c58425b6c36e8030ade65c22
MD5 b31eb7f86991b4c218cab88afb81d950
BLAKE2b-256 7b0669621ac2028ca4f63f6f5468f2db5b7de09ddcc6fe8076f1958d20c70835

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7275a43097f030e03223d43080601ccb416856ffb121828d2091bf4d06c3f59f
MD5 8db3d9bc667be60fb0448025a1ff07fb
BLAKE2b-256 c0a6dfea46fe8dd87139d8073521ad8f71417b342c36c9976895f87f32308c43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a7aabb990915c95b3ec653c0dfb3400934c7fdd1b0b5373ee47c607fc22ff395
MD5 26f84bb359e0ec0cb25f71c647562a87
BLAKE2b-256 21aab39c779c4721954f14579123fb81c7092702e833157a1c85862fd5a9a9e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 419cc9b5f51a07d14c856d5460bb4d18c38da682de23fc9468efa9453b4ef3d2
MD5 adf720310722a0cb4bcbb4553112f5cf
BLAKE2b-256 cde53fc7571d3b10bb9ee9ba89a28105d321090817fa4aab7d22d3a30f8afe74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 559b8f565931b44700d4314ac02805a80885b91699efe7f207255a785f0e4905
MD5 c42c74c6433c2fe996e4ea2754867753
BLAKE2b-256 ae5fa5f4cee4dbbf33188922e1443dcd1542c5a4c6b7cb2b230e4c9834a36e82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1e22b81b01c512d3111e49fbcf7e094ef27cf93015b27c7c5e8c2bb61fa410a5
MD5 36ec152c01f39f3b279be1c24488bfbe
BLAKE2b-256 751df26836d2b28f424010a47ff43a786b6e1023abeb82b9ad2502de8e641711

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ce7348b73868687e3901e82138a462191991c319102bf1ebe25ebd50c46ed7d0
MD5 5c9b201a87fefd10f9108331b5a5b6d0
BLAKE2b-256 f433817db02fc1e92431fed557f4f7e76c8a47ae293f7869d8e4e7846d38addb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4e628a5f69613276faace3a5da00b4930454e339f2c93adba7c0a8fd987f97c8
MD5 17b8a47adbe291638bb23ff513a343d2
BLAKE2b-256 da4f05efacff8f149cb6d063501e3d558d5d0aa33867514a9e382292ceeffe6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf431d8dba17b9c3e228d859585ffc08526c5f0d7d60d0b0648a89b1665049ca
MD5 5c7244af9bfd06cc01f066bd722c7463
BLAKE2b-256 c07964aa481ea826ae749a28127efacf71d0e62414b5278ba0795bbf8ffc8192

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5ec32402f8c6be5cbc6be438d2aeae3726437e98f7193a4ba03fb7b4e59ac4da
MD5 3a82ae47b414bed7cd8c16243b589be4
BLAKE2b-256 2817ca988abbf56300735ee02a0523c647b88b395ef9677296161aaf4c388e71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e76ccc6dbbd88655c47c0abf48e8ac045a45c190b5325d13fa757ef9943344d6
MD5 c3b5f3b245d95c61114722d9eb3f2855
BLAKE2b-256 0739041da2e02a3e6ad1480e308b23b7900c14530666f7ac35a227e1cd17b1ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bf6ac978ac71e1acdb57cc45bc5e4951f3fa6ca42b44a8f158722cd244aeb30a
MD5 43adc8701cb65bcd8c613eb4261a7559
BLAKE2b-256 6d783789814af877d54af051c26bcd687ba63c81c135a6ffa732c18db773f753

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 07ade9a94d8ecd8d725eee7261fa25bac9eda08ba98ff0d403304db098ccd954
MD5 57feef77f283771d73d3f15c6ef06a25
BLAKE2b-256 6a8a2b213502a8e71f91a67327b4f03a946a5c180c934cede81ef21f6a3d5c49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f625082da2affcc3d7d441922db408bd5889bd025ce43d3ac7da42e97d6b51d
MD5 796bb3c8cde598359ccaff15c4f5ebeb
BLAKE2b-256 bbf8445c45a3a710e16982e6fe8b91625fd545afa48bda76fb83efe7c6fe2a4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4261ce55332a2596fddb555b57c2319880caba51cd91e57491e986f4ac61e26f
MD5 f05dca19d09fecb72ff6bad47577a5d1
BLAKE2b-256 070da976604cc77b36062c412b8bc1799e73bbe4188f933f49badedf7cfa93b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8bb81861cb153095bccc6120ed183765600f29cb79bcd3ec498cb445f8c91421
MD5 e45b49816c1ee0a75a9a580c305841c4
BLAKE2b-256 a2d04f4dafb043b24720e22e4c17ef6adceb6f22e736c98d6faa61a953f7fb19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7d6d44532de059e2043b77129ce6b54c9781bd1c04fcb22f4905e5012f870444
MD5 e3bdd4ee0f8d89c5ac480bad1db393d7
BLAKE2b-256 59351656c41c5b17e39b034df4db6b55a07550b4219f098f4c217ea02c9cc4bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 978cc00fc203cd17692e7cf013a8b351635969eafa5d704973549655d2c28c81
MD5 77c685c57346fe58de0761941dab5cce
BLAKE2b-256 ef2b30d98e39724a24a27f01906905d046efd218a5c71170b88e4bacab962578

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.45-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 53b70f1001a88b15176eb86c8d29a50ef7a8e445a5b22eacf50b52fe658fc558
MD5 160f1ac663f5aab8c9c4b355fbfdabb8
BLAKE2b-256 8048a85c56a5d85275d81e03f416995d3d08f39779fb9cee04d9ca89e074d595

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