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.46.tar.gz (486.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

attoworld-2025.0.46-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

attoworld-2025.0.46-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.46-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.46-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.46-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.46-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.46-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.46-cp39-cp39-win_amd64.whl (998.7 kB view details)

Uploaded CPython 3.9Windows x86-64

attoworld-2025.0.46-cp39-cp39-win32.whl (814.5 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

attoworld-2025.0.46-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.46-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.46-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.46-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.46-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.46-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.46.tar.gz.

File metadata

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

File hashes

Hashes for attoworld-2025.0.46.tar.gz
Algorithm Hash digest
SHA256 8d94d70d4a8c109a1df021f544444569bef47dbc9d2a8d6d945d7c580b6531fc
MD5 a7f6aa930fb065e9ef732146404fbac3
BLAKE2b-256 bd15466eb5f95247e9dd31c6722ca7c96a92d185cb34fe2bd56258fa5a0ebeb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a000c603b25a1ca8d2c9dc1b6f0510c075123987df678867121a2b385ffb8e47
MD5 37669e6849cf4bac01ce28a51cdedff5
BLAKE2b-256 5f252d681a29e8d4a5f1233a0cef31dd2eed9c3a3644e1e9e71b1f7cf911ae2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 781929037073fd94f69151359f51e8cdb478987c655c04835b61494cf21e9937
MD5 e68230883a03c31821f66ca26c8036fa
BLAKE2b-256 c979d4381b8b4ffa58a5063a857974b10dd1c4b2cc741cd4e63ee7b527affea5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9598d78feb02540ee7028e36c178aa58baf6ea1e9f75a5dbbec87314c1cec6c6
MD5 65d36aae8d902ddf0aa85bca7a01d59f
BLAKE2b-256 cacfb5748a14fda15a8bc37f8d6891821e31cfdb2f218a2c094a0746b3dc1a97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fab3df07c9f138cfe9176dfcca2a859d80cdcc66277f4318953243e4725a5f7e
MD5 cb4dc72f114ba783103ce4e0485740cb
BLAKE2b-256 e3bfb8c1c9729d52bf009e3fc413603611790cc307f4700018c221f848ce8a48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 74fb9a13a3699d30e7f0adfab95cfad855d9554d6d9ed251ec46da4e36e2c25b
MD5 c5b29574ed86acb7c16e40a78b1b7204
BLAKE2b-256 28bf022919588c0eea4e642fd5b695f07e9a65166e900af16fe944edb4280cd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c0b16132745278fb659dcd820b803b0a91ab216617dd5e812c3bf3c0a7a4f6cd
MD5 c1e65579848afb46de940053f50c8cea
BLAKE2b-256 5d8da1ea6cc6f9defb978cd237ae898af5dd8c80058506fda1368d528b486301

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 00cdb5a642f2f3a7524b7ff64ea9c75f11ed4d6deb26cdc0bb88da0b4bf78255
MD5 b3375d70128b3339f1e91dc14b4d72f8
BLAKE2b-256 c44cf400e2b47cc604ed686a31289e47be3b966b3eabd2dc03227d16885fc61a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5f52c920962a630e1b4f606c4f9eee5923b280ccca20174d03e14b99702898cc
MD5 8f05e1e65f34ac920a317716599e606b
BLAKE2b-256 aeed89f99bc205f08b6042b4b5b82f6655bfb342f6b0bd71c936a362b93beaf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 89be23defb361da0329b10b63322665673fdff24b8be84bde7ebbbddad6b903a
MD5 0b89549117570baa1fd842a6cde34b6e
BLAKE2b-256 a25f903041a319516046ff05cbe2f22067cb3a7e24f51ffc41972015df1a15a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 57a97b39ff4388bb0aa0b33bf465b873b500482039b87c7f3c594e43e8138a7a
MD5 f2c7032ab9c81b4f66f1d4eb6090521a
BLAKE2b-256 bf1e9b27addc8f0b797ff25363f3405bd7a9a8658d9175d31c051a044b555bd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef7a54dce51832e41b4d9ee62ead746e0cc288070d7b338f5d266f0a24f0b4dd
MD5 c6e9fe3b00348d2f12feb318fd7a2ef2
BLAKE2b-256 e7b2831f9be5b51f4e569e1377a56cad3ad0ed909235526149afdb77dfa7239d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4d8325082b7abbff6a27bd56b93e3fc2bae174b119948db370e904dcba4e0804
MD5 4e14c553afa41dfa949b2532340aa4c0
BLAKE2b-256 09a9d48772dd75eca88a8705cf66566e618ff172cb004630b9eb0fe1253f31e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 604e9fb2f904b6a89f6660e86329ef2dd8e464fce88048caffbe897ec34b14d6
MD5 8de48571f00c98b8b65769e4403d423e
BLAKE2b-256 3d9547f15a9d76231fa57acbec66abb889f77b7dbdc8af8534313219f02c8801

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bc0f9f88a5c7ad3cc240e57f1785f00b394935d1cdf7b057d99d7d18ebe2da81
MD5 637c7a2912975d40dcd8fe9e402a8573
BLAKE2b-256 4f2b22a79714644dc2ff18d3044f21e82fecf2d759a54ae7485655d8a61a83c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e1bf20fd5c1aad83dfb700537b1c73cd7175e8a6b70abe49bab39ee6280e9450
MD5 6263101f489f82fe0fe641038a49bd7f
BLAKE2b-256 85fcf9f256d23246beb7c44e6d5cb8020430a3d177e4ee9f25fe6bde86fe47c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4601c528128bf332310f00e7a742eb3859a5957e6d3776d8067ef7ff36a19eb2
MD5 f79474aaebafc2f77b0e9337be859b58
BLAKE2b-256 c5c1e7b8a011b2ebdfacb69a870cf122ee865c075af3229f4a03462017b7d28d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c90864a33834bc9ccfd6de00ad7426ba079da2b42ec66f2d6c3ff3b470993fdf
MD5 984bbae0c98adac3e6404546fe07bc6c
BLAKE2b-256 17bad25a2fd9a00846f77b5f6e65a2ca39f6978f0427645710bac87f7bb3a880

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 15602cf12c85232c958b0be1b08cc9a318a447d597b5bc404bb0288492341164
MD5 9eb5902034b624a64559d7e4feefa21c
BLAKE2b-256 d2f3610d3a5137b81ee3a8696a4eec502d7def8fa2b43ccfc7c2542759d1fe88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c4543905931962936fd41741791b8e5980f9b9679f648f9876f6da0dc27a5480
MD5 b389c82b71ccf8bfae440ba2d92d1ea9
BLAKE2b-256 b326eb9463ce1b1e64efa1df1876ad2a2ed7f8257cc6584547913969281b5b9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 050c0714e9f99c73c9e29812d18678ed280801afb035b953a5fef5fb393c3405
MD5 edeeee85681ae9dbf701b12a1e36088f
BLAKE2b-256 b407d7533a152d1d65c686c0c7487961e3dd339e6658b0fae5ccf45682c3bddf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4633124ceb2d2ba828833bca355db6946df1542a24850eba642b6412775c1292
MD5 db27523555d44fe159c62386784b2357
BLAKE2b-256 e2cac0680c689d63ec56b81eb156c715cd804869b576a520dac289ea7d23a23f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9bb8f270b87f869ba71d835217e4a8af070fadac0afc930fe04b4f11cdaa22ee
MD5 6ed0f0497bab208f0df3257a38462bb1
BLAKE2b-256 158b0c453ba88f7c28cef4df5521a243fb3370879e25dafd6157fa63bdf0ba11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7648750461f729e4dded04982ac3d4efddf46a01d823856048d7dcd3ab0aa96a
MD5 a2bec6d83abc0d99506e74c6a4f795a0
BLAKE2b-256 a165ae2eb2b9c35b81d83376130be8f662741fcc6cc3a3728856364f51545d1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c5cad77250a62d629e94e531601cdd17f8737a9be5d7704e03462917d267d34c
MD5 60920df0d3ad8a54d27f8461be3a1367
BLAKE2b-256 2d70c0da4fe2bcd1265f5b045c2bef401c50563cf562dc9af15b2c4f5eb820ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9aba1149b8fae53654792076db58edfa56b544934bb05ba72b5edc9ce491b056
MD5 ce2948a888a0daf192f2a1f0b933df46
BLAKE2b-256 e1789ea52d91ee5c5a1b28fcce32c7043dd8e664750fb149b59b6a8b1508495a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac7d7e6e29a98afee7a3554abcf2041da0d8b4d53281006550a5b338cf4e39a8
MD5 a428f9a241ee8212cb6726c97ec8de64
BLAKE2b-256 a3534b178716558fe912e0de09d8a45afef3ab4ffdb01040761c110600ca6680

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b38c09a8917868c2ae9c34198996b57560b9e6ec3c7549c122bc127a69b350e4
MD5 ca2d3cb7d6ab54203eb9a8c5d1b5dd00
BLAKE2b-256 c93e852e605028e615ca7f1e121b4648655efa249bd41441c4a6f709257e7b6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d0816b3baff18010a9609685e5bb90104d5310289b12cd2f3fab2d6f37fce785
MD5 4ff6c40505899553824ce7a3473df831
BLAKE2b-256 4594f8d00b8c71e662c0666d921b2719b1cf798ad3569f7dbefb1f11f9af5fa9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 196935324e9d5e1f2be932a3e6040a6616838b4a491edf0d113584d0507ec686
MD5 f1411536dc792ba96f745b6c86cd68d7
BLAKE2b-256 83175f1dcad272c6dbe99cefda709a3e94d8adac09cb1dbcc5cdadf9604602b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 897e773f1b5aad5d9139dcd9d5a72a97522aed38e9cc2a1e382d16eed9c03ae1
MD5 2da5e2841d45b0d9311ad53a1558c3cc
BLAKE2b-256 45d89ce4ddb2e97d4495cacb24ef82fba08989cea9c4f7fc4e3dd81fdce09bea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 01310bfd1631c2b3a84614660727d7d3c656ab6a41e2061aeae57b96b3e9ed8d
MD5 b5d7e70a258aa5d7860fa39908254d6f
BLAKE2b-256 6e5fb7a9c7cdceed45e97d5b5650778b891cf7a7fe5b6fcd7ef4559bf2eea478

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 da224eedc4065e841eea25e3c52e34c69cbc58cb664118f3cf4fa2735ed48ab3
MD5 d3971c4eb2183b320e8379b20f5c3c09
BLAKE2b-256 ce05c5ee0623d3fb76a91375ab719e3f1f9820d5a83c83da25c84cca5425d9b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 406293acbf2212bd09992aeb792de794ae852d4399eee92748b109273f8b2446
MD5 6e43b1fcfb1f46fd0e829ad31d659790
BLAKE2b-256 c1ad7cc75825726c109286b658b3966498a26e9d1657e256f8c169bf0ccb49b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f6ee8ed3ffa5012e8267e7823cbdca7160ca9c23154ae384b0a0d1b1a81395a2
MD5 93ed0c6e58ff67be1534c801d9e19199
BLAKE2b-256 6b547488f350f9a3c6c9cf7277c0d9ba3c36a34c3f8e6e5217f9c1512f44655a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a5369e7115736b5cb72b0f859621531c94728327f5991dcb9ea2d3f4aa83caa6
MD5 51ebaf53a6baf3bda11ffac38c8bb25f
BLAKE2b-256 789b8f9baa06cf76c5b135cbecf597ebca9c281c29dfb39edf3ff6fcffef8323

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73984054cfbde5e120ced269101f78f171a9cdd6454afa4fda5af6fce2b0a1ec
MD5 7c7612aa2acc0b1bf24ef862c7a8c2ce
BLAKE2b-256 f23f47410c48642938c8e89b8fdd1edb70f30f73594179c3fddd7ea011533142

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bc274b4028f083bbabed0678797fde1ded362a743b358738df6ba1dadacdd7b0
MD5 8f8a001d09222267308968ae0b281868
BLAKE2b-256 aeefcec30743adb598c651851469f49e84d9067689108baf545cee1aa4a3dab3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ccb2ca58e65374bbbcb714908770f5d6b786a1ffeaaf6d9605f7e20cc6860cc7
MD5 b2e90bda9b255e7c2b825ab0c08afd22
BLAKE2b-256 175cb69435932971d913ca373a8d0495121888b9fd9af0b9dc2e9c566c3b5793

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 26aba68c40e3016d5b16ae15a0484c5afc6bef7a62e83ee2ef1a7805b1baff9c
MD5 cd919dafb15305b850e2d4aab67e696c
BLAKE2b-256 90e90b32e62729953391f327430b59295cc97a1acbc276600f0bbb715090c37d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 10412deb348a3ffb8d1a14cfd60b87f6994bef5b4d3ac12937f6c0de0ea6661f
MD5 4d1603d25d1045889c5aea23688b9e84
BLAKE2b-256 7c98049161c7952e7d13ae9e89321822cfab34a7993145c9ccfbd6876c22cf17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4b92924f2d160fbe89b4190e62c6eaadea4b3324d9f0e71a285912447602d94d
MD5 30b7009afda65ceeb70728bfe17bca2c
BLAKE2b-256 87bda9d589098c0f2c8044dc0f1bf658e7f4c6766768d8b0bb4f67af4a7fe77b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5ec049cf5feac53d589c4f4ecb2f03032809dd9710322937f3e1a79873fb802b
MD5 eef0fbbd00bcb9d0089b9e6db8b32c35
BLAKE2b-256 1260cb9d07fdcc55620aa03198bed7d792f867e5e3d0244edad40a718b9976b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e408ffc9576ea0e6bc3fb73932e9b3bbcdc404acc00b995ecec0644d9c21baa
MD5 e73eb02e1dacc701f565620f000c5b22
BLAKE2b-256 5b2276fb0e41c7f18053253a812e485f37b16b52ebb4a1dc3cde55bd32599b9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c2c11855dd4ee196c3eddc35e4c97b625cbece0b6e40e352c4ba19f354b5f787
MD5 ce88a6edff66c9ceb71994e562fa0717
BLAKE2b-256 93b8af124ae4a9048a5149d20b0070ce8a115aed5f39e5effe8ae138bb4384cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8d535acdced849e506f44adbad34c12a510a5aef26063d1da8912a7d96f4b551
MD5 5c037b3461671d5802e2d25178f2ae62
BLAKE2b-256 ec3a450f91420a96b92fbd319ca4fcac1682d3a28767127fb0dc23f6b9c3ef44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a23884097ce1cc3ca5855f22d8e397a81d8b03a60fa86637783344d68c7a6bdd
MD5 e961a364fe9a93701f4e8677c22ead08
BLAKE2b-256 416181382e359f2ba68f2d6366b0cf678ef937d71d49eb23c7c811a9735050da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 21a0e1c38acdd2f6ee66f070ef835efb7f5c626addca3ed72dbcb7db295e60b4
MD5 90e29bb552d50e5806618903f4b7c2ce
BLAKE2b-256 a996733d2d22c268f572e4de24cb8c4b4f30e2b2079b70d1e1b8bb35e3200b0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a5e8e3beab1086ad400adbee2fe44c9ede4cf31c6ea9c29bfa030c035b02e0e
MD5 fb54af1327b6c5d44ace2f69e4978a5c
BLAKE2b-256 b78274866cd8dbe55f061c4778239de83a8212d542e0b5e2c538fef80201dded

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95abfa3e03757247e45963377f4f8427ca78c44837313557c14643e39679debf
MD5 1a7803d4f7c3b85588aee54faaaf8953
BLAKE2b-256 12a167b980310a572b1fd22b4303d23d397c6a45920965cc0f082cdd43f91634

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ff9033b40a689ecfd303329e7860e6ffe77e59adc5ce26fc6aba41f93fa75185
MD5 1a1dc7cc68548bdfed5a02c37cdbc0ad
BLAKE2b-256 2b41c677a7ee17c896debc956604feed3fb5ee0baa4fdce7875a8a357cecdba4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4deb651f57c4767a42ffdc44cba76bb243e2935b4f2845430c00a6724ffd5212
MD5 9364de9f707c0bfff346976eeb6c4005
BLAKE2b-256 f0e865d6ed50e99b1a0698f70c40c1847d34b4b4ccaf9f34c836385669d8a196

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0b539e40b055676289b14fb6ef2a3848ccfad2dc06c1c1fad9ca561ff27d5af3
MD5 091ca4a67c115a39b306cf59afed4caf
BLAKE2b-256 899fca21f7ec31a0bc86888d9c76d886a16122ae1e42a0a405564fdda5e57cb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a1e93e87ef27536beb980e13eacab45ae757a0521d2fdeac0dc9397f8c1aa2e3
MD5 7247c756cccc15575fc2a230ba209a4c
BLAKE2b-256 82c6f87d21516e902ce222f43b0e292b9377c2c1b789d57e5331ca72c84789fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9117f85ea84957312488b200952dd3fcff998ff1e12eebd07ceecb5d9baa8fc7
MD5 1fea5de04f13712ccef63124e5d351b5
BLAKE2b-256 73a08213b34b60faf461c84357b8ff0c78cceaf62c72be1e709f33e9c3c0e91c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bed2222b0a6e41a312ad7d962769a3ff63b08e7a96fa3e5193068970aa532bc5
MD5 c65b95553e8f3bf02b7cf9f6591c65e7
BLAKE2b-256 b36a6c967b40afac0e08063b8bc35f00b984453ff5c77db7aace8436c01de73e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3fa995648c0a3b2329adf695b30f93e9da6b3a424441cbb0df97ddc936248d78
MD5 d3eac81f2bc2b8f9a9618f350752a777
BLAKE2b-256 d8da98b9c4df6f427514e39cdc1b663149ed11e1ab06e2f79f8a20682ea8803f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83e0ff9e9b27cd31de985f6527f5749f40bc313163b0e495ffeb4c79b5a48e80
MD5 198fc2160bb4665221a7b789bca69543
BLAKE2b-256 c2cb3cb862f7dd165110e2c1fc9e8551019448df25e888e35ac09208c31b3e09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9a78d021e259f07b7d695dac00c96e41d0954126b590209fedc96eb16e50c591
MD5 960451d409dced9eecdb75769b6818c3
BLAKE2b-256 c7da63d7959c39e6b1f14213e29797ff0b0411cfff8d76d3746d553cc9c469e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cc0ec704bbcee4a3b08f026552f5553e20fcd980ba3456d83668fce3133e397b
MD5 29b29da3710e2592d3c563dbda71fde6
BLAKE2b-256 97ec9b0329ab0f6c581c9f29dd93b79cd93aa30eec9414a8e16a8ef9c236529c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 66745d8bfad80c940eb5b9b36e5a1b84d66aae367ec5d53271cdfceda45501e9
MD5 f296500c75fa5b413d6666b088d4224b
BLAKE2b-256 2ce7a8d537d0065f596cafaf46b26d23402ae339e553a21a32372e285e34e1fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 22e888226e247831aa4ddab65435e67865782e5fb6dab47c6e5da40c32b81c54
MD5 e8c9c8359a83d73052609fc3c21bb3ad
BLAKE2b-256 cd2ad15abcfc5df9cd3d0cf701814c6744864f6e45f6b124158bcd3e8ab4dea7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a194c8e5aa487fd7fd2cdc9529ab37c4825377ac5bb56eaf8a6e9276c3bdae97
MD5 79a925540df669ad70433e243e386426
BLAKE2b-256 93bcc727f5f162acfa5074589a6801c54dd22d6995509386870ad23545815339

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 262f3eb9462b464b05b4b6bd8069c50f501d176327a1240f1a1e9c142c2092d6
MD5 218ee5719c93f720d2b06c24d3dd7278
BLAKE2b-256 f81c829bd25fd9fe9ea78892943a32d624679b19ba80f3c806e03c1857b2948a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fcd7d5cbd218fb492237b1fb2fd51dbb41bdcdd081fb42a9f89336149bec6d67
MD5 36e06a401e5a599ba9408d6cb0e17690
BLAKE2b-256 11a8bf2c48a5f2bcfb8ffbbab3c228958cb45f2f942d56a981336776f01d446d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c506e1c422259b206b8c805507ca68699fcb483c3d41737ce96f984eed6ecac9
MD5 f1e20bca132d690883c6bfefea8e2e0d
BLAKE2b-256 4891367a6030fed9419d8450734e1786c89b91fad49c68cb82416fcde86e3054

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4a2a129098f6d09ffbb69a6d7d121d20402f7c6b151efb6f46e01324d30cd71c
MD5 c5875694f9ada0b77a23fd1b41c7c225
BLAKE2b-256 17f75ef6b0f36b41bb2727711ec9aff1cd8b76c3ef32564820b63ca8d51021a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aa00c2602779118da96536737e36c535fa3ede55aa3f5b0ac44695fe8a513383
MD5 7985102e866453449d2c07b015036c14
BLAKE2b-256 470281e9fa4ae20c14e791ed0b81300d77b95761e5726d8107f9268d1367e37d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 21201da40d94502570ed8e966cd15adf454e9aa5854457cfa264d0100e2f02a2
MD5 2b298d5141702568d60bf12325ffd7bd
BLAKE2b-256 993c2a641feaaab862206fd911af0c1ad3a236c762fc96cb9b8173e07e629c3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5023e4708c6da8747bece2d0d36514bfb125f9750ac066a6904e41fff90b9233
MD5 8a3cd35ed216b5c90b1cd03ef4940341
BLAKE2b-256 31beaa79bd771f4394aea6c88492c4b6ba829508f6e9742073592f2197900e7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 437262f0560219813b5f0bd0255e8c9bb2cb5a1a49ad514e9d9f863ecbb708de
MD5 697fb0d9956b66c07b509c0ccee24f1d
BLAKE2b-256 898bdc65d69e7c1a7326fc2f89e560a254239885f516edf3354ffee4386f5a98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65839f117129c25ce2e2b61d824296a1484e8dca98947b712034465c4aaf9d7d
MD5 fe558af7c00321ce8afb898cbeb835e1
BLAKE2b-256 d12e9027a6c6c555766617f6be92fbc2e23db11880ef15682cacf36ea76202a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 67c20f16d480cf1a601eca7978e983fc9a7c5a03ba47e6dbd572412f78d7181f
MD5 3ede81d188f6226d8cc3aced66883ac5
BLAKE2b-256 abecaf08debd36e251623a1fd92a0befe73520380e67a72edcf1a25d33534497

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8a2212077267ddf3878ec2fb7daf91d43e3771d9fa29c377bdc02f08fc46e06a
MD5 1007cc751cfef39e7aab4fbf9c4cae7a
BLAKE2b-256 56a94a6a09c36b02ba3953a377515dbbdb5f47f7ce06ba3b6df540d1c379d84e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7a82896a0ca79dedf66a37a2c0dca0ea59798e382d7f72453dfb24c9be7e533d
MD5 abaff20c027b230e68809b3944297099
BLAKE2b-256 a76989d13943e20a4f85c8358208d41e20b7da60ea38e7bd304431c996de11ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 66c3b7ca74b2bea3d4c7236587d18d5e35afc605ace252795f85739274535930
MD5 08cb077e433fc2f322bce1dae77b96e9
BLAKE2b-256 a3e5c9c8aa8f2118a394084e4bbfd2c4a9e87b0253b0a2f6588dfb0acfce346c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c95cf3dbbe8940c5f8403276f1811f1e4244acd5a02766c54ad2b8058d63718
MD5 4bddc2eb19f442fd8e4cf15ee06f907d
BLAKE2b-256 6b7d523a2a67d24f623ed15c35e7fab17c0ebde4acdda767f82cf8d824bf61af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03a2ca360d52256c06bca4157491109648ebe99faf257c9f2d6df583f54058de
MD5 08153a47498b91cadb4644618d2e446a
BLAKE2b-256 7aa993d21acf4ad50071f82d27c04f894ad5d0e1ccf17a2189742d7f17ee0f79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7decf4ca4d6c3e7cef99f6d7afd86889d5b684c7e3960bc073dd56c09045b426
MD5 ff2361ee035b7875d3ee0290204a087c
BLAKE2b-256 3e12594dbab8b4171c123795233f704170b335a89622585e66faae32ae13fe05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5b5cb2773565d3544f5d9b55154cce25b1c2e7f53aaead19ce3ecc3585d2ae2e
MD5 ff45241b81d2697bb8f99cb1314cbe8e
BLAKE2b-256 44d8e88977f0df4f1c2329dbd48e1629577829b810a9ccd913ef22c7e9e8e615

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 790fafb25c33c34bdec39a3a44062202f2929bba4d45dd24d63596b29ea67e98
MD5 e8c63f34e04321440c082339b3ec2f97
BLAKE2b-256 acb87cd360970fa17da89140b6f3913ff7c9380da68c0ff0ccc5eaa58811341a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7b7c539705991f3d237c9c7e065419b428201e518e8e0f880e665fcf95e48884
MD5 ebf74588804c9a7a9a05ace76dd16b4b
BLAKE2b-256 a2c752cfe0efd9b7df07b65d394c07907cef15a50e5522a2ee682f25e2680736

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 96b61edc2899cf2cacd2ae0bee9a2afd80c846d6e2e651d5bff2c0bac1e8ba83
MD5 8425dcdd1d54e437eb5050e32405c3da
BLAKE2b-256 dc74b3773a99650ba01192edbdadd3ac4a09d385c6f2dedbb31bb6ae1aa87a73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c7ee37374a1464af364170478d1292c8eee16d9749e530c631b42cd77696c886
MD5 a7b12ba96a211ea69cc4c6df66785370
BLAKE2b-256 b732b377e956c55a7aef3cfa3e0c08b4e0add03729681148169012672658c6fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5a22b7b5457a322766e5319be0f3fe513a92dd31a75fa2a10838a007036e4a1b
MD5 8ff8e18a38632d22d5f2a6242dc94805
BLAKE2b-256 bd3328d9d39891aef0f64c397cee7fe4bd321d019be345a6c3d92644c9c75600

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f3de862c8fc98c4a95579d9bb49c40dce9122ae9073db5036ca9cbdbc12ce42
MD5 66849a774bd75860d20c6279fb1d5758
BLAKE2b-256 1d7b7fa7325b26b6f4064d9cc497ba78bf92724635fb15d1ce8c29ff0bf868ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d2d0f3131b40a70c0815f2e250dc7dc541b48e680bccd12de577fe6e4f771147
MD5 4c117b263fe070ef2599090671662bc0
BLAKE2b-256 cf36d8883a85b6a4cf5d39947abb1f9e8a7aff3838dc9bae11f59057d11f4c70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ae64f6a51fd7e85c528fa681f5623d1b7ac26fd7f1dc79d6818bc6185ce1fb08
MD5 01c1262547f88ff610ca121f9cd0e9b0
BLAKE2b-256 b7c0539eaf2becb74b27c21b6251967fabf8a72418df62a30b2bfec9554f2bed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 697cfc8e026caa88f761036c758891ccecd09991babe8bf3a2105729736a9de7
MD5 79b190f788cb296078b9aa55799c1b9e
BLAKE2b-256 c5d21882b346b9181f64522454ac5c2d90b52315f1f94a512c1126d048d22717

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 99efa106dd4740fb7611acc2efbd5dea0da9bb1299678c7193937c6b6a934be4
MD5 2745b5e2ea183d4e9685bb4668b0abe0
BLAKE2b-256 b28b6921e6a251a7a80e72a7d6101c345b6d8a664ed1699e6f72d84d7cb74241

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b909d09ccf82a76e591ad483cfadb7e1ad80e6ba9429e5313ff260ee6315237
MD5 9338b3c9242c087aadcfce2b751500b8
BLAKE2b-256 5c8c2b634425ac7e11210fd9467e3c613a42ca309ecb77c140d28b4e9b15d9b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d9b313b6fd002c53459a8bc20abd0359a4340d40fe879ce5666c60dc297c5248
MD5 7917c50f27639c3f2b12c1a8676afdbb
BLAKE2b-256 1ae5dac9a8bc2c9e37491484433f704f4a9dfa26b559b73e80ad74d325cde51c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 11a799fda67d84e4dccffec4fc5c56b58fb9712cb82128ababd1232ae1b77eff
MD5 6c2fc1aff30935e53d621be525542fac
BLAKE2b-256 64fa9abd189ff06a6096100323fe93746fd490403bb414a2ccbcf419a8b86da6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 efa3d591561a15b254a2c1ede2824e477da35d79da42c36f83b141d43de295e0
MD5 68c773300885746568d1a6aa2a370413
BLAKE2b-256 ed5c9092a301bd823689c8ec06673b227286256d9bb20089fc18d9346a484dba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e91497d00ccaeebede7dba4bc862c46b09bdc781c86392d55b5aa0818a151696
MD5 655a8b8cf26a5003dcd40a4cb85ba85c
BLAKE2b-256 8ebad6bea8741e2101adc70952e071efc0baaf902a34fd11275eb580fa1c083b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bebb5fb48c8bd2253bb863dc6e564edd3226c99d48ebae80ea915fd4746aaf9b
MD5 251ea4016790dd3a5f1e8fd521bfdef4
BLAKE2b-256 dc6bc2595b0103a1b544d71a10d1fbdd7fa2d8c1497bc2268760c1bc9c04dfd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f72fa03f1a708f9ba21f67701ca07f9f4de4d9542c6707e2ca49a347191a23f5
MD5 00803209999d327c918e7b7656bd88e3
BLAKE2b-256 70d553f55c6a309f91b115620a78bb6b61ea9d7fa442d248c3d53fd867cc427d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 24f6d7d2f58dfa48ffaab692446e9a9814487da3d30c37ec6ab7bfa37f69e1d0
MD5 81b64832c023bc38ced4b31ba57c246c
BLAKE2b-256 26a48c1af2eec75dc248a7c63b4734a2657fde9fe3899e5e0878a91cda0d61bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 873ed7495a03e335c121128434fa8418614c726c1925a8c74744d492ed3c2573
MD5 dbf62648a9ca68fb65fe7e54d2faf184
BLAKE2b-256 4ec00cf3730cb38dfd481ba8d87aee02fed11ad31e1516c06b54aec4b10e672e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b7027693f82fa5f8553afec5d30461f161f31c51ce8f0de4575e003bb529910e
MD5 ac51ba01005eeed5712e5ed1b44d87ef
BLAKE2b-256 caaafc1e52966e946303e17383a06b0ca0da4766af1725c49d6d39f31401dd6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ac37888a7e7f4c7db2ff3b7323c81852d3fdb109ae6939b035f1d203ec965cd6
MD5 fe4710760dc8b7d3efcec8ef23e94961
BLAKE2b-256 784356eee50fe5c83cb1109ec4359f0a5b98a0e5541c2dc32152bb966c6de4a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bb71b764a9dde26bca772d2f6b4d36971252d6963d101ccc77dec5fd84759823
MD5 add4abb6363a5363eeeb0fc306881fc6
BLAKE2b-256 cfbe14982301d1f42f5682f841905ad9196a88675fd0eb1f965f87c3301fcd99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ce84063f0ae4faf379ef6e56bee838b08ac78743e990bb69124a608bd9c83b7
MD5 26e84d24e08fdea58f7f4db432b0427c
BLAKE2b-256 582e7f4eb72d59e89ba0b110ab410cf2141387ae6010083aaba20b0e4a8d1b2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 48cd3eec6d95c288b4360b8ba039b42b2fef9f761bc737e3634db1cbfb8d1cd3
MD5 78197e3b42f875d834881fb5b98624e6
BLAKE2b-256 bb48446205ef549647f023eb0652cda384f01889b1c1d9ffd59de6c1a1acf7f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 22c7c1a47dfbcaaeade018267262259d4dd0e25e21d0d58a98c49735b528d66c
MD5 0938eda440a7fdb929b7e5846ce81b22
BLAKE2b-256 babfc562c013f7bd3196c7abe3d83d3ef820b3e6047987944c8a6c58e599f88e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 924bad76b57d50f48b50fbc04d5ab5593d7b604eea3ac26f957d8d41b90fe5ca
MD5 a14680736d5858571a8a0e1d948ddc7c
BLAKE2b-256 64012d0fa37a4721ffcd766617485688d382407aa8ac175d42693131ad89ef80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7b4fd335e819fd0039742923c0e14e7740e9b982640bd0437e7f29fbdc568709
MD5 c534efde4941f53551920086e2d2b006
BLAKE2b-256 b6572164283f3dae5fec1035651f268f4d5fad682535a44015d7e8cd411f51ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f25689bbce3765d0d17a82f6f360df1f0322f5bd95521afefd83fa92b4f9dadc
MD5 f7f6ebe473fe800a1211e0cd2042c556
BLAKE2b-256 812067a65f5bff8c696d0061e844dde22594544fdc3ba19fd7373e2e032bb610

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bd16f08b2f2bbe95f4a651ce839861b296a704d53267bb2a56e236d13fcc3614
MD5 35e1aff4a8c6048f8dfc69a5ced32c6f
BLAKE2b-256 343fb3bf7e033b8abfbaff7feb92a05e8ce4e2b632ea9f73f8b20c0b4bdbaacb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8ceaa0de3198c84efe97ce9b953b00401ef685c510c0094d01201d9e2cffb8bb
MD5 a08532075656dd93e5b23375e3c76617
BLAKE2b-256 4adf5123c1d50468b3114fc1a6c13c8147c63459c9afc2fd1e62c7f7933a31df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dae569b2db6c4816aab084780b9e8002ef0ae32c7c6a8433c0a7751ca0b824d0
MD5 fa5255955efcc3607682de1d063b6f2d
BLAKE2b-256 117251cd30631a916f88d8c501340e0eee0ca9d1b4a7585012096dbc24ee11ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 36a3d0754602a43e063a36d19001b6b79a5024e3ab9c0fd3554a305e1b59e863
MD5 222b3fe5a9663b95955cde89dcd86213
BLAKE2b-256 4a14e3471b7d301603a523d70ebdbc0ce43faa893e73fe0218dac385c40ac3d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.46-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 18a40d7778cca3b692c1c3d9f19bfc081a19db4d5c7fdd62db25fb248016d079
MD5 ad55d0ebb27a2f8aa77048bc05b3276c
BLAKE2b-256 f5be0b1afe249f44655b08cddb75cc8d63723962f529dd57a1491266a9053130

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