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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.43-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.43-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.43-pp310-pypy310_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.43-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.43-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.43-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.43-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.43-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.43-cp313-cp313t-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

attoworld-2025.0.43-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.43-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.43-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.43-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.43-cp313-cp313-win_amd64.whl (998.0 kB view details)

Uploaded CPython 3.13Windows x86-64

attoworld-2025.0.43-cp313-cp313-win32.whl (813.4 kB view details)

Uploaded CPython 3.13Windows x86

attoworld-2025.0.43-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.43-cp313-cp313-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

attoworld-2025.0.43-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.43-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.43-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.43-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.43-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.43-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.43-cp313-cp313-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

attoworld-2025.0.43-cp312-cp312-win_amd64.whl (998.6 kB view details)

Uploaded CPython 3.12Windows x86-64

attoworld-2025.0.43-cp312-cp312-win32.whl (813.4 kB view details)

Uploaded CPython 3.12Windows x86

attoworld-2025.0.43-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.43-cp312-cp312-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

attoworld-2025.0.43-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.43-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.43-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.43-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.43-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.43-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.43-cp312-cp312-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

attoworld-2025.0.43-cp311-cp311-win_amd64.whl (997.1 kB view details)

Uploaded CPython 3.11Windows x86-64

attoworld-2025.0.43-cp311-cp311-win32.whl (813.4 kB view details)

Uploaded CPython 3.11Windows x86

attoworld-2025.0.43-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.43-cp311-cp311-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

attoworld-2025.0.43-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.43-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.43-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.43-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.43-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.43-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.43-cp311-cp311-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

attoworld-2025.0.43-cp310-cp310-win_amd64.whl (997.2 kB view details)

Uploaded CPython 3.10Windows x86-64

attoworld-2025.0.43-cp310-cp310-win32.whl (813.0 kB view details)

Uploaded CPython 3.10Windows x86

attoworld-2025.0.43-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.43-cp310-cp310-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

attoworld-2025.0.43-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.43-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.43-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.43-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.43-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.43-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.43-cp39-cp39-win_amd64.whl (998.0 kB view details)

Uploaded CPython 3.9Windows x86-64

attoworld-2025.0.43-cp39-cp39-win32.whl (813.8 kB view details)

Uploaded CPython 3.9Windows x86

attoworld-2025.0.43-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.43-cp39-cp39-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

attoworld-2025.0.43-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.43-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.43-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.43-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.43-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.43-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.43-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.43-cp38-cp38-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

attoworld-2025.0.43-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.43-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.43-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.43-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.43-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.43-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.43.tar.gz.

File metadata

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

File hashes

Hashes for attoworld-2025.0.43.tar.gz
Algorithm Hash digest
SHA256 06cbe0e7614b49895be0afff4b312220fd506a9f2d7f8a77eb015f7e6097192e
MD5 b5cf79803f0c07a5827d80a46d5a4060
BLAKE2b-256 5f992f9c9dca0baa439df43c1070cdec6f56a929a4b748aa7cb977dd2e78a4d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 01b4fbda0bb8b34a5312bc02b1b8a87e34bd7d816067ab4715b8cdde9b69cae0
MD5 eabde034b29cb596c1ca0ea57d019fa9
BLAKE2b-256 67db165a0beeda8529172b16cf81459ff960ff20d0321f5e1fa306b98b61076a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d88aacaf277852729f9d8ed050664cd3197f7fa4b365cfdf2206d57fad81baee
MD5 13422637073ba34b57c66761bd8de041
BLAKE2b-256 fae09e6d05e4f0894dc1b784898891267cd970d312331b39755ef54145e4d5be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 882153a06a1a5d850e7f8d9615ac901213099cd06afd4896452d478287c4105e
MD5 5185a5a62d3bd53900e5bc98cc00f692
BLAKE2b-256 c5fcd1450a7837bbcb9db645833ccbd25ba4938571e2f9dd1e916b003ab01eb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a03b968c07851cecbb0202a6365a79084856feb902114f8db877535a1135f9e2
MD5 91a1d854cf51a4581952134ee1057849
BLAKE2b-256 aa479696ad5684287f7cbb589a7a52d627b7a89e949c605585f947cd6954f916

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a697de58dc714f55e936969bb45034a6a67fd3e04cbd28353db558f1dd209e5
MD5 1bfa0aef3d9ec717071c4fa9a6bfaaab
BLAKE2b-256 177d444e40c25b7ccf4d202340db8cc14abad3d472c6833eff1ae9214f3ce8ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8fbc2aad56cc2bd38307b149525c6c6cd7d95f6776bb141e318058e710f3c813
MD5 d3cb35fa3c92d894f1405c07a77abba0
BLAKE2b-256 2f10bd70c26af2615982cd7802ec07c81b0cc7695e6809e7e73b3a6b1e2066a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f9854542f3a50a5cb3acadd64eed213d9c912c9e2157dcfda7489b97dc468c2f
MD5 1131167a78c4e4b4b15498e380786c03
BLAKE2b-256 b67840c5203482282fe86ce84ca8c04abf50d1ceb403b1dd96a95d54866f4b66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bce0239d4a44423d5e3b7eef7176b5bdd76718574558d05485baf2ef6367312d
MD5 53444d4ffa6dfc6f3de02f1670fcb9ae
BLAKE2b-256 3895a24b848ba656ac01d3e53e5be94f6ab91d737703572d734963974bb54c1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2064336acb0f8fdffda919d3b4c46953f34af24e52024695a93f66f01da011bb
MD5 2222abe28df55ccb0668c5fc5ace6255
BLAKE2b-256 725333dcc7e6ff95be5a5356d4e654f84e1b0c9430299ef3197e2cb10213e6ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86ab5d3ec34e4af4a0bb5978beff2f8b4ef21430ae1a9663410770927e48d710
MD5 33c675450dc1586a55d72785b6bfd2a9
BLAKE2b-256 81b3cc4a016a91f80201e6285e0734148dc856ee055d55ed0286beb973431b53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd245f20ba961f862e7ca9f6274d8a8364c86a53c3a7a6935c88dd669be28d5d
MD5 485c773f6763acb44c60c30da27a37a1
BLAKE2b-256 6bfff8496230d36ea30525ac891c9b185f44c7697863f46a32bbe36d8c053ddf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 976532e90054cc8707b1a4ea6c2b9295c6f61b55455150431f4149bc9441d520
MD5 f171db7f3dc2905a620f5d2a5f6e9fe0
BLAKE2b-256 b75def5e6d329d132b274a9ac535eaece3caee56f3f63a6867fc6ce16c73ef5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 daee9682190f7a883ad210d3a46050bcb3f7108ea8042fbef2148ea4e48c82c9
MD5 8a8c336ca500d0d1014ad93df0f8f140
BLAKE2b-256 2d9ee874b6e046ce8f58adf6e82b8c1b08bb5c6eaebd5018dfffc062c3cb9fa5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c2325ebe624b694ed4f47166a584f076b26302db5140727254a1e63137282e5
MD5 9be922358c5743d969b3e8692ba1460a
BLAKE2b-256 ff84b36d21416c38961933489e171a2f6559144473b7d12f29e58387e7369163

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d7588d92aff47d9940c293e75dd40bd79e6958f68a5c005afaee1bfd4a601bde
MD5 4bd4ab22259fc9d5479cc982cb220029
BLAKE2b-256 3fd1529f76afba7513ec6cf02accee846a027ae8ee13d902fd1744f37d59063f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c3a9bc10efe31533947256ebd7f883ab8d577d26acab3bbfe2eacb282143ade6
MD5 7a5b79b795b52759936bce871d0668dd
BLAKE2b-256 b8e0a800962e2f85bd8d6ad3e44ead7894f6188a53b5e2abbc7379cb0bb7abf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 904a82c4a53960fda828005c22ad415f01687d5d8c202a5d86509b231c5a1ab4
MD5 2b7b78b0630e8badb0a0b2bee0e93b4b
BLAKE2b-256 ad003e5beaee13d4561b88b75b03c04628ab8baeb5786657ca68594683391bca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 31f20a931f7e37b3ae83b3e6f1f4869fe5c29d855f6af8bc4b135757c750a42f
MD5 93b12b748da1edbb0a72d475df403c0e
BLAKE2b-256 353f0fe331e67726d35f9da427ba552b020aa0f09006a11498b451baa5191798

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eda0531887d2827b8aacd80e0c1c11516a552be0e08345bbc8f4f50e918922f8
MD5 9a983f4c7f3607aa8f99c9d33e79efcb
BLAKE2b-256 d318d81371c020bc5e59c028bbe274299e79ac5d93cc279f38e06f6362c9e764

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 84539e4057a68cf7ab815b648fb894851d81d1a60b4b97773ea428ac61ec4f59
MD5 d6b79425a69c3ae90ae626f92302fd26
BLAKE2b-256 0c99b19ea1dcd04765b058c761142aca774e82f04f018191ab575f129ad981b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b1273aff3852d2052ff8d10132a27f53b25cc00034159693f745d5b615a9a2d4
MD5 64a35558aaa3aed0355af65b543f9d7f
BLAKE2b-256 a8fb5be3c65932a833eefbdb3a15bdf3941f5871121c9ebcb3e6a21ec97b7e3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 063a4fa4c87a4b6ffc36ed4477e8914e12951a2af006a606897684acec63a95e
MD5 ed4f7d0c92dcf7e8a4bb2428c8ac0256
BLAKE2b-256 de4fddf52ccff2624ec5bf038c79a6b5b6180df1832a16f546dfea03fc26f1fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cd966e79ab10799309e895828c83099707368bd131e33d8bbbcefeb89fb17617
MD5 2ca13101df76881c1e697bd790f8abd3
BLAKE2b-256 47b45ee411c793b96cca5a50ab156ffc0b222e8fc23276417c2444350395afd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 43e0f081cc569cc643f94fc41ce5504c82f3b39bdd78d40017eb83dcaeacd9bb
MD5 abee11a38c50c68d8e24e4f1a0e9ef05
BLAKE2b-256 3aa679792b30b4c8f71aef49c77ad89f8ce5bb15d5680fa4d6daa68588225512

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 905565127ac068563a8c179717a1014dd072f1ec1de06bf846245059a7308706
MD5 ba21b8045efc4b43e4798ded844e726f
BLAKE2b-256 e7ff14b3177dcda75afea66b8a9a43685e1d4b58e84024862dc9116618b57dd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 05b7f019c95b08e4f22ac2ffb43e717d176513994ec41971d51e28bd1c3ca419
MD5 817d84aac5e5681e68a6996e53b1ea4f
BLAKE2b-256 a4d88018db4bea8e434b9a70274c0d02a0f5f0bb423ee6ac15551e3376dc42a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ea75d72619f04807b42bff60ed7f4377078293b29f3cf9c66d772d4e1b38d1f0
MD5 bcc9e5359299fb0156e11e6032594c56
BLAKE2b-256 f759161c4b118e94b25520b70fb116ee5e1971642eb5ce24c108d6b86487fdb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 46bc5b90c52a8085c344932bfd336002e3aca2c993e8090de9403a7100850fcf
MD5 9d87d41fb124c3dba9b17b495191015f
BLAKE2b-256 20e5c640eb1a6a5507a3f2efd1dca48eb47eeefa7df0a3b2c5c0c1cf6618ba52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80060ff3c4e8c98f8a024b7334ae64e72cf81d3d3ff9b3655823243f46ed851f
MD5 7d58ac54793061762b58e6193f15ec82
BLAKE2b-256 e0df09c0d8d3160dabf1bca8dc5ba1e31b37f8bf8fc743600236bbddf44fe15d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 21cdc380f7536dc5415f15292b9a57cee1f2d4021e5bc84af8b6a7b9e1003831
MD5 82f7608bd1b6c8c1d1c301f45031c277
BLAKE2b-256 72b84adef6757364c94b166f51c38f6e2a26c86fd2f1d61c9d51dfef3b95ab0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6dc0cc4da80cee17f4d0f71b6adf073f35fe5a4b2770af3884ac93560c92ac11
MD5 7f44755c768c104d2dd2d5e3929fe20b
BLAKE2b-256 044a51135fdb125716dc2088e295fde975683e558ceae15685f33cfecfaefee1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 58983448ae8237120017e949218e61e91b06c1cb5f1e51d2306c31f905672a02
MD5 592983d4ff434d42ed05923185536d38
BLAKE2b-256 65f2b1745400318bcda14674bcc122528d80df82f2c5cf4f0c4e631896681fdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 80132fb4b4f1420b9ce6041a4c0e645e10df854b23a6bd50e6c66d630e96e21b
MD5 2c3e7465e32fded7045db4a3d5cb63c6
BLAKE2b-256 b18c8cbc43ac56c589ffd5875920b089700b06da739a0ad68b70e19374d02278

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c5d16378243d29d51db8db3e7c7324a2c61ed6aafd85b0505789945106a6bb4c
MD5 b37fc353ea0915288f08a2fbbfb3ad3d
BLAKE2b-256 3a757235a676a009a08b7351fb31b0c8dbfc2cb7c0116be13646f3787fb5987c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8301a0941c7118d36354ba1d4c2ac6769e40e86b9893a10c5b5c315d95d33158
MD5 b8bdec751570957d4532a2efde54d21a
BLAKE2b-256 a82391c889c62f42d9e4660c505232f1243a6f48836f261fe8678fd6998c422e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ce0b354ef88779bc21c7f2a5f2b367d63cd80c4e629b140df7aacff63466895c
MD5 6a9861aba04fb6311170f020f3964673
BLAKE2b-256 87fac653fcab130c28a9e1bebc69ecb0e620a9dfdfb63f8f560397314c2c6500

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 159a901bbec9389ed0bf7ce6500bccbdda8b7cd623e22deb3d4a3373a32a7e29
MD5 8fc6a7d6e1ceb7cd29f3d297e4422e60
BLAKE2b-256 adb0ac246ec48ecda34baa406436fa1dd6d12d2b87e8b6df831706078e8ed15e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f70130c4c61640c3e8e0d4726a7a8ae421fcdf2cb79b04decdb1bbf0c8ce0b46
MD5 930ad7216e86ba8214e0f125bc1df9c8
BLAKE2b-256 743159a487bfbd7fdb82ddb5fbdfb5a91864d9e33322df1fda47dd3aacc059da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8293bdb2bdd9c78dc78c6984639d1809d89109cc87d4b661b6b9feecf23e1319
MD5 94ae427b2e887ae29d7fae05b74b4fc9
BLAKE2b-256 003f16aa44bc0eb1d5a0a9bc5a96ec8b5f62df4af4500f91fc424a01f7d3f6f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 fa6d18c8bc86e3556d7901ce514cc6ef86504d1b9dde989912a53f714185933c
MD5 a5cfe2fae03a3f0ce5a751819e31f194
BLAKE2b-256 ca5c2ab39e3e5bf7b8fde00de788e28fa7002b619ad1e2a46929ac977cf4393d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1f408061f176281b8ac834d8cf66975a1d6f4a9ece4406a6113f3f67db0f8f19
MD5 3e73341a4b6958b2c332023eed2e26db
BLAKE2b-256 27fae50d3ffaa762c2cd3ede4b9d9c277c4f91821bb596fd82a7f204829af99c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 77a359394acb5538436f9ab8894f39d81fc9a82bcb4b120e6e450d06bbe00e3e
MD5 3be675d4336304eb1c11883458f722cf
BLAKE2b-256 29b56d90c851892e47cde114809f693490ffe2f611d78b16bbacd32ac4d86679

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a4ebb041091cad98e50c261fdb97c0f207c31fc7dca3be8496eaa1c34c9e8fb8
MD5 e2aa69b74c4350383e8ef093e402946e
BLAKE2b-256 8189540e3459924254816c326cfe4c68bee990e332fb5f1695e82c4182536229

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f866a0f24e9ccff9f93e5736631142722d686ae100a0c5ccf43e72b5f31980b
MD5 55155b31aadcb55a13a1116451eaa78e
BLAKE2b-256 c085c9cbff3c0d6de2fcc58ae7e364142bca2c0d6563f6fa5265f0eb0aaa1d47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b02b97f3f5c457f942f73efc95f9696b9454980e910756a0cd07220de7c81970
MD5 233ee96da811f247c462dc6c57aa23ed
BLAKE2b-256 16492122c26ad4aafda334b2c474f02c429a3adcf7cd4c7af6d77c89d032621d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 57a26d1df26dbf23fd8199522519bb20f5ef9beddbe3efd443c1bc18e363f36a
MD5 63335df081fd671b0ac2c36e07d0adfe
BLAKE2b-256 ab62cb2ed5978a4e9a436078d499f7f270b52231001a84999d41583f55680173

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cdadaf59d9cd3a7ddbffbd515bc3a3108cba2a818aa7e3c863fdd350046b2fda
MD5 d0b080b8825ff68bf1f65127e7ecb3fb
BLAKE2b-256 2691f99a337e48574b4ac45133d148482aedd8d1e092108985fe05ed79d48802

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 27c8ec7b9831f19fb3c6ca9eca69a835f00200ba071e1526a4f6aaeba82a5352
MD5 d0386c2877a9094010ce23324af42179
BLAKE2b-256 103434b3a075bff51949812094e47959705270864961302e48178e0d4271c5c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0727cfbcb9f572e0b7dfd054baff1cfb97c323fff416d45b5a082ee920a5ce41
MD5 feffbb53adc608db454bec3397374bde
BLAKE2b-256 d09deb6a3763c0585be28aff4f6dd4c1b4556c3e1c3f232e21ab6766f7a8749b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ab5ba9e795d12642339c9eaabcf90168599ec3cd0781e809bfb14fba20bd1fd
MD5 43397a3e7cc472a174d96ad27b506c03
BLAKE2b-256 d24444900d975ce2fd32ea430634115c78793791f24f9b81f899a187beade861

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be56de1192cf445b4346996756d2c8ffddc5c95bc1cbb6a0becac4782949a46b
MD5 6087b62f7239f8dce3c87f0258b72864
BLAKE2b-256 f1c1a6fa9a9d649157e5f85d3f682fc3e5abf49195724251a322bc0360c12db5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4b85fccea5ce82ce9e6c709e4dd8dd830c890db74e69ccc7c62a09a8fa40754e
MD5 3650e54eb37738b6ba2e9e48ce29ed0e
BLAKE2b-256 8f74610ab717499e9a5c681d6635c2cc717be083d4f7504791ab4af2b60ba1b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1a70480f85db7f0d9aa7f8aac9b1c2fe4745ab04adf4ac9f527335170d1db6e5
MD5 2a56797b73e9d1d2d72fff6ca09fba1f
BLAKE2b-256 94ed47ee0b831ed1d14d6afe81a8e0152c1a99d83045ec593800f26aafe043c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d28ba3380546925d08405346ea43467c213d8ce773e8bc3e3042b26ce761f5a3
MD5 d3ef7e92437a7803d49b8a34575c639e
BLAKE2b-256 6398e0e7de72888944c65ea5807bf400cfe1c3328925ae4e576e9d2ea5ee9b17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a9eb27103b3b5e096eda2d6da618a0b604f9f261b5630907381dd28e21b995f
MD5 2200b9d82497879668c417678ad674e3
BLAKE2b-256 25a438fcaa76a857b9250227dc6e43b1c71784265b44b0861d6ffa431bb2ec79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d7799a4f46b6ac4d6f0e9f718a3a1fa850f1a380c7d789ec16394c032828e91a
MD5 ce77c3f55533648ec9fec8a3a8a70e91
BLAKE2b-256 777125c1d01555cef5011abfe657d1a2ac6150efb3894e1218f913dae10898a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5a64af5e6979cbc99885b3c978bbeae46a6ffc5fed6c2ad51dddf1908b00f602
MD5 3f23ab010a71e91cccd26d5cbbad562e
BLAKE2b-256 4fe4936b4e9264b4b21335220a6d18e851c4e3b3082cb378b8e6eac7dbe3d8d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 67079fb2a2cd40fe75abc30360a4579845f10da3c8ce072706de8372e4a3c11c
MD5 fdcf25295869f036ebe13341762a9c66
BLAKE2b-256 1fad52fc1f0acf21ef060ab5226a9d8490ee8ea42918fc70e76aa10533d2fc9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 58dff4f00ef6c2a9c42f33b4473d03c3aca4c16a4d54bb42f1cd12081485e742
MD5 a35973d2bf24956e2930460511bc34e0
BLAKE2b-256 839de0c3ed490476279a946684b2d5f4656042ec35e35f219cd3e42d133a4ec8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 903db4750809440aff075e244e0144a181de491a0f8f3cc0a86fed5e3c74c18e
MD5 9be6a4241e249b552148aaa5f5d12ca8
BLAKE2b-256 527869278afdc74a6e6fdb356ff4b27079c0d180c462f1cbc8c4f3957aa48750

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3b8a3160306ec838c285b9e9877a58846f9456d55e1356728f2a1e4feea04a3e
MD5 96c642585d3b934a49574c922f0eef82
BLAKE2b-256 53fa7633da8779a3ad247cfec21196f8f6d7299a1839097b3fd0782afde6e99e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 46602f2854ebd8b06c9a29a7212408ab0bd2721c9778aea584fa14a14eb5a153
MD5 5bdd1ba7878473b132c7eb85668b12a3
BLAKE2b-256 1b138043d20dde84ea84509d9c978e8e2e7ec4e0d0592b055a8b5a982f4bea7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d87891007264107149f1f4421348006f30edcdbb35211d7062bafafca958a022
MD5 fef7dc5289b1db2805f74c88174b7410
BLAKE2b-256 660d415cb6fdf94190b7e770f067cfa6ff041725961a546526fee5659627eafd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5676ebc177f74d06c576e9b55892fff3d2e94289b89a15d0f201c832e76b1108
MD5 eb5c2ae44b8ab82e90de649157e1bf06
BLAKE2b-256 ffb36b72a2f848dc4208c310ee52fe712943d4bb736d174069ba979e611c309c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82d2d7ba4b79d1428bd4b2fbda305b3b248e891a448540b266de5d5bff0fd12a
MD5 257120c94edbd7969f006ee5d4c49ec3
BLAKE2b-256 6a99fa0c6a7b16b152f10f90ef0f03adc2c94bc99a862e5ecf91f2e643f53eba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1054582273e1e502706d931a739397e485c76ac114bf073da6deb08a0f93645f
MD5 8115ddaf2db20f32f7dbbe44bdc77635
BLAKE2b-256 9b65f540d51af7adc63d0e85a04fb88cfac421997ac470a2692e8aed41babc6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b5b5468e4b4226fc2e67e783e0459d965eb741c3bd1dcb6685591284d95f389c
MD5 189b34da6529d3885356e95218c83fb9
BLAKE2b-256 26ce13c969856ae5af4af071da668be7a531bb8e1bf204f9e6eb088da55c9169

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 221dbaeb2925c6832cbadc76005e0d3b67fb88a0f5b3ad59d3199a6460b0713e
MD5 052f96dda46275d132a319eef7c12598
BLAKE2b-256 de936aab7a9080d177ddf9194962baccd9b936357c4fbf746bea9e9b734d17fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ddaa203863838c60aacdcc948a5d6ade4efd1478e8b4467977bb3d7d8e3586c9
MD5 51204825911750ab642d1d68eb341505
BLAKE2b-256 cd440433713d715f89a72b5b5ef60403012e6e917338a1ea3ad70c59009bcda5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bd79f12ed42d47b350bae8335efcfedbce606457e395151bc222686e0e47eef9
MD5 9d9a78f710ea5d6af4bed21f33def429
BLAKE2b-256 5e68e62a6e1291a5c00075f2a5ed6bf2df228584d89d30642a1a343027390228

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 70fc3ae0c922796ecf13a515e81bc49b88a96a534effc92c204e927782a7d4b3
MD5 7165e39cd11b5acea836034071b6bd24
BLAKE2b-256 89a5bdbac76c60049b1f99582ec369d850218e62d163e57468c3c623de9f227c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e2be5782bbaab2f74b6ac6d4a82488e97ff94fec527c869f0c862f1e59eed2f
MD5 61cff5c038728d73b5ebff540da1a4e3
BLAKE2b-256 c4eec63dfb60d886f89df53c7dccf75d843926b2b56a45ede94106174658a7d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ec69fe9777af51da7d10767c227e89a73629eb7a959381fbfea446facec3afe
MD5 12184e96c6d6179817dec94971a7135e
BLAKE2b-256 76b718792cd8f2b5efb8e021afd5a147db8a4aa5192096b31a9068d4ec7d0d7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3de957235ff34727f96a07ee5d3fcb4ba1b22390fd8805ff66bccba3d8e3f278
MD5 62270b6f4a5f8d5fe2c8dbc8e9abd4ba
BLAKE2b-256 dcf5187222519e9b9894ae66e82331107f78303c39b560941ac09e1309874f22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 817b110d9e8ec3406ecdaeab6522a2794e0fcd5f9375b9fbe943473f68b6c0ce
MD5 a9c91b3fc48e5b255e1dfb383564d151
BLAKE2b-256 e4f6e623a81120e0f98d4a1e35c951ac23a092be2e3c78365f6b4f342e737329

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1718ece261dcf49e89aebbafab26a33cb29ac8cb74fba950d637beedd9169463
MD5 5a8d1a8a267094a41587eb15b8b736d9
BLAKE2b-256 ef48357f7977c406ac6a900f924460fd7d2dfc4d2c8737419f2c40bce7aa9d25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6692a8f3c2717aaee6ceb6521b810f6acdf061c66ba8ccc2d5f8f2a3a681b21f
MD5 def2226021c2196f419b0982cb5c8f0e
BLAKE2b-256 a1fec02193fe6817240192c1ce2a93383f8117aeeee0fd1dd809352767a7e281

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9bdb40d464aa437c29eed769ccb1ef30509b527d43dfb53d7ee82acf8c6ab118
MD5 660e2978786ab5c175256283483c2855
BLAKE2b-256 9486c09aaec033f287b35f7227c0758a54901ddb82c07c3202501a815eff7563

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74d251e9c13b37e74c68c6bd3782a97da66495f9d6b4dfb02c755edbde3f7d13
MD5 e0ab5a5d57c26521322edd17333b8364
BLAKE2b-256 3c45341c44d3fce8888af8ce924d982c06e30d57d6a263cc2348e62a3c1d075f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a4bf4b7f24cffdc343de5f74232e69f19493ea91aa2a5670a03db4dcd5c8332d
MD5 8c1a78ffd7c2c07033017f116cf0d899
BLAKE2b-256 ad364225fbfe6d24ea9dafd0ddfa38a171ecbf40f469042649c4a2dcd18ad31c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 32fc09b87db235d04b8ab09152ab18db76c4bab562414692934aec7b3fb5f3c4
MD5 12f5a38ad670b7cb34b30f1350cfea97
BLAKE2b-256 0961c110789f8fb2011733d0b29958356d0f13f9430e89d264d5ed7c3f5b2cd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2ba1f76f0d5898a1df0d8a675a4cd80f1dfb1650f06895a1c12bcb727bb3c4a1
MD5 28d26c534b9fac6745202ea34cc3f9a8
BLAKE2b-256 a2707e87321e51e1f9bb027250988fad47b16592b35a78718c36a680e428c795

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4eb878bda1af5d0eab1c7f3d28189d4a158be8e830723df0d77e808391a3bff9
MD5 322d8b5b448516ef9ea53766e1752caa
BLAKE2b-256 b53ddd10a808fd1521b4ef06ea8391c36e09e30dac64bcaecec118fae0059376

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 798f98c6a7bac395c78c895fd0e9dd6b1fd89ee48143be049cacf74e3cec1e2b
MD5 c35cc44ba8ea3762a9b9291fff84842a
BLAKE2b-256 6f2091a34e3929daf56b8669392011d2f41d031d1d2aea7b3a0e7a6b44edd12b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fe7749b0e55c5c1c01ea5a551e5d35cd40138d53a7e5e1bec701b75174055062
MD5 09a3278c8e1dfbf33a11427626aef4af
BLAKE2b-256 ef8247f56972648328f55c7afd3024b227b53f7e61c92015a5693efe95730615

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd089144e48b1349c17cdc15dfcacd7282926e412948cfc1aef23d389edc247c
MD5 3492c9931147d649d809cba3fc7d3ce9
BLAKE2b-256 f217d38675df18973bc4a53bba935c811ba6a635cd62bed9896d8f93b41dc021

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 844b477f19663be90736a0ab09231a0d2e7dbc5eb82c470d05c9493c4cf4ab40
MD5 2c4e5517c990c42f36edbeb08a3853af
BLAKE2b-256 ff929dd172010340dc87593d56a206e49cd0640b59b846f303055c4d54594f5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 de2ec0be9dce9ca7a0bd6510aa525794d77ed9cfd6a55421e7b60bcb3e8b592e
MD5 135e859dde0a73d35a72241fa6b2812e
BLAKE2b-256 c1aa5c2a9e71226f5a782c8f6c7e2f6d6aafaf0c24b9ce89df20a02c371b7ba1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 47b836b89bc5d0e040db53a710a7b6285afe81804bf5e296144254da658c361b
MD5 aad1ff3ad89127a40e4ca6f7a7ed1940
BLAKE2b-256 06d82e0b5192b4cc8ebc6d8616dbeaa75c1d7439819efb0b7660d8a47982c6cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 17dfe3497d96c3893fb7943ef8cdfe199e7a97bce1e56c3db7549b46bc6bb90b
MD5 2cd1e2fc1f55ea19993dba340b865a26
BLAKE2b-256 61a5c52ded6289a325e6def6373b96eddc406891e480f5c8268703219c6a7d85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6c5ca17481f8e9ddf6a687e68c2616d8a14a31db79a3d4b44fcc7aa3a94f8584
MD5 3b2942e0d9ea3e108062f582e8df29bd
BLAKE2b-256 2273f453a227b06fb90f9533c002c095c5336889a636cd97ef5c171c5a9917b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 baac25bac0a98a8ffed9e576a68a3a48def33ad0ca1ad43b261d2267a07ca329
MD5 6b021a5d40b70c867b6f267fa87478cb
BLAKE2b-256 98d862dcd44d6757a4fa82c6e46424d376fdbe844549bd4b9fec4f9b0e4d13e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ea3cb1642b81a1118bd29bd6b1e6ff9003786f7f97a3626079c962427e257219
MD5 fac565d724b6734399b5f6340785d3b9
BLAKE2b-256 4afd860b6ed981b62830d2a8683088d7f49df56ebe64b8a6b5478a9acefe7658

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 681db9fbcb6216660397071e46d43aa9b4472acf3b42d5c09053811194397853
MD5 74012b63ad2ef01b8bd7beed228f9718
BLAKE2b-256 0989e2e04a4a418f7cb7696b06bb2a3de8ac5a7902439421e942f1b6c8f25b25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bbf66de38818766fd9ed68a263c12fe90f0201429c77352f5f5c5e72322cb259
MD5 5e1ef1a4dbda9a0190eb6c4466d6d03f
BLAKE2b-256 519515d620b1bc31b40c11362add905b0b6163116baadfd7397b781fb65ad98a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d75555f3d1ae02717a3d07fe3511d19e2ee4f99dca065044d3f2aeca53be725a
MD5 6ee3ca71933aef22247c4ed202b789eb
BLAKE2b-256 f3d47da209c877f6ce7788ee11394c177ac20ed4a80fbe6919d2aaf4f3a61df6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4770d15a14619a46c6cef6c291084413a36b86ea1e3306112f46dee18db8bd8f
MD5 403b9ffb9ad1c95110cd3f70d5884881
BLAKE2b-256 a29081bb473844a395f83798e68bd75130ec2b5e4976ceb7721cf6e2f4886034

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0478d3fb5280d229cca35833e0b8d4cba5bde9c5c688e3952f1fff0a677f4e0a
MD5 b4ff09fde48824a99228cd914944ccb6
BLAKE2b-256 ac7609ff8f5d7007b467eabad58f2a5ca772c99f6e4a3f48d275ff4117c12a48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d55e3a299f0ba8a7b56c021a090a609bd74c564548504edf2477b4fc3e3f7b01
MD5 bdc0d960f4b7037582a894e24b44fb03
BLAKE2b-256 b5ab8026284ce5870187c37ba4032aa2481735c56b8340ec30794d96e359cdc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2e4650c1743e9d5939a2bdb8e1f9f0370f360feda77d273afe2bf83aeb3f78d8
MD5 f2ce5220dc3afc3e2438ab1cef4f8d1f
BLAKE2b-256 ce19dbe3a18272bc8d39186da5f04f9d0d7341ac3130ae9d0270f89fcefb382f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4be5a2cd0b8cf5bb2a3d3cb4c99cce4773489a6c37f2d071b09d542f60066e23
MD5 8ffcb666241c8454d3a22e34d801179e
BLAKE2b-256 7523f6541a9483a5b1ec32ae009a372edf1935f6acd9645b1e683d305aa7e21d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d7e7e3899734ba3f9c5587480514aa272ed01ec032b2743df2a743ac15421356
MD5 7dc14914c1c8356fa9e98ab01626fb77
BLAKE2b-256 9be714ba2c033d508ef8c361647fd7c14ec6b003fc989f5f09b1c53a1eccaadf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b49880d58bd7954d1362c5b2720586ba1838eb492b1ca5bc53b406e2d10f973e
MD5 adafb30be99c4f410b836cdcbe78a1c0
BLAKE2b-256 0d42889c8cae6de41fe178d059b03cffaf978d9b8abccb0dc77d50473ac1d270

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dcd48572fadba93a01ebab4d42159a94f2d49834def23ec0a44e44bc08b35f28
MD5 58c4f99f80a58b2c6cae94e275059a8a
BLAKE2b-256 1aa68d89a2d5de81fd3d7d7941e2ed48dbc0ced0e35116d530044ae5fdaed9df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f9fa65b3f148b38f2bda96fee95fe7fe4674a2b1ee1dcc1ab600c17f50f83314
MD5 371bf8442d44264578adce9882a7e8cc
BLAKE2b-256 ccca0c617e320ba1316e0240cf5d7083ad7cc36413021f3776a5e5d24bbfaaec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1940aecaf46680068459c885d32fe42f6aea5af76fc0e2aa965540148521e1bf
MD5 d1e6dbdffbe7ace9d17bae0c32fde364
BLAKE2b-256 36acb8bc4863dfbdf8d204b4c7fc0c9dbc7e01b0b697223ecaa9162b78653575

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8988c0265fdef90889ff522ebee33d46e5011fc9e625ea4ab09e6c1a4643274a
MD5 ff6335ce636726b124170abd3843b093
BLAKE2b-256 3a36f63d5a8396d1f5c59daf4dd9fd6025c5ac4c812b819a743aeddc600cf7af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 66a2b8540b4ba722b6d0eb9b3b7a546a4c51dde6eaf165c8fce9bca5a44e34e8
MD5 160b9b216da085428ccb4129ff5df7da
BLAKE2b-256 c0286d503ecf33f39da28b5e4a59b31cd3cd7e396a1ed71dbbc909e83190da99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 650cbf34ee614dd1c4db8181a56d1a91bcc982b0d0974b6161e5392246878ee1
MD5 02e72cff0852badec03ad1e514ea3964
BLAKE2b-256 1b8eeb7f8783790ae23943043e5cc1f1a306e337d6b0585319857c48787f62d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 408c5d27c2ed44d662a0f81b5874815b75f7bb55f489535a0dd892d0b24da4ec
MD5 6d943a2056bce6fe79e5aa18d2402cbc
BLAKE2b-256 b4cae7d7c0f70f56335831aa394f79b143d7deca7c1f8ffbe7b1f0ee1bb085dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 82cd5b54c3b9202ce00c0f995e7b4739c2e894b3517da6a5d28359ec50cb43b8
MD5 0b706b2369eb0f51736fb5e6f7dead32
BLAKE2b-256 2fd753c134bdf926a5f67174fbca9bf94922be5d78850a63932596fb51c121d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 20dc1e56de9dec0c3ed2f8afec22bacbcfa486c49b6fb364cdd6c8fe53f08627
MD5 a700ac6da8aa31c323654797c00f7eef
BLAKE2b-256 12f81b9256bc762c282b5975ac33b4441240b6be97cc757574f5d7ff505db741

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c32137e92d2cff1119e6a47a98274d64632765732f7a51df2dae3266dcd56abf
MD5 b44f0b798a636e508581952fe16fd7fe
BLAKE2b-256 ff8b6b820ddbde25a214ab7857c87462609b554cd4b120e345ec958707712383

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.43-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e0201956f10178ad57da6fe23243836d806bae15ada14cf58846e424ce5358f2
MD5 36e967e1626011e41020f2e4796500d9
BLAKE2b-256 d5bb2a189b62f34429a9e338641159e84e8bf954acf40e335646d0a8d6e8c13d

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