Skip to main content

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

Project description

Attoworld

DOI

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

Documentation available here!

Structure

The module has several submodules to keep it organized:

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

Contributing

Code guidelines

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

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

Working with git and Github

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

Forking the repo and getting a local working copy

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

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

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

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

Making a PR

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

After your PR

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

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

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

Developing locally

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

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

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

python -m venv .venv

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

Linux/Mac:

source .venv/bin/activate

Windows:

.venv\Scripts\activate.bat

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

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

maturin develop

If it goes without errors, you'll have your working version of the package installed in a your virtual environment and can test with it. 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.18.tar.gz (190.9 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.18-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (597.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.18-pp311-pypy311_pp73-musllinux_1_2_i686.whl (627.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.18-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (697.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.18-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (605.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.18-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (427.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

attoworld-2025.0.18-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (456.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.18-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (563.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.18-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (435.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.18-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (427.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.18-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (447.5 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

attoworld-2025.0.18-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (598.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.18-pp310-pypy310_pp73-musllinux_1_2_i686.whl (627.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.18-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (697.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.18-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (605.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.18-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (427.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

attoworld-2025.0.18-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (456.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.18-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (563.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.18-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (435.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.18-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (427.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.18-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (447.7 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

attoworld-2025.0.18-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (598.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.18-pp39-pypy39_pp73-musllinux_1_2_i686.whl (628.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.18-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (697.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.18-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (605.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.18-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (456.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.18-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (567.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.18-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (435.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.18-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (427.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.18-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (425.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

attoworld-2025.0.18-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (445.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

attoworld-2025.0.18-cp313-cp313t-musllinux_1_2_x86_64.whl (595.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

attoworld-2025.0.18-cp313-cp313t-musllinux_1_2_i686.whl (625.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

attoworld-2025.0.18-cp313-cp313t-musllinux_1_2_armv7l.whl (695.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.18-cp313-cp313t-musllinux_1_2_aarch64.whl (603.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

attoworld-2025.0.18-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (455.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

attoworld-2025.0.18-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (561.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.18-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (433.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.18-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (425.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

attoworld-2025.0.18-cp313-cp313-win_amd64.whl (296.5 kB view details)

Uploaded CPython 3.13Windows x86-64

attoworld-2025.0.18-cp313-cp313-win32.whl (292.6 kB view details)

Uploaded CPython 3.13Windows x86

attoworld-2025.0.18-cp313-cp313-musllinux_1_2_x86_64.whl (596.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

attoworld-2025.0.18-cp313-cp313-musllinux_1_2_i686.whl (626.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

attoworld-2025.0.18-cp313-cp313-musllinux_1_2_armv7l.whl (696.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.18-cp313-cp313-musllinux_1_2_aarch64.whl (604.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

attoworld-2025.0.18-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (425.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

attoworld-2025.0.18-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (455.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

attoworld-2025.0.18-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (564.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.18-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (433.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.18-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (426.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

attoworld-2025.0.18-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (445.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

attoworld-2025.0.18-cp313-cp313-macosx_11_0_arm64.whl (397.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

attoworld-2025.0.18-cp313-cp313-macosx_10_12_x86_64.whl (403.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

attoworld-2025.0.18-cp312-cp312-win_amd64.whl (296.5 kB view details)

Uploaded CPython 3.12Windows x86-64

attoworld-2025.0.18-cp312-cp312-win32.whl (292.5 kB view details)

Uploaded CPython 3.12Windows x86

attoworld-2025.0.18-cp312-cp312-musllinux_1_2_x86_64.whl (596.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

attoworld-2025.0.18-cp312-cp312-musllinux_1_2_i686.whl (626.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

attoworld-2025.0.18-cp312-cp312-musllinux_1_2_armv7l.whl (696.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.18-cp312-cp312-musllinux_1_2_aarch64.whl (604.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

attoworld-2025.0.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (425.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

attoworld-2025.0.18-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (455.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

attoworld-2025.0.18-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (564.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.18-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (433.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.18-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (426.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

attoworld-2025.0.18-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (445.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

attoworld-2025.0.18-cp312-cp312-macosx_11_0_arm64.whl (397.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

attoworld-2025.0.18-cp312-cp312-macosx_10_12_x86_64.whl (402.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

attoworld-2025.0.18-cp311-cp311-win_amd64.whl (296.8 kB view details)

Uploaded CPython 3.11Windows x86-64

attoworld-2025.0.18-cp311-cp311-win32.whl (292.9 kB view details)

Uploaded CPython 3.11Windows x86

attoworld-2025.0.18-cp311-cp311-musllinux_1_2_x86_64.whl (596.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

attoworld-2025.0.18-cp311-cp311-musllinux_1_2_i686.whl (627.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

attoworld-2025.0.18-cp311-cp311-musllinux_1_2_armv7l.whl (696.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.18-cp311-cp311-musllinux_1_2_aarch64.whl (604.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

attoworld-2025.0.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (426.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

attoworld-2025.0.18-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (455.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

attoworld-2025.0.18-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (563.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.18-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (434.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.18-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (426.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

attoworld-2025.0.18-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (446.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

attoworld-2025.0.18-cp311-cp311-macosx_11_0_arm64.whl (400.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

attoworld-2025.0.18-cp311-cp311-macosx_10_12_x86_64.whl (405.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

attoworld-2025.0.18-cp310-cp310-win_amd64.whl (296.5 kB view details)

Uploaded CPython 3.10Windows x86-64

attoworld-2025.0.18-cp310-cp310-win32.whl (292.6 kB view details)

Uploaded CPython 3.10Windows x86

attoworld-2025.0.18-cp310-cp310-musllinux_1_2_x86_64.whl (597.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

attoworld-2025.0.18-cp310-cp310-musllinux_1_2_i686.whl (627.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

attoworld-2025.0.18-cp310-cp310-musllinux_1_2_armv7l.whl (696.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.18-cp310-cp310-musllinux_1_2_aarch64.whl (604.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

attoworld-2025.0.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (426.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

attoworld-2025.0.18-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (455.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

attoworld-2025.0.18-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (563.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.18-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (434.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.18-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (426.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

attoworld-2025.0.18-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (447.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

attoworld-2025.0.18-cp39-cp39-win_amd64.whl (297.3 kB view details)

Uploaded CPython 3.9Windows x86-64

attoworld-2025.0.18-cp39-cp39-win32.whl (293.0 kB view details)

Uploaded CPython 3.9Windows x86

attoworld-2025.0.18-cp39-cp39-musllinux_1_2_x86_64.whl (597.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

attoworld-2025.0.18-cp39-cp39-musllinux_1_2_i686.whl (627.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

attoworld-2025.0.18-cp39-cp39-musllinux_1_2_armv7l.whl (697.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.18-cp39-cp39-musllinux_1_2_aarch64.whl (605.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

attoworld-2025.0.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (427.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

attoworld-2025.0.18-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (456.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

attoworld-2025.0.18-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (568.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.18-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (435.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.18-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (427.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

attoworld-2025.0.18-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (447.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

attoworld-2025.0.18-cp38-cp38-win_amd64.whl (296.9 kB view details)

Uploaded CPython 3.8Windows x86-64

attoworld-2025.0.18-cp38-cp38-win32.whl (292.5 kB view details)

Uploaded CPython 3.8Windows x86

attoworld-2025.0.18-cp38-cp38-musllinux_1_2_x86_64.whl (597.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

attoworld-2025.0.18-cp38-cp38-musllinux_1_2_i686.whl (627.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

attoworld-2025.0.18-cp38-cp38-musllinux_1_2_armv7l.whl (697.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.18-cp38-cp38-musllinux_1_2_aarch64.whl (605.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

attoworld-2025.0.18-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (426.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

attoworld-2025.0.18-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (456.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

attoworld-2025.0.18-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (566.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.18-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (434.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.18-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (427.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

attoworld-2025.0.18-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (447.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for attoworld-2025.0.18.tar.gz
Algorithm Hash digest
SHA256 724adb05d5dee5479ee7a847312eb0af0eea3f8f7ea264003be58f9cf04061bb
MD5 a2fd6d2321b4c1d50c10aeab400bc756
BLAKE2b-256 7348c4a2ae8a479b7703ffa0ae703d02369d2868bb053dfe469f9b9d0d92415e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 80617a380dd101e319f526bf74e83b790469e5517e78c3465cd8bbb3aeb89cc7
MD5 1f57d5befafd9b5fc06ed30f3ee13f73
BLAKE2b-256 a286ce66cf0e295daa0ccb28ba89e40b7dd2c6b7a7cedf57b85174ba78f2a294

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b86e4d7723c54b0c104bb274d28fd3dd0a14063c58d006781e567f4f26aae955
MD5 1ad57e82fedd57c0687544a918ae1132
BLAKE2b-256 08010b936da80aee39f1f61163d50f176c773b1a95e06331ae55aa1233e88c65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a29076e8f6a3468d9f68b59ad9284dc074f2c988c99a4de67620d3cda007196e
MD5 874f1e8f54f1c71f5aa385a7ac7f62be
BLAKE2b-256 261fa5726a06cc33a2a17b3d9230323e8c6c3f7db0748107f501db98e19d7c95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b2f00bf9a3c5dbccd09d6f1822eb83e705ae8729e22b584a678de2996d7780c
MD5 992b0d7d045f0e4e50c7d903538d8498
BLAKE2b-256 7ece7e26ecf09cd4783ae87af5f50e5ad1b68fe9df6ba412d808f0476e1491a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1342426e529fa6a10839dbc2af2ca3b3bf3d153e627b3f2f521cb93fa789caaa
MD5 5e5461f047992b852e465d39bc567ee3
BLAKE2b-256 bbbb95f9068ebc6a81eb1b41afefd9541f707261fb17f071ad78cc13d4c99b1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ecb392da08e0a3b4b4598cf5bcd658bd523b7811b4def76365157d41d24663e1
MD5 f4fdc9bba7e8111ce7f886d1c6e47e2f
BLAKE2b-256 bf971839782e6a977488c53cc37978efc19a0455524bab2dde20cedb6fd50b57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ea79bbdfaa2e17800518c3729423d760c1b67f8d287ac5465dfbd281a57c389e
MD5 08172c4158ede09cb71e60df1b4ff56e
BLAKE2b-256 3f73ef5c83ae4da23aa748d7ff947fe1a91fcf21bcd0722aafd13705d0a44ca2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2afd3053d111e726ab20cc84cce8cf670292cabb134ac9ea9b428ccf46bebbcf
MD5 350c109030063c8e926e5943448bbe28
BLAKE2b-256 0812c51064910916c1809858099f71cc7d353bd90a0bfd553add61193e42cadf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e2f69e230d87e69ce7bc527c834a37538745c97e12c012020832f5da3b380863
MD5 d27bff276f1af49a52019f55563eebba
BLAKE2b-256 d54006125abc342c37c79affec62adda33d2ad28fb3e338c34a92f2046268d50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a4862e6e1ff522bab2535b90d8ae8901fc04189aad743c2d9cc6b539d4fc947f
MD5 ed124e854571ab8f061b967fb76b884d
BLAKE2b-256 997319a1054fa45729e98a84b132ad66e6707bec55ea0c4075e86f8a204afa8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5a6dc376ca6caeb5cc78096e1fffa65c2c2a08f882c8f47590c799902f426566
MD5 4ef227017d43e4b8656e075594fd3fe9
BLAKE2b-256 b146b5f02514ba87c2400f1b5e8b62ba11f46007687436e2f7b6e6644c70b3b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e90a58bb771db9e40decc5e83699b7a05a2116617ca20b68193d66d67ecf0854
MD5 5df90e37fb611b0b1561080e8e960211
BLAKE2b-256 2b03614baa156f5a88008bc4e1c4ff1410f4d1d970000a1ac3af42bbda0011d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b21d1472c4c795265e9fa21a902b94b9d36cb3a1764c1068433b39ecffc4fc80
MD5 6a95214fcd1a6566c1d6f67cdec39089
BLAKE2b-256 8466a3df9f64c833fa48d57900e6b62f9e0e50e23f6a2e348ea880dffe811201

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d45dd578483ad26a0bd6f5d5dd0d767f37b6482ff4c050da04485193df82d348
MD5 92cde56731cba44c7a66ebada3c6f980
BLAKE2b-256 11e51a6e34d1a46eb4fc36c6f48036252c4db74fc06691a6fed637d93ea05be4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0462dc4660bdaed916e9bf2f058ca114f8091ff76468e820ce38c8f63b944039
MD5 5ed8a64d5d044b2baddb257de9206b32
BLAKE2b-256 f2d589a853fcecfa52cf8647b635161d5eaa5c4882cb7e760d464aae029d7e1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1e1a0c91925bdab5089caeeb440b17ad13d74136d230e0fed71d418fcd659513
MD5 c2b64448ec584b33b125a374c26ac71c
BLAKE2b-256 53572444353ba8146ba2759877157eb1c652b147510a3af675ee1ec48aeb12de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ac19c1939071479c6e0920bda40e7d4cc0f25c8dce6b721c677ed6f10560fc80
MD5 4328b87045703b7415128a46ff2e80d1
BLAKE2b-256 bcbdb0f0ac083118036b63c8a4682f831cb07b89c8693f7691180bed546786dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4acf055b2373e13dcd357deb37b1f2e771e43f1edef7e36626c97727a9f2201d
MD5 6462fa47c08282bbf704777875d5cf0e
BLAKE2b-256 180d39e6beff65e50c2b91b67b13f83e878e55af23daa2c881b8038e1ee64524

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 13f60375306b3ad5d7291011d703c67d6e3cad840049ffacb83472be4547bab4
MD5 b9bca5d39b120c931762df499664f26e
BLAKE2b-256 78da0bd5ff731234152e4ad81deae6a23811cdf35d83454cc2196f4cb667cc41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cfe8719cafc79452e256777d9aecc18d5373d517f97e2a94d195e45ea7677182
MD5 304785df5b308671b417601e3b412ba0
BLAKE2b-256 a2f17b0771f43477fa18031d44f6a69ddcc27f5b57c7c72135f1d7ebdc5205d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ea682fd35c820a8a242e0aceabaece8342d8947675c843788359de0b424d3f9
MD5 d1e7a56923c3bdacb145746010988887
BLAKE2b-256 339e8e29bd0fd38be62ae9188db50878a2d99a265b047207e6c0ddf12d241478

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 247765bcb89c99c93eb932ceab2bb8e88bf93b6840217f045e33851dd496e304
MD5 0b2ec0964616329485ab4bfe84b04d68
BLAKE2b-256 8bd2034d9bff69738e0422266b40aaeb16aac9edc55a64df3f8a7244d290a6ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a36aba6c45f0c7c154787f61877c6e354855fdb8b9690bcf8f9d96fe04a9f3d9
MD5 06ad42e7c0a70055f9e7f447f066226f
BLAKE2b-256 4ae15e60e77cbff49b4388ede6ddf020609728f2a14e528bbb6a76812783b92c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d91db79d5255daa14a90e49abac12f71e1ed53a40a7c3eb591da8c1479aebe1f
MD5 cf4ee298e1d99520f72e48bf914c6349
BLAKE2b-256 cb4b744924334012a428d07bf54a36867dc0e6f10d13abbe546c2c1ba4fee230

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aec94a14cbb94d8a8b3ea840e1f7d7a2d54f3afdb4d6bb95727da9be7fc1b311
MD5 2d74a58902cbcd03763da7f6ae729c16
BLAKE2b-256 5b32515f5a315809112d6c9610b64415fc9e0ebe9a83455eb803573f493d784b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 781ecff1b9727fbf14cd0956df2cac3fcacc9916b24230ffc0339df5b20c3138
MD5 24dcdbba9b612050dc768776d675a72b
BLAKE2b-256 97e2af1dd9c518c6cb94633c6b6a8d89000a8f52a88483d1c25e5485da9a49be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7cc6ea9b6a16444ec5232b3d30902092f608a3ad0f8f4c8115eaf187ad322168
MD5 0a45a6837cae22b482ddafb30f28340f
BLAKE2b-256 1718e706dc3fd5778e91031956b29b3881517fa8950f7aa974a8e89425753dac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 24c2d9bdd41d29fbf5d2877e08aeaf0a27886562fde7e48be9c9159a570d6876
MD5 3caedcb57f9f3f85190d56169b9eaad1
BLAKE2b-256 752dcee067ab305cc6acd6d6480ca0176f603c450a1903ebcbbc897b73179581

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a0a78685d248c52e8259884425df7b343ff5e8fe9c2c3121909d2d84e29d7ff6
MD5 15da6900ed95c328ffa3d992e6da45f1
BLAKE2b-256 8f750e725eb76b1728435464c0d5da18fc4a85d54d89221578e0c2217e87fbbf

See more details on using hashes here.

File details

Details for the file attoworld-2025.0.18-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 52b4c0ca782bb6676bd2e9c2e8aa154db4c76bf23cb1084166f67362d78dec89
MD5 f51c5eac6e098c7b499f0466f516f040
BLAKE2b-256 054d4b2a2621e668ef36fcfbbb7cd52a264b0fffd4200779d32da4b9572a9cef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 82901b0c22de16c413352991cce2e5dc333985ef95f1fc32fbfe79eb2148950c
MD5 7d75278c1911d1ba1722728cd980963f
BLAKE2b-256 c9b50c664cd25a96925091445fc2486e0f77727e1d87448c5f4127f77afdca6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0f69bdc7d40c17c4f4e90ef0258e95f49c90bb6e8306cb7961ef21bfa70828b9
MD5 fdfa13e6b15943cfebb456913526d4bc
BLAKE2b-256 7fef42bdf538931c6f0f6569aa5a20ce0143115335dd99ca8392facd4295b62f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 439d7e37a1b8c704932ec9f9f19e21786b388784319788f83da35c2f7b5b71c0
MD5 a6d2bdd6257e438db138de91674fe4c8
BLAKE2b-256 b0bc7c5fc6b2d6e0b08342bf922270fa55f4c6c5c6ce47c3012913d9b540603a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 deb7a63c9be2d6017004ac574340e2317bf00dedbcd3d092239ae76ffb792f5f
MD5 f0910c26ff9c536ff1391a91ffd0529d
BLAKE2b-256 922f78935833de9cf522ec5433dbdcdd5de390f1e1b4410e0357c05a8e76e5b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 10dd0fe09911d01ffc1d809480358cf2a089c8e4d47d4a182e17cc12a827a235
MD5 b75a9d8fb284fcc4c91d0e6b547b63f4
BLAKE2b-256 136d9fad9ccc839654d8438ef5cb70c9749afe80adb9a8eb494c7d81829c3086

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 03722c5103732929714480057dd5bc6b27f8f96e4ab843654fcbb439c0e9724d
MD5 b6bc4841d7bd44bc8788a3f8b25e1b06
BLAKE2b-256 abab99249612c463e87bc85a375ae60add90a48514989685f64ac2a06b9991d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 060ad59a2e864a18b0cd8c6612d70eb212f4cb6f1ffee5e164f9e25d35073abd
MD5 508f27d77703aa38d3628ec2891ce8f9
BLAKE2b-256 a158a72c066572b4b8e1024edd2f06d80830a5c062b0c883a58cbaef73359707

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b6b8526c1e863ce769c64d14b3cfb1500a7d388149e90ef2d9d99112e820a898
MD5 2163caa2a93f2e1c59e01020bd3dc648
BLAKE2b-256 0d32ff6237e60a63204a33d9d07165632ddc7c5fdab02e13ff52911a5b60729e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6c008e18eb26e6328d4216d06faea4e5fbb6b67d1c6a286443e33b76f244ae3c
MD5 61825a1fbfe06446e23533497ee26b5b
BLAKE2b-256 a7145562581a44568b3d415f0880ced77e7614aee8b92bbba02e565e3946c567

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7b9e3fee96ac1a31b090f77c0388e282fd3c52d37ee42f5e51850c112e5966ee
MD5 f9e0644d4a3a0e35b90bdf928cdfe09b
BLAKE2b-256 a7de41a47c7d6d6838b3efa780b961ccd30a56ef9d40913262ecabc8c12755da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6ac790821f6f45d226a3192e7113333f831d6e1c512ce0399f2b6550c6dd35a8
MD5 cf33f4220f17bffdafd03d4af4392ec3
BLAKE2b-256 b6041d5a5dd6047b24f8ad71313619deaed370444b3ced81e60247d2ea6ca26b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8d861e4d93817dfc6b39b4a00a69c17369f431cc3e2bc4e606cb9683eff5633f
MD5 0d8fc5e676295c1e4d2f1d5f771b099e
BLAKE2b-256 b249cad581d0997ba9339fa8e54231f83dcaeeb6fc4563e17f31689186561b3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 69579014385ad09c6b5567a5a690a770c52084f4109a788c516a79af883d99e4
MD5 59139a2535f9a29d77948142c52186de
BLAKE2b-256 8d2b8802957c49e9e02b460378f9a61b6d985efa6c5363a956de49dfa77fb85a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4986e27b003b5e036712b19a5506098437947dd95dca32620db9d7ea076ad641
MD5 419aaf3a0b896f8360da9d91cd2ada71
BLAKE2b-256 26672634fc791568dd162c0f78704b00a79c1b009d42932d8cbb2252f638821e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0f695d38f2f19e37e89f7229cb9da3e7680a2cca92915eaac6354cc82540ec99
MD5 555ec9053be701bdefa50259e6d08032
BLAKE2b-256 629332a5c7e939bade22184768179768230419b65c53519b2f2bd7b24e9835ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8b7418a84a1c4ae7f2c18f32255c7e7e7e038f3da48f8b04f9e4d53cf2176241
MD5 8a92e93e7dae7253e60387866a43f2a0
BLAKE2b-256 04cbe822715aa67f8a98bc3d0dd4c02a37ee5064155c558f499178a8918d51f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a89acc8a02b9841b6f3604e036c23cbdbecafc03b9d417dfaba32c3fc3f3b6d8
MD5 b9515eb907e44471bdcbde5796753e58
BLAKE2b-256 87552b20d125af53e1c9a48535e96fb1995d526b6d11ef54842c2b9980a6e71f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2c7344b68d4e0724d4ca5ce135a0be8566bea1774d9420303b65be90e5d645bd
MD5 bfb4fa15064261a05a0fd04d56fc792f
BLAKE2b-256 c9d144cad4add637b5a6dc5df3277aab8909ca1eae6435d746206015ff8e400d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b4b8bd4bda2dc4396700c7984eccbed62bf9a4ba7cfd133b505f7cf4d4ccfd14
MD5 aae999d7bc5eac355cf671756d59667a
BLAKE2b-256 aa7f0e70b8c0835927cee1d7fb6d63934ea6fd25c5e7d13e8e8a7a182d986cc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e2e6765f0ae045eb390aa61d62a6250992e6c33b7c8afcc4f61063fa1427d41c
MD5 2d913204124bcc55c6587a15c4ef984c
BLAKE2b-256 c7a926aa8da2e3b7e663d8fcd207c27dde1338b9c3ab9af3bffc743ca01e3c19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7a9e3ad7fb23113dc6a51d12a03f7482d6d625039bff2ba68492d62febd5ca0
MD5 b244309bf290b3230b21cda28f1ecf2f
BLAKE2b-256 e4b63b206a87ff2a2bd0611ac70643eed63f18e30a535db33a10c8150620bf44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5e0501be01ad0340d4e77da4f804dc8192fa5e7e8434730a26613ef6fd0fba5d
MD5 53fb1d7d77b5197482b2a5bb8c101fcf
BLAKE2b-256 457f0b62468620479a1f47614656f0a7aaf408b5c314f0cdfd113b6ad4b64e32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 42e290d65e46e82e7387e38a5c7336e16bf0149835f111a0f684532eab3e9f2f
MD5 398a57d60c1213ae4a023b3edfb2a92a
BLAKE2b-256 041394387f25ff953555991d639266e0e2386e7532a91a06c39f1d65057b9d33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f7edadb028e3d6e076ea44b7a60742c68bc6310db8d4e01353041dc152d3bc16
MD5 8fcbff7d9ccf9815c4ee4defb5bc322e
BLAKE2b-256 fb77cf6668ec9ea2aedbda98858c81c6d5d01dc76886277fbfec84b586574117

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 621330a508c081d11eb306212aeed28af5b3c9c6cf03f72883d67b9a101b8873
MD5 65336c7334a43effb41e337bd011d750
BLAKE2b-256 5e7f639d8367f5401b03b8344430061135ed13fb2068e4c44459db2882cd3522

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3f9cfadcb649abd85fa1640f5eb07487ff5496b3dab85d3c91501624384978e3
MD5 e90fae59f49e2c5811fa3fc31620a59b
BLAKE2b-256 4eb658b8719e6cd42a0e0a079572ef1df2522bb4f1222ee2f1f9b5a10fce2373

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 27b37135df9b5a35dd3d2f3ddf06fbbd8d6034b7769421b3a8835b73dd044c41
MD5 22775dc3605af1c865d32f1713041b4f
BLAKE2b-256 c25d3db000844be8f3bcf49bc584c8d081b4319ccf60989308e0881db7cdbeb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 66e6dbd5a7f05ce0121ee7e47590406d78492151ed3f16b1f297bcda90853eea
MD5 c19c5f1099369a6786fd0e94ce6a8e6f
BLAKE2b-256 48fac1e4844adb32ed79935df2916ccd4a9383333c15373ff91a410b93b7086c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73b13d49c728ecedc075739eb1eb617e4313792e087e1cbeb2ff3701bd0c9133
MD5 67bb8a3f14e371440e208fd681aaba9c
BLAKE2b-256 a6bfdf4d7e6594d4c29b0f8ea6ba0a8eca5ba9cb0999a2135e0da2f050292ba6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7fc5db2620bc469f401970a03d4890cde36c13231a2262c6de39c19565d639d0
MD5 8f4f71e49a14c6afb62e791667fd5e86
BLAKE2b-256 be9f7c4dffc8779184f5cf8a0bb72b4339df316cc4cc49ba98cf77ec42a72ed8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6b084050b61a235ce7b50d909ad75746792ef7c68cda15e801b17c080e5018c8
MD5 2d1a782ea05503f971d21ea66f5f03d7
BLAKE2b-256 b1b2e90031bf109dd9225af353d8e7e4dee367e10fbb8ee6e14d322553968c3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bf93ccae33c78c1c5539563db5be07995952761bfee27fad3d9770e815e9ee83
MD5 455229a2e76eb53f46bea2dd6a7c11e1
BLAKE2b-256 9088e222f2de0e1303b040eee5920e4cec330a7b54dc28da3ed6dcc981d4ea23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f91046b1df820fba04a8522110a8e35379e023b13f2e14b1dd63321ca87d925
MD5 5f860667e856eea1a74c8da6c289c690
BLAKE2b-256 ebf3a7b7952353a511c7ca42db62dd1bc8f5dac9074d21b2213416117cdf8253

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d820c9f714a569059675edfb9e0fcb8c8b4004169209243bea0fa0638f714d5f
MD5 6670b03c64199bff13631f576e867ae7
BLAKE2b-256 872e5738a9b9ae630838b76308de724b74f59c7e7c5c70b502dc1996f87d48d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22aa7ccf6c80953ad3d4b480fcdcd611c89bfad577740ab7aaa3e2164ec8fbba
MD5 9e9a6130e674a71366e8f6299137a03b
BLAKE2b-256 7ad17d0c792ab163c0fcb09f9f82a161e14a428265963155fd18d1feb5115304

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 737189d2a7d9f51a289d5147416b3b94a3ccfda54442f572732fcb5c4576a088
MD5 015dc9d59327b3ced435b7c459dc5f10
BLAKE2b-256 bf0290487fcaac36fe279e84e4d77a8690dfa1d58dd7062aaf8ae339896ae6e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e33f3b1f3d62d5ac909510d99a30834f490d623b88071bf22b28aa7ef0aed34c
MD5 f1ed1affb23cc3dee267095c2b0d9504
BLAKE2b-256 a29da8fc4fcb059a6d379c8b6adbda83324bc76fa6bf5b4335e537ac4cb394de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 66282286cc67b702f634bcc4be3b53c2e03bd968818f7c9475e2d9697e670b9d
MD5 8c76e6f7662969834b5f041331caa3e1
BLAKE2b-256 e7b3d36ac1b82c41f155e5fdc80dbd973059a02f866ed89b18e8360f2b57e475

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2ebbe5dbad846b7604f9e5e4eb22b0c82c0e41b171ec8b624b9eb7e156bbdf8f
MD5 f08db0fe1c68331f71b478bc805bf7ca
BLAKE2b-256 768a0011b19c71da285905a927cca7e1925ae2ac9599dfd619937bacad0f9df5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5a0a314becce8182fe8d630bb346e057dc15c1412c4d0a8860167ef3314041aa
MD5 54ebcb6136451a7ee0094d0cc79f93f0
BLAKE2b-256 a439a6805355591e3f29c9fbee682022373fedb689accac3cfc1d2702eb90d8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 558f28237a4e0a62636d41e1287fdac569961a33b0b3af7c72456b84b83a8b0a
MD5 f0a8fbf87f08f6d4ec616eda79cce4f0
BLAKE2b-256 143a13ab3a828ad66a7f92485d9b2b97dd3d6d06af5d04407bce6e7b2d67b06e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3529c4445a7d0f310b2cfca579b65bb57c3d265893bff9bdeabf9333566a39e2
MD5 b05587b3865ad5be9e5d425afb5f7769
BLAKE2b-256 7f972e4f4c7c7968f9b83949d9f21fdd69d40872b0b18d822c99d417f346c9e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08fbfdc25887af2418b3791e3e13f3f43c852ed7f0c4c7a2d471d748b0d30625
MD5 2bc46fd46d773b0d9b62e772468cc20d
BLAKE2b-256 4d61a41d90ef6bc5cd8bda37bda7e9f3c15083daeea32837d192ddfe189b722c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 81b69a6665453d1899bca93a0bd9462c83bc6b703e86f2298693a12fb07fa162
MD5 20c369cd23d95382645569b065477814
BLAKE2b-256 ab5c01b6080d54c55ac07161f65a55edff03dc3cf9e3b41be6b8be6842530c5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 46a8fe79acc951bdf79d14aa7a3ca323db7a1dbb0b2035fc5a40a50d33040576
MD5 cd251e8786dd1cceda2910907da07831
BLAKE2b-256 e5cd0a0cb1ae1b9c31cb2abbeec897336e58a01a76324bfe30b22ff1b26b8fb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 263c27362fb2be6ca06581869fb1d14bfb09891309cb011019bb935e34b2d538
MD5 afdf5438d21dd6a47b7c26f3f74f3dcc
BLAKE2b-256 56e45ca7b8268e8139824814dd87c490622f38b39145e8d30f8e6300f3355308

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bcea38b14b80112d7db038215d7a9f7c6d29e70332e6a515c489c1bc805491b1
MD5 8f965b2a05633b56cbb3a1f5f1ee6cd4
BLAKE2b-256 7ac6d1c4e25e60c93ba66ba231979dd68249ffc031da3a885003a868533cb450

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b43538523802ef77cfa34e922050cb9aaae0e40f5c0e97aba155665d28091cc1
MD5 75dd449fe5fee05d748f5aaff56c2744
BLAKE2b-256 93150e6be1ecf68b6e1dd4a5c68e4a43e6c544d742451908a208207c7e3598ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f784ac69cd9a2c0a9a2353e5ad95227df67d0bffb65538f0cbc49e41587b8159
MD5 6ced23967fc137ff1cd3fbaa7de25e2e
BLAKE2b-256 9234142d0b7bd473eecc760fdbe6fa5ae15858a0c72e2e78cff30b27b8cfd773

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 029fb7ce9a7edf64a0b5808364b9012ab19dcf7305f6eb123d870028d2a60290
MD5 0759be86fe59ae45e996e541a15f7054
BLAKE2b-256 ecee01d47225be565db50834c2a6c1cbdf712c3a2b64e0e3f044a66e0d368d47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 01baf054454890c5bd55d6fc97ab4d036469aa327e43e21f7291fa40f3e646d8
MD5 915b544975af10efb814ee316cc202a8
BLAKE2b-256 0a79af3c9295da074ac932051c8c989ea542fbc67a495f4a6d7a9056a26480c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b80c6b707daa804ee302bbd3cb7209e154397cc0c97eca4f5b1cfa908ae2d8ff
MD5 7f138742b9e18217c48076efabc8f700
BLAKE2b-256 45daff22e0a2c6e96f9ba382b15c68ba09e9f1f5bc9f49408ea9809f01177488

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b1980dfe88e361a7435c5e7236c77a0193b8279d17ac641c22e33e9f64d1b6c
MD5 a2c0cdd64b5c1d1227c442dbd277c055
BLAKE2b-256 4468d428daf6830b35b904fbda66313f7286f3f6c4ba6bc4e91cf0835613ceed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4823a4b5331eace382852e77a04002121aab641b15280eafc1eb9b41a153cd62
MD5 b9e5453bf08653bb6c4a7c6cb90495cb
BLAKE2b-256 dcb67593abe7cf88bb9221824cec6a4de85c046c8c9eed5dab5155123fdfbcd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 65519b4a30b4c75b36e71a70fd285a34ea6a7956697ab1e5cff3a7cca51541df
MD5 521ffb8026b73f501e0f565cd7195d18
BLAKE2b-256 184bcfa8921f967b8445f915af747ef99871a0196864b72af954504ee7282a5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f1fe5225a250f7e251d92afee044b4bf5caa9a92755e8477cfed880f6c00179
MD5 6ad5757540408e18e64314fca494994e
BLAKE2b-256 791a21ae0769dd37045e54b4bb4d12175ae9a230ba97c18d166b3b8e152d6b1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1672f5c99d3701deaf50b13b28e371fedb8994c9d685ac2afbf91399a7fd6ff2
MD5 099c49c969bde96bafefc499af9fc129
BLAKE2b-256 f7e880c4b9a96209e570c446b37eda5cee23ebf73c89cdcfa45219d1895ddd9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 189e46510a139651a44572be8b28d5ce0a2fe9bd2df7620696d8a8b501774982
MD5 e1c8c50e35604d206082fb4ea58ffc51
BLAKE2b-256 9badf89aa267ab6f92153cffbd80890b6163e2f7bebaab7336c0b693f81b5d92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f9f816c8e00c3a7e29732637035924234ff4d7b77d1585a3a82faca8c5b2e479
MD5 7f3e8b64adf6911686ba4853a327da49
BLAKE2b-256 71f907046659c9ea386295ec9c7a0fcb806decc87818f67ad336e8ca9dcc7e28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1e15706b25f9fa5f3df6458b657703052057b07b7624666f902c1ae4754af16b
MD5 bb5a456525b6d1eb1f3de8ff48cdde44
BLAKE2b-256 cfe0a883e3b3508319681c4afe45feaeb40e241bae65aef09b2bb579c3d2d83c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e93670f549f3a920ba12bbf47cfed00da3e2768b808509b0d81c8fd3f3c4efa
MD5 6aacef38f6748427177f1e0cb6cf214f
BLAKE2b-256 a0aa511100d3a76cdda31527d7ae1c2f85659ac6a44b23d7defbdc5efb9f5146

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0ab3198a46409ebc567bf3fe2026f07906343a5e774832ea434df91848d06a6c
MD5 c9892fbcba226636ba9c80f68f0868f4
BLAKE2b-256 52b62e924d25e8fb36b2188e46896d481249f507e3c389f8196d12a5082b5738

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a31efff29326635e7a4d46591eb4a1076cd5c28f43580e170300f28b51213435
MD5 f5ca2e96849280cfcb1aa545dacf5215
BLAKE2b-256 8a370ed498dfe75657bfc3d52148566e1bc7f8119cd808cabc99a59010541675

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5fa4060934a5b4ae874ba68dc4a1d755c7b1ad042382336ee14182e4b246301c
MD5 6b14e9d16e80583b46995ce0921437bd
BLAKE2b-256 294c14082d5ccdba526055fa14b0fbb9508bee7e94199255ce426c41ea8d34d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8f1bacdcb3d3c19f7e338b94aa0e717f13a389b9691b38479d9e70f59282483d
MD5 b3f7843bf31d3346485a2e6a089d20fe
BLAKE2b-256 ca4ee1d41264707367a844a6de55bf1f02d83bcbe7bbbcf2218c01b69f8860da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ad821a1b9b9867ce94e77bed734fc1da9e5c3331c27ec07056b7ff67c1f183af
MD5 10df48e74be7841850a8ef0f697f66ad
BLAKE2b-256 e925f64fc69f03baf3073f3caf73fa560ab701b64968875ad67b23361862585f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 41317aa28acde1c7c8b078c10964fe5ee6a0dd9ab6f7b6188eadcee8619bb363
MD5 3c508bfdec3de25aa5dbb6e28e7f53c2
BLAKE2b-256 a8b170011d9cf5036961552e363a892151ed167f68a9b3aaf6dc502b6e09d445

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4f977dad8010df945e2fbccaac950f51e6f5a9dce4aff50790442436cd7b90ec
MD5 94aeb2b76550418c71d3bd9b6de2d5fd
BLAKE2b-256 323a6672d864188f4edf9f49647de0d8a194e14dfd9be77b39ba1bbd5e7942d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ab44103fa2fbbf620d57b23a08dab04cade12dfc262a43de2a0c67974494fe7
MD5 84733669bcffd70d0cd66706f21ab779
BLAKE2b-256 76c8072fcc1aeba808ece78bf6298b2cdac2256eca8248b9117998ca65e59bf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 afcb88732eee487fa5c9d536d316fab7eb095e7dcf52dfef4f36086c5c140c5f
MD5 7da2f60adc2aab4b5883f6edd45c2163
BLAKE2b-256 959fea31261bc1dce1ed1e9026eaacc404eeab8c6bc271f1a7c3126bafc79d14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3f439f18ebe976b05a2bc9333f3583305194594a55ad27b1240bb0b8f403db43
MD5 dd1edb2bc1d65620389dd32810b3941e
BLAKE2b-256 5827ceec318e6e59df8dda11ab867edc60f70fedf885686fcf3038e7fbe3496c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fa9d235c539ecfe997f800b15ad45c4a3cc8b3d65bbb08c999b8f8515a8331bb
MD5 0017c22287a3316a974fe2f37252e22f
BLAKE2b-256 82eecff8c564dd9537b25a360b873ffac890d00c143c410ede27b5b79c10a071

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d0cf465c0d4bf4e5d778c53ea7f399737635f1734d3d17e20765c27ff941c39
MD5 36226818ab4d78d3461b7140bd4e0ff3
BLAKE2b-256 2d2bca3eb03b2b6557e2f697503cdbb34f58c8c769c1ee9c0cca68ccbce8fa03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 70776d767f9e088d89756b45cb057f005e9c542ca72a427d446e4742b7b42d95
MD5 65a9fb196606e58f8651603eff216548
BLAKE2b-256 7036c7c0be2fa17850b3d9cc5c3a3fb5dd0a6baa300b77af151b263e4fd98328

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 852036327bbf1766c1f310ea41858824080e0deaaac5340743674f859466ca6a
MD5 a38efc5470304268b8312a17babd8f71
BLAKE2b-256 7f90ed97ad50d34236f411991447d4678fc9232419b972d7e8e752389aef50af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6ec912f005328be92be678b9b7b0f06267429246a54dd07f2e25917312abe27f
MD5 1e972f377a103670cf34e6f6b9b071cc
BLAKE2b-256 6e15271edbc6ca2cbf2b0508a93ec1c0d71bfc243d718abc0c43be6d48d48b9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4cf66d5332b7d8b629646b15c3525886aceec82da9e7afd5a403b5db92375b7f
MD5 812cd0fae14065c478767425cd6e1acb
BLAKE2b-256 684e82bf2bc235fabf701e84f7d768a7c5499e91726a80c52473279250aad249

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9871fd36396b05c88c955b48bedeb51c01bf8455567e4ada3739980b11bb9025
MD5 f86ea73b4312cef4d4d4e5a553a27ad1
BLAKE2b-256 74d38a5fb2c35fd7bef0993deef9918f61eefa81c3771f65584d986d1ddf4540

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 57c80906734f813a98791efce867eb850e983d927b63501c170852bbc765da63
MD5 c2ebfc584ea03fe3268a66acad27d2a2
BLAKE2b-256 be5b17fe487c464b5da5633827ad899530e33695d73873f962a7caa43c525e27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe7dee36af17b2e2afde45fd3a6a9be4cf0de6eecccef395c7c14d350727b82e
MD5 5bcc9ba5e3665a641934e203d6e48f6a
BLAKE2b-256 811b0780be1688c974960e1634bf7980a6906fb74e2b753e94a214cdda1e7a28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a50e28d23c6daf06aa585fe6344bdcbeb603ce53c49b109b7272c6f69dc49cc
MD5 16e8d696fa56df2fe0d6d377ffb95325
BLAKE2b-256 737207e3739aa8364247f9b0aacc5c5784f9acf7fdc1ebf87788b6f83fc99adf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 39d32d5bde0692fcb0244bbc49bb3b28fd6bbda1a30a533ca633b0a92ed30526
MD5 929cf99cc026eb903f6a300b2283b5a3
BLAKE2b-256 a5e2502362de10b312b91cff8f615c6fc901952de7abace3e9441086ab0c33c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 64580c890f81b010296cbb2f8b2f5450a623c69b00b79da10c298fc012157903
MD5 a5a04e3adf9e378caae93e4b463401a4
BLAKE2b-256 2c52df36deba800abe74dc50f0cc83d0e473fe1a8a397e86933155a17b57cc12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 816c24a7dccd22aaf8d1406bae9ddec37a717794cc693c0b4f6a22b400037665
MD5 a9a9812f4a5fc6a997a030caa5249ed7
BLAKE2b-256 a8806c1ef77a7c0c2db92cc23578e6edd8ecd6466427d85ed23f22492af1f756

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 81974bfa2ec83b6bfa442e1d99e6340b1b8f588fa81bd2a04e03b3d4aa0e9a6a
MD5 4fdb840b07493e267dbea3eb3749f02c
BLAKE2b-256 4a077913a3eebd811c646802b499814a3420468adc71f63bf17363098bf64b00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.18-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1d49cd51a90d2464171756411e2739b64143636fc277659c8a9fc7a727e33e7c
MD5 86190c77de89b580f414309618043585
BLAKE2b-256 0149d187a9dc766d101bd89847c0a5e5cd2107c9e631d0c2966354ede2faf59c

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