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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

attoworld-2025.0.44-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.44-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.44-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.44-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.44-cp313-cp313-win_amd64.whl (998.7 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

attoworld-2025.0.44-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.44-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.44-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.44-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.44-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.44-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.44-cp39-cp39-win_amd64.whl (998.6 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

attoworld-2025.0.44-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.44-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.44-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.44-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.44-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.44-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.44.tar.gz.

File metadata

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

File hashes

Hashes for attoworld-2025.0.44.tar.gz
Algorithm Hash digest
SHA256 313bbd6bd8d709da48bb6391547cd1c91b6ab19ad20988dd8182bc8fbabb7f88
MD5 492059fac180279511c2c75d8b19267a
BLAKE2b-256 8090e1ef18107f51efa115ccf40f8246b3763cf7e851d3927d64ed9d99787152

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 71837b45a96510ad94ab58308d5f11ba0eb8d23c08f179873bbeacf26a4fa060
MD5 160cb93c60d16943f19459cd34104c28
BLAKE2b-256 cfda9c47e227ffea82f4bdf952f1be3398daf8acfd4b0db28f29f7ee6e0ab7e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0344a75beb0d5850809e63a843350b5c3a8677f5d22afaa4c7c43108324ae2ff
MD5 67518de6b3e25b0a0928f2222ac7cb96
BLAKE2b-256 f16309f962026551bbde85c72e4459aefe186c2d9f6587ea068d2d4e31df0b7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 08beacd86f49a10944b8d675331cc510bee7952ad20852c7b770f39a2a66f017
MD5 5fb276e95d737bbed0977c9a29303f92
BLAKE2b-256 1c333b6a9d94cf9b7e5ca2dd7af6edd13cbbc4e94c71e6ecc130289c256f9f70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5222d23962315079b7a57e569058dc3ae13dcf910711bf074ae77ca8e5fb13c5
MD5 e1a15535cccc34e1019aee87cae03fed
BLAKE2b-256 9b1a763f64640da1c9bd9d6c6533535b8eb34348073e176d3abb8147a3729c06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 037854adbe0e471f881dedd047d14764a52e55c5518d75e4dffb8117caa63e90
MD5 721c3c32d4ed2b259245adcb28a02cec
BLAKE2b-256 106a485a5412979f1f0ad0d4e67426e0e5f2f22c8962b360e39c05b4def17c66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5b61720d31819fd64d922775fc6f458db753b49460bcc68c73cdc80691cf9f59
MD5 4e502b92da1a163f53001f4be57881ae
BLAKE2b-256 a8fb4dddfcd3b3dcccaaf0970a958a1d8cb19568a551178c9a243b39662fe83c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e077b5193de2f515911c268ade6049f676b7ed8643a55c86114f31feeb16e80b
MD5 15e690fc9717ff6c6259dd9b63b360ee
BLAKE2b-256 1001ce9aef9e4707bbd7af4afcbfc8f2bbbdbf763eed6fe4cd397bced405911c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5fa577740c9fa8bc4a507f26af9d55f711db42bef058d9218bcc4cebbdf0ba53
MD5 553033a66e41bf54bcced4e794effe11
BLAKE2b-256 45aa191159eedd02d70a2d8592fffe3272e61036480fd13460f70a352c04c4e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dc4d3a3582826cbdce9d5077440e501f1ae0558207dbcd37176f1e5d622c27d6
MD5 8c66a5720d483ff9d91ed1f226781719
BLAKE2b-256 600b0f52776bbfd1a8f17ba5261d370bb04bfb2a07502dad9c50095682570f5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa573790d56b209196287ed4527b94db868b21ba1ef9121839cd6bb12fd65113
MD5 44905712ca356c762ebe95ffa5ecffbf
BLAKE2b-256 31e8a29865007b4aadf0a0b16905bfb722c0daf82c70cf5233089d5a0b497f21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b2e1cac6ed08dd312a78b7dcd5053744d890387c7099da5631d234812c82be6b
MD5 5ba813fe249e64c79cd4702d82ba3656
BLAKE2b-256 9bb6bb14565e32e795f519d87dabe94ef5c0b07153a717f1ebcd06d1d751791e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 923c8bd3ee6f6f600431890d9436dcd036f7e8d1a7f789fe1ee56a7392cfae92
MD5 63b73d3be5b0a2ee391d14569e8cd96c
BLAKE2b-256 74d15e3c368ea6d2a1008a49c5bdac3c6cd1ffc3d8d6628c36115fa8816cc68c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aa3bc5d74c102246a9bd6f30ce3a08a9d45442bd5530ba20311b025d79f5a845
MD5 2477f6d111ceb424a68c06fce59b9ba6
BLAKE2b-256 7703f1afc0d6cccd1ba32e68326ac6d3c7cbf0b4a2ad71b36df2300faed9a332

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4201ae9d527423aef56a26535db05480dc56de91a19fbe89c2ded65675570156
MD5 9af28208945227a52a603442d1871c57
BLAKE2b-256 1377b04f7a0ff60f9f42dc717cc80cb1109b8d3e122f7bd491acbda478262f1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1188f66d49e45db70abd7416137982525280e77e286b6f0d356102ce04ab655
MD5 af60657eb3fdc8fea12dff4dcee4756d
BLAKE2b-256 c07d868b42d7c54f7f636975680e3a815e21eafaafda0d1d1f65606e4bfb30a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 98101dd593388800ee37acf98c6ea847dfd0de63a9cc9f93758433f0f1ca0b58
MD5 e1d9bd306cde9b0e901527e3ed36e767
BLAKE2b-256 317f2ce7a21f3a11717a16b6bd31afe7bad90b256c722736787395531ff49568

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e3dd3fd0ef291f31f3eaee4666db39613800b804b10ff27ac78c9fc390415638
MD5 5473124680d2c49bfdc24408c5ad76b0
BLAKE2b-256 4df2731d977abd655330c3b16e7835b5987bfa5ec0349791cb624e5a82067229

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7b7ec21a34e85b28bb86add26ddff167232c52b5629cec8abb78c59a13aa9935
MD5 c337b40695dec3961c6ae5d9ca9c83ad
BLAKE2b-256 6fdc9a1edff2821431a13f8358e292cad654dc1abca2d8090444fc729b4cfefc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 12ddd82498a65df49ac611544741644f2c70c31014dc59db921698227f7964ae
MD5 24b35caf92683c81439a332db3adc05e
BLAKE2b-256 13eef3eb4fda3ef34a1e70698ac93d9d15e149a07097d6317d662013a83a861d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4874f4ce7d00ebc559bee75235bf970be422a172074ea01265f55ce6c1403f0
MD5 24dcb7af85dc870a6490be32e9c4fb3b
BLAKE2b-256 8c3262299feed540579370d0b7e0f46b9a735cce51ea31cabb49008c8ee7c334

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ec9449ebcc280f0f348b906b4874ca30f877a4dbcef9c8390b6895df2ad1a2d
MD5 18f7cefbebff58fc80f02fd64803fc93
BLAKE2b-256 88361b71871c5fb889868eedab7789f3bab4801709be271e8e1d45cb29c7d25e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 451e70f1748bbcd68a2ff0e3116be7e93b009f00c175ebd43b9b143d9edb5da5
MD5 b1fe9136853197a6ecb27b8cc9001d8a
BLAKE2b-256 c4da1733e09420bfe93027d535db3b993dada545b7bf11b82e828f5f0a8624b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7d83a1eba72c7b36ed65f0adfe1f167af09e71c475ecbf02e9aec65a93eef6ef
MD5 cfb3b69f5e1385534037d17b113635ba
BLAKE2b-256 56fb8406a73fab7bd54ae03fd56be810ffa0709c076031414b30be8364da7e73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bf05077f2ac53dfad51a0962424277b590538563437cd14716c1150ff01f1a8b
MD5 4b1e16460bde3bafa1e7105a6850e488
BLAKE2b-256 60002bef63970b1257a48d4c184c77f46ea4a478845952165dbd64f916534d44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9ca6b3bac6665a0c80e34039fa4ab19c8fcabab2986cd3175d52180d8d214fba
MD5 d8400622b4af0b1866a85c8777fffc63
BLAKE2b-256 de7caa316a1141178acbf72e52b662555e293a86f3f65e4a2cb910c951bcbb17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 701556fab33e9fb9fef9d830ee06b039a3ba10cce59d4df538a7896daa43cd3a
MD5 86f3ddd6c9546083414eea65de714648
BLAKE2b-256 fe619a91f171c7f43020feb42b185313879f804ec3c9950c4004aa236631edda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3ca34780fe93dbdb6e9cbc69904c23c846a2cf55c0fa57ecc0f822098417249f
MD5 dfa7d4732a4eec034f008e430ba68af2
BLAKE2b-256 b4ad473b07fb51c809961366b32cdaf1cc3c8a714e5bf6a951e46c30e4e43dd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6430f8f7338da5152930655542184a3cd1db79a1075c6e1016f7a41fbc76a577
MD5 ebca33a1334da0084a63a92c6fc8086f
BLAKE2b-256 34c27963e1cb63250a02f5b5cc299dafa5c49f7bba9ca816a9bc88690b10bdbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2536080726d0461a5d905963c315a7debbd45b613d20ae0eb1576810d8f80cd
MD5 41c0b277dc74f902729f2f2e1c16d2a9
BLAKE2b-256 c4f485941b8cd6388d91174726ed932da46aab9097f57c9c3c5580c391a83633

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ed3f33eac75726a5c64ef6728070a2302b0361589941d5d1aeefac557f5fbd92
MD5 fcbd4f9387a473e451846f06088e9205
BLAKE2b-256 dcfbc8bcc43b1f8dd3820d4260c69d87212c0ee8a7066a340f3ef5a1572411f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a20970358e6b7d25a38c485f1f7b81d16b207c631163a71d0bb05cd622a6d9c
MD5 b102008c43c53ac0b25d3688d7a1cf2b
BLAKE2b-256 bd3126972011f9f098ff3325cf332bb810479567aa2fc37ac4ae847d37af842e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 65f7f31d60461068d69cc5354db3aab207352efff13240fa9d1d0813a88b95f2
MD5 d39a547ec1c0397e94b73d7e57aef4a9
BLAKE2b-256 43205283ad09502317f00b9552b24af96a65c558e3bc1c0f5dd9ad3a1e045bc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3a7d0fdbba06a773c1a1e4a1c02edba5ca0886698535b7c6841b1f8e84745189
MD5 ffbf9e132665cd4a3ac03c1800d585e2
BLAKE2b-256 92a0a35cce9378f48507676cb242fff4200dc1afb283994f8b6e517204a53116

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b41a4a7df8baee297fbc510c511521070ddb49b9c6ee1d0d2e00a6fefeea951a
MD5 bf5e5f5c91c4f849c8131d79c342cc05
BLAKE2b-256 c346beb6bcaae81ea1fd596c82f243c5988f9058af7017d0abd6ba84beda13ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3bb9effd2912d9fe6d604f84684b220d6ea585dc18741c77114d6139baf4dbff
MD5 86aa9e671b4e85d4e9e89d46399d2066
BLAKE2b-256 6a803fcbb3ad87c26ae0e453247bbc49b0ddec883898652122e13d32749782c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 578ad91959902fb1abffa662d9028ae7a9079f2930218e93a6472cd42998e985
MD5 112f1ef3aac716efaa34ca4181d116c5
BLAKE2b-256 7217cef73682e4ea805f858587b8d38fbacb8d84b6869cba6c7cfae41dc04c72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e10d024477332134d60f4fb1ce2c41bad55eadfab6eb65ccb5fc9a20eff7c497
MD5 265c33984cbad08d614c550ef3bcc83f
BLAKE2b-256 3e53d3f0e89886123acd68e2d4f9bb6653f311b77d91017407b3e1cf41b8dadb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dcc54268344bacd548c16f4e444d71ebf796827e4f38eff8adc03c8cea7aeb85
MD5 f928829c2a9bd5439e8a10a82f95fef9
BLAKE2b-256 fc4d6fe830421666fda31db23def3d843ef95ac038e1f797846b8a6dad261abd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c9233fda7f886f6f7fde01a299d1a1f9617697080f798cd0b082aba21191d854
MD5 e9af3b10cfaf8c0fdc3b2bd2dbcf55c4
BLAKE2b-256 1634ec586b14fb529748568e12fcd095c0f831e396407656c4f197c8f017036a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 cfdad60b52bdc187045b221026fc6ba48459307775b7bd88323366085fbefcb4
MD5 49bf50e163173bc297ad454dea9ad887
BLAKE2b-256 66dac5981369c56dc608cbdd809030052c2c1f9588195c48d0cdf4ad1576bfba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 094f301f2407ec6883525fd287a4a13e39dba739aed41fd213d66cb18e8dbd84
MD5 bd71ec03850713001b1ca94214fd07d6
BLAKE2b-256 d0919dbe0fd86f34d96337b868543c3121267ca9d4bdf3529d97bdca418b47af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4bd2bab50bae34cd2d75922ea4b461bf51f80e9ba13c85f126e66dc07693e04b
MD5 0529458e78a50731c7b896beb69eb315
BLAKE2b-256 16e7b81e4876bd3d59cdf1a62c08c43aaa684ff1a19f380f0069c9eb224eeda3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9d88b0ea3541a41b3cb690b17530f6750e032bc92a7fbe140124882b9585b001
MD5 2211b5b9e36581408850dd3d4e31aff2
BLAKE2b-256 eae0867cfd641093b74fa252c1393cbb81f2159cbd691a1cd2812fc12d656d10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 80639307eeabe3e2d996f702eb50b40f6d30b918a1136f2f03eab29e76f4e533
MD5 dd800ada34386387d76145a1024bccb9
BLAKE2b-256 b96f1bab128d04470acd9a4248aa4447277bf9c78aac81c63e3880f1e59f66e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7443fa9447ec69f3961a763e04ba0f8fd25ccf62fa2349767693137c8dc882d
MD5 873697b6cfd6ae2504f285719dfe0e0e
BLAKE2b-256 3bbe0f322b09ebad556c97eeb7dcfb79630fa003fc1691abc024b2f43db96fba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0e530c6f14a60f4f4220c2f984383e6c428ac9df1112b8ea9ec2a491782db69e
MD5 5e202572bf0512863b2e37157b6b0965
BLAKE2b-256 84fa710fe0b143144b0d6adc4e73eed1a3d0155e961bea493e87e1e9783930cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 434f9ff6dda76607f21186530e64de2a4a695dab2a9bb9935aaba6094ca95d1b
MD5 d5b5645582ee0db78eee7f6f188a339d
BLAKE2b-256 01439085381b9e515e330515d10d213dc9132c53a5660fc7fd48819b754397be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d90e2ecf8fb6e748270824560b3a6f1dbab79b93b0fea33e11d4f19ca7f10be6
MD5 8a1aee114e8587cac89ee0e67df536e9
BLAKE2b-256 aa5d0e23d187452e06861a0feb0d5d8e5079a241132f25adcd4581f371a16001

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 66596bcce29de8cbd181e82038b888d47bd1aef74cdd7f90d597299d920e2bb4
MD5 4afa759dc8e3643234fcb679b88f8cd3
BLAKE2b-256 3720d6bc7fa152181be3b94709d7dc5174bb38aa2b7a0a07f30c381296dd6c7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 498d017cf00063b81f8cc50a0e295d5c4c6d95554c340525852685b12edfbe76
MD5 51b1a81261384cc0312dd9cdebc842e2
BLAKE2b-256 31f9b9bbab174df9c5ce1ccc04684920c73f6f86ab705bd80d9f80720020c87e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8b49cbe2ac76c603d7a9394ff29a807a7bb33019e8504cd8abf3590bce5aa69
MD5 d389db70337ae424c00c6588a3e3bcfd
BLAKE2b-256 9e69cf9de4a3c6d9cb9681d91ccf09207eafe33218c2f6238dcc67f341bc48b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f211e50951693a1b319185c0a17f87db118dadef289ef061496cb34985386752
MD5 3038b6dbfd9ef07ff763170d62d8dca7
BLAKE2b-256 6d025bbd4d84bb7b7eeb57e872acea0c3911495fe20ba262347711aaf99b13eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 79fad6c887b0c65bd7e5e33b8a3d4632dd7322652da3b35827aa6097f8647da8
MD5 3c7e50551a4aac92719026c36a65367c
BLAKE2b-256 b74c4f5032eb76c3669bf7a1be15530aa6da4745dc59316293e8b0b2965c7976

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e36f42d8fc21f3d83c24814a638e4cd98a421b32fbcdf9c734a5f0f804618a46
MD5 7ad47ff343d224a2590c0ed4bdb2f2cf
BLAKE2b-256 454d47daa2067133870a2bd82d231ceca043f4618a65be49c01f3ef625f1ad93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 987ba124e21e9f1ba3d03d7eadda51cde2b39033e3033b4e7488812a59132665
MD5 ca456515a7b7138e2a918843cd432dbc
BLAKE2b-256 1e0ee2c531693143dd5f281632929d0dac3dbbc9afdfcd5db6ede7b04c835381

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cf253416c048375d99144628ee7e3c0fc940e6f7c6181443adc251059143e495
MD5 0cff39d2072704b0a9cf98f2765f6269
BLAKE2b-256 f2e63be177cffc889e6cea4d27ce72aeccfc1fabeb6268a6db8c7deb056a10c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2c2e160eb0856a3eba700463611e20cd5672aee4c0e25a2b923f0c64b200fcae
MD5 9695eaa8ba1baf1a6438decf0eb97874
BLAKE2b-256 73731fe6be24ac2e4851a310853ae557917fedfc0875518580c0c49bac34f48e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e70fa2f7af7143d1af6c716c70c51ea9b0b557275de13d330429709efce533f0
MD5 bbfb95c45c047156a42d9e14dab60d89
BLAKE2b-256 0c62b5234d9d2c2d490a8eb33daff9d2d97d7dc0714bfb4dea1fdad664011876

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a244466aa66f56d6475bed35216f4a4328bb53ff77b576ee0cf1ed15e2713981
MD5 16c500f4b5152f411bcf04fc08e69f90
BLAKE2b-256 0a7beb51acf90008a7055888cce29fe1302769c1691b11bb5e0097a1eca48972

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 735e115faf87cec74d06d0ea8c261a1eecb6ccfda23203a7f44bfdd64b5ea9d2
MD5 3e053a989b4ae23d2033b4d3d3f516ad
BLAKE2b-256 29806bb968d6008100feb393d40d9c2e034cd008367a25b84e678b313f4ff6e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bf71be6bbab34a56f6f0806df445626ad8f0e11bf97a181b2dcffd6898fef58b
MD5 89ff0e86739253799f00af00fcce4a54
BLAKE2b-256 32ef95e193fb1b542922f1ffaa632e1df3970c16a4eec1e920455048cef6a2f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 12e717edf9d39f586f71f6c2bf21ffb78d9250ac8be1c88245a0c7206231cc3e
MD5 5cfd05cbef3d81c1d227d4157b8a7442
BLAKE2b-256 38235a224589b31c253ec298966830d73d2590c1a07505054c3c9b13860e65f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 85f37ed22464d9dcce62fda12274e932a380b9ffd6182d5ac84daf7d5b3d2c02
MD5 cc3d295a07deeb7091d6d14ad9868620
BLAKE2b-256 c4211533d565a09c41a4d4c6ee93eec20e623a328b1a38415816db82df873f4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ca85ef9dd691ce674d1b393c09403ff4c1546efca0bbd3d546c528015619e0d8
MD5 6d692529d2c7e8c32010b321eea9a81b
BLAKE2b-256 595f3db4a1ca0225191d9bbf043aed8cd81c56293bf1e49948196b790a404e75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22f45be8517ad1756f4bee9063cb728e8b00a94f5dc3d3face3d31119f1a1c45
MD5 66ae169a11fd5c727d4f00ca389090b7
BLAKE2b-256 e544c5bff35975480ad0aed2547ee64e774f8d0920a5e6d6f6201941bfca7830

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 41f9ba2de9be6a591ce14c4e12705813ae4a1b9b76e1948897048a1ba2b9b0aa
MD5 4ef0e7a762c976911070595f43d453e4
BLAKE2b-256 fa79eebf9603760850ac04e7f9115bcf641a583f4389528e66085f43aa6a3fb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b22d9409e6da9acb5481b5975446c376bd17900c1560aff26308f6b4db4be8f1
MD5 31d3474c1189402cf8a51820b8dd2d90
BLAKE2b-256 d351e02c942334e460a9155c9967029290c1e0ad80b5412a700e209d1ef856bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 392cdee4316558f13ec31f9b6724acf0600ab292968fcdb50cac9c301e54228a
MD5 27e0b4b4eb121d2a1e18b400f5c14471
BLAKE2b-256 86263cd6fecc5f6bc5db8d4ef13969d81cb55c12abf1cc5eef52a225ce5d81ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c2d58a731e178edce27d59cbd130d593d71d56cccaaadf161f4f1a37e5ebb8ca
MD5 59873a23d2f0b0c30e9ece4351dcab64
BLAKE2b-256 d941e7305e4c64ecb36c5f9dc815f6397cf791a706ab3ef94d3390bbd6c8ebe3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1c87747a4be919a4dfab894b645735064c2b93a06d793f865c7f24818ddb219e
MD5 18ed63d082c3a8d742f9a4175694bc6e
BLAKE2b-256 e77f8976053ea6cfa9e8d54efab0b19739984a6ef2ae683ee4e69835f90e5f70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 06e97bed6b6e352a4c520ecc43ab06b46fa2fa3ef43384be78d96a5d3ea8c44d
MD5 640fcde73371ac90463342f463b19086
BLAKE2b-256 840de2434ae21aff95e7f5468ed73cdc0e28c176dd8ddb57544ab804b6699aca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a0249b0ae0865519dc77b38b45f471861d5a5a6c86336018cfb7ac868ec302ee
MD5 6e14908b71e0542b4f6cb7515bb3234a
BLAKE2b-256 43659634f4d71548783454d7f7ef9401a534ee0ce58a5be831428af86d48c5be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67e08916aa913e4e0b029b83f34afa43d270c6abc1b8ad5ea0c09a0a82e7934c
MD5 dc87ce7135bd0a38e51e6e6b0dc28806
BLAKE2b-256 0c7a3832210fed8bf423dd8a7baaa365ddf7603ae124a0e522d89fd0723e5079

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a9ee92790d76ee512aeeaee48cadeddf5f389b6eddb9cfbe5a107c10e4dae25e
MD5 78348ed864905c55e61a82547532ffa7
BLAKE2b-256 d72f72286488b70bc74672edf0b00e05c82527ec5d067891b1ca5e140bad4f85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b13b379b5fe702571ea4c5a074790d595fee9eefad23644527d8b646ee43a904
MD5 6293f0c952d602ad93d0373be0f4a2c2
BLAKE2b-256 e6bf3e88068e19e19e9a4fc0ab462bc292d0bc83b526b4340b66fdac9dae0be7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dcf6574c1679c1bae3a1066d7ba9bdf75d524d44157d97e42e7725178fc98fde
MD5 d5357ade6c74b99c21936dde8c009557
BLAKE2b-256 26b8cb26c709897c9600340126349c2c013458b519b9b09694e7f62579be25e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 68c980bbe5cbd2efae6ff3a2787525b2be531486e6cf6b20205358ffb713ec8f
MD5 8d0b98bd45f1cae4c8a1f05eeb796fd8
BLAKE2b-256 3bcb5197f34e14ba9d18b231a10825da3805c3c410f210cdc88f1e2f5bcdf9a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42d9552a5b243871792cd60b815e2546556cbf4fc29c58bcfd49cb1ef06d1ffa
MD5 d637b8af2267f8e96b5bafdcb7618c75
BLAKE2b-256 40d7dcc095966a1d00abce0d5230cc619660ccc0b0402a54895f472da4387bec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6c210fadedea67270bb76cfa96826ab69922990e7d6ec17e6c118241f545534
MD5 9262e9486c02d440e1e12e20b03a1057
BLAKE2b-256 fb94d284338c2420d25393de6f83f8cf9c83e2192ea5ba9de69504587706bb39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dd4f182f97fbe71919939a48c7460ac40e7e7e777ce52e87bff28125b7060de8
MD5 6647d934ae7589f81fc4b8c21719f312
BLAKE2b-256 33f7093d919c702c42d16a7908b95123d4351a0beadbac88c29ec845000f282c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4947410ec77b7b69a648cb4fa08646cddf467e1792ae111ce16425687bef7834
MD5 eb6e357912ddf2a732fe4ce5f2f83332
BLAKE2b-256 6eefc07bf0e29307baf48769dcc9e8c3b8b3d2b61a062b1267232e4c99dc7a2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ab82413ac0e0d3f9cd0fd9ce518e169ea21e7c4fb513b77983447d8002e19711
MD5 7a5f61047d3d4a02e8e2c3a5f01726b5
BLAKE2b-256 9c5fa0519ae71e6477ed6fd339be66c67b3b7ffbdaac1e6d3d3866628b4e737a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7afd64444236d88f78ae42d996a6d914ba8c9fd32a6f11d8961d9972cd9375d4
MD5 19b71f3e24af386b3446d229b18add67
BLAKE2b-256 e35defdee3f206fddb7c98f5d3a93901725743cdc9cdca563cdd66bcb3975863

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 153ab10c0dcb9ddba40ae61bbc22873fdb6b537a9ceb0aa80e52aec221496793
MD5 97f9214227772b509306969f0f0026fa
BLAKE2b-256 b7f4a93362e9045a52fe5ffdaae43db8cfcddcf0fe48ac837df5cd83719502a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f4100d072014693ffd2a04d347b3bdca984c75e3419119b3d1871348ce30a2dc
MD5 7d43c1fe8461c14a1cab34d12a0de119
BLAKE2b-256 d9583978ae3c2ae179b5346a3644009bbce91a3a5f1f288ef30976a96ec3a43b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e16f4636c5530d0488bc81f751e88a46e4ef815c294b1f912a67270fef12de04
MD5 4d0fa4046f1f98b4a03c043d900982b7
BLAKE2b-256 6cedda512786d77fb9e717864697a3ab58814abadcebe162ac5ed577f61f028c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 684031de059a2f8aa885841f337d900f568560e8af386882a479826d024cfdf4
MD5 12956a1005a24f69212395fef8c1aee0
BLAKE2b-256 f8130be1f392948ad4ebd3a336b69921769a4ff3de8af5945a4c3597ee296095

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b8bf99ba9bc0daf8ae9f484bafede0337145c7c1f6614130e57b40ca909ff462
MD5 0f61f8f6d6ef1c24fba6890db0b1fed3
BLAKE2b-256 a535db6b647db53017dfb1afaa61db778844a9631bb3b8d777199c90c6c059d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e9615d5b5e5bae5b778d61b9eae6341ac05a90b81f5e86edb50421cf5344a637
MD5 89a0948bccdb492da211aa10c624883a
BLAKE2b-256 b66b34e74dcdb88eb47570eacda59b296cebc0bf95fb165e4ef83a718d584d97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1119f3d07e2e19873cb1b21108a830cb2f9f3a3daa01dfdff9305d214fef1c97
MD5 7f61403d5e55bf722aaa8c64982b2a37
BLAKE2b-256 e1edbfb137d64d207877141e912f725f305ff92b65edad061a97c36b97528005

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fa0d4c609e9215abd4ed4266f60ac69ac4568926c168cdc5daf0c823543b1799
MD5 c393c110b3ce1b55c185cb44f6966f8a
BLAKE2b-256 c9afac940a29961270b05c13d22883e3de94e275edaaee6ca637111a607d6677

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab5d9c2223cab210cc780233baf7c65f92f228154bb7e3a54d20373bffee65e0
MD5 8031b6da229e71177193d878b4027e7e
BLAKE2b-256 d012888a368fb16e06276a5129ef99a88f1eadb13c678225240b55b32614d8d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2ef3ce4bfaa22f0a0a10bee87013cb4f3d19332a43c2cd821b8d7128514ece49
MD5 77824eafd6f3ca5e69b1907df7c4ecde
BLAKE2b-256 1bfa2e26f8185931853d1869e0dadc2d75bfaf4aac182caee7f219e45aa236a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e623735f930802ff828da6024f0f398cad720085e1f731edda45ffb0ecc1e614
MD5 8667d90ecfdf7d55cc2c12242ab859e9
BLAKE2b-256 4762e0a12d053c267490fa6dbb24c9c8543b14ef8424a6db62fc14c7d8276fae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d2a44372f9e603ffe050717964c8d4b6e27c333ff9a15b3446300f33686e43c
MD5 ce9ec343e15b00cd912eed5b8216b9ad
BLAKE2b-256 ae2c2669c16d6ebe5ae3c91c17da93e7cad3ec7face26a0c63432ed79c0f9d8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c65aabb00fe285ff88bbb4cb256dfff102a49b29beb2468a8ab25a37cd187ff5
MD5 f15ef0d57d46314196b30101ce8f0746
BLAKE2b-256 6b1319f623b9d904e1d4ed825e8d046b6e1fa3714ee78724e54d8bf5982ce1cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 25f6f2dcea9297bc59bc0d7cb500d55c22fceb22bbca0a5795531c07c4ee2825
MD5 18a7d72635909fad2b7616f23c47f220
BLAKE2b-256 730eb2ddf6df7367e616077e97c83e710fbad52fa5c903a14b17b0b2dc04d6cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e0d729458c954e73f6b102298442f6d1ecea3a305edd1af47a0c3443c7194d63
MD5 ae05f6e4df69456d57b30f9d1eaac4a8
BLAKE2b-256 24a9a23f6b11b47d16ce01bb2c1b0314cdb0817b29d0c8a42bd46abc3a775a29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 880e37219e14e731bf74fc21c5cf196323750b3f38240b45a5fcd755846c6776
MD5 0530dcd826d1df8f4c3ca05cfa2bc948
BLAKE2b-256 dec567da6b98694902e96ce2e37f736a8b0ad82c1985f26e0d3a9ddf7ccbc12a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 823e6140ab299b936e869e7b9d41c251d89aa8ac0733970376fca399d2a11647
MD5 c89b25271b02250027fbfb378e0e95c3
BLAKE2b-256 8ffd72e1b39b2fc324d89dc47a868a39675b4d7c3b7533a6642133b4efdc5ef1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7a21ba5f1d0543ab165eacb27af6a1bda0904eda5a07d9dd213bfa56badd50c2
MD5 50b83c415d09651f59647f31a0745bd1
BLAKE2b-256 1afae561856c63d4d855f3d57138ac1bb431ba79609f685afc8308fe3ab0b52d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 93bd8ab0dd16aaa08d45e6fa200ffd2d85f4b81e121a8f771fa2b40196971129
MD5 89e4fbbc5022b32529c1235499cc3e8c
BLAKE2b-256 022aad82939b07457e9a2310e39d66132b3c60b417996e6874dad65dd124088b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9b6d9ef7a5be6cb28741455d8653999b992f5369f73ae3d2f7a9b148d6cddefa
MD5 741112b7fb98fcc7c749cac852495477
BLAKE2b-256 225095288ea39c90696ac37fa884cfe0c46dd5e3ef9bfcd91091f1952c25c463

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a26d1055a6e0fa3f847ed4624dc3783e9b631e215dde361781021e2b2b2f1d8f
MD5 70deda82f696c3df074d24998d43656e
BLAKE2b-256 b98c53231469141373f358932865fec7ba6234375889f2e69fc5a20ac214c6cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd614ba0155092f58f436358fa99321a744c01075fe483c590bae92dddc22968
MD5 ef04128a9f3f454f0d6944b766c6bc92
BLAKE2b-256 cf83255ab88e233b0cb697ed08593b5d9f37578f317768847a55057d22623c9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0e7628443f8b8f65ef565387e00a84b0dd5b6766f9439f093d86e9922e43f340
MD5 2a0a9fd7e7bb47e0911cce1256bccf36
BLAKE2b-256 8c9700fba72aa8b08aebba2250da71dfd0692e2777a7c8aad448719e5616883a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f544c750d275bb042da18b3a34db800c3ab1d4f65a6adb4fa7ce4bcd027deb6b
MD5 62d29246a9b9f6cdd8f9e7c15323e9b7
BLAKE2b-256 2f9acf9aaeeedd675d8979f3cf882ccdd2ed715132f5d36ae555b88153db57ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 83857055dc55495cba5c06376bf1ff2bf7483dac4c313a6b9df486398502350d
MD5 1f043cab15b8b04e9605b06fb72ce772
BLAKE2b-256 b1cdb4254262de1b35c70e3cd5b81cfdd188d6348018516e051379c995d9757f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7cfcbb0b3f56f86088d5dd15c5094334e6abcc7702d5be4fe0e120d47c34cfc
MD5 a459d75a40e963f1412bb28b740d059e
BLAKE2b-256 5be4415abac6f3cccfe62b5a1219010d1e9f75158a5264d938c1d00552f1619b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e7147dfcf380227f9953cd4fc1f5b60bd6b9011042c4bdc69e049210393db7ae
MD5 0f520020466310d15b1deb04346e8c7d
BLAKE2b-256 9362cd78c7a7e4e84c0b06806d17a878d6e6ebb270ef76877f4e71a6ffe68585

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 54973366fb501647e860c38a55db7cd8dac069d4501348e19cbcc204cb8e4473
MD5 ad14cb8b9a6902673c15760b6ebee6f1
BLAKE2b-256 b83fb5e8ed478f57d555fbac462219c0d51f6bb92d71f74c7f25f55f731c8c45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 500056f461a7288eb77d32d504967d453b2e8aaa9d10a6c08bef2ec0b37e288f
MD5 13bdbb36f04fd63667129a6c4fe805d3
BLAKE2b-256 0a959bb418c0bc89070db9f4b3d7dff502738a162dd921224f898eccb8425e9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5d4d45e10fd8174b4587bad5b90261c702d4c9c4f6bfc04ce3afb3c03af8bc4d
MD5 02650407ef821bbed5dd931d03ad6eea
BLAKE2b-256 e466a7f064d8a96f3a19141e933f7e82ebd1bba70971490ed6d650bda6e68cae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.44-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e845ffd268a45c1ba08c987eed85aab92d8ec256645e875a87ee53d4bd991e7
MD5 131224b023a9ec2f204a7d6d2b14b64f
BLAKE2b-256 ae310edb6675c4953bb32508d9ee04037e065d005cb8258e502a4993b44b35ea

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