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. Of course, you can also quickly iterative live by importin the module in the python/attoworld folder of the repository. You will just have to run "maturin develop" once such that the compiled library is available.

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.17.tar.gz (190.4 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.17-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (597.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.17-pp311-pypy311_pp73-musllinux_1_2_i686.whl (627.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.17-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (605.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.17-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.17-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (456.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.17-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (435.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

attoworld-2025.0.17-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (598.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.17-pp310-pypy310_pp73-musllinux_1_2_i686.whl (627.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.17-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (697.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.17-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (605.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.17-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.17-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (456.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.17-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (435.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.17-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (427.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.17-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (456.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.17-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (425.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

attoworld-2025.0.17-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.17-cp313-cp313t-musllinux_1_2_x86_64.whl (595.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

attoworld-2025.0.17-cp313-cp313t-musllinux_1_2_i686.whl (625.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

attoworld-2025.0.17-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (455.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

attoworld-2025.0.17-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.17-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.17-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (425.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

attoworld-2025.0.17-cp313-cp313-win_amd64.whl (296.6 kB view details)

Uploaded CPython 3.13Windows x86-64

attoworld-2025.0.17-cp313-cp313-win32.whl (292.5 kB view details)

Uploaded CPython 3.13Windows x86

attoworld-2025.0.17-cp313-cp313-musllinux_1_2_x86_64.whl (596.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

attoworld-2025.0.17-cp313-cp313-musllinux_1_2_i686.whl (626.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

attoworld-2025.0.17-cp313-cp313-musllinux_1_2_armv7l.whl (696.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

attoworld-2025.0.17-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (425.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

attoworld-2025.0.17-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (455.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

attoworld-2025.0.17-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.17-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.17-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.17-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.17-cp313-cp313-macosx_11_0_arm64.whl (397.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

attoworld-2025.0.17-cp312-cp312-win_amd64.whl (296.6 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

attoworld-2025.0.17-cp312-cp312-musllinux_1_2_x86_64.whl (596.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

attoworld-2025.0.17-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (425.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

attoworld-2025.0.17-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (455.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

attoworld-2025.0.17-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (564.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.17-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.17-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.17-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.17-cp312-cp312-macosx_11_0_arm64.whl (397.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

attoworld-2025.0.17-cp311-cp311-win_amd64.whl (296.9 kB view details)

Uploaded CPython 3.11Windows x86-64

attoworld-2025.0.17-cp311-cp311-win32.whl (292.8 kB view details)

Uploaded CPython 3.11Windows x86

attoworld-2025.0.17-cp311-cp311-musllinux_1_2_x86_64.whl (596.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

attoworld-2025.0.17-cp311-cp311-musllinux_1_2_i686.whl (626.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

attoworld-2025.0.17-cp311-cp311-musllinux_1_2_armv7l.whl (696.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

attoworld-2025.0.17-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (426.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

attoworld-2025.0.17-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (455.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

attoworld-2025.0.17-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (563.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.17-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (434.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.17-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.17-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.17-cp311-cp311-macosx_11_0_arm64.whl (400.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

attoworld-2025.0.17-cp310-cp310-win_amd64.whl (296.6 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

attoworld-2025.0.17-cp310-cp310-musllinux_1_2_x86_64.whl (597.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

attoworld-2025.0.17-cp310-cp310-musllinux_1_2_i686.whl (627.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

attoworld-2025.0.17-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (426.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

attoworld-2025.0.17-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (456.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

attoworld-2025.0.17-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (563.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.17-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.17-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.17-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.17-cp39-cp39-win_amd64.whl (297.4 kB view details)

Uploaded CPython 3.9Windows x86-64

attoworld-2025.0.17-cp39-cp39-win32.whl (292.9 kB view details)

Uploaded CPython 3.9Windows x86

attoworld-2025.0.17-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.17-cp39-cp39-musllinux_1_2_i686.whl (627.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

attoworld-2025.0.17-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.17-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (456.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

attoworld-2025.0.17-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (568.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.17-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (434.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.17-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.17-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (447.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

attoworld-2025.0.17-cp38-cp38-musllinux_1_2_x86_64.whl (597.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

attoworld-2025.0.17-cp38-cp38-musllinux_1_2_i686.whl (627.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

attoworld-2025.0.17-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.17-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (456.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

attoworld-2025.0.17-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.17-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (435.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.17-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.17-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.17.tar.gz.

File metadata

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

File hashes

Hashes for attoworld-2025.0.17.tar.gz
Algorithm Hash digest
SHA256 a331b7ddbc94b78b8c108b068f7d1958370e6abf4c836bdd88d11b37c9f7b9cc
MD5 9eac8eff6f49b66e904a667e1073dd21
BLAKE2b-256 caa143f7d597343ff487b58da4677918f81d944e756e59e91943dee04e7c4a77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2c2d1314eb76221ca84f9d94c35f09c3eb27b7f5d9625223b0289862530b431c
MD5 7d9ee546fda3773846b1343c785128fc
BLAKE2b-256 57ce7ba582dae8e310a93e0197435770758cd4f0ff6b9b6f2fecf224f2d3aea8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1aedc068cb444e5858c6c007e0dd8ab36cb315fdfc0bfe0eb68898fbdaab4750
MD5 16cec89db602e3b6e0321971da9bb2f9
BLAKE2b-256 f8a58b9893d6ba329d05b84a616e7df77a3ef2a2eb0c200b26ef130d927747c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4e61188b5cd499ce2304e50a22ba5b6aee79da0784f55c4102f61ce3f9f7202b
MD5 10c653b7299a148ae1628a9c6703b466
BLAKE2b-256 a8acb88d475b6b48a8e0f4102e7d015543a182d5d2b7681a868a867045eadea6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5207d267a599f215ae216eacd81904ae2430391865007558bb15337779eb17e0
MD5 954f179deee938ba0d9323b49566d2a4
BLAKE2b-256 f4a9e913fdda0b8630cb78a934ce27f27b510cc79f54f28230b34cd43eeee5eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9c8e9c0a2691e072aed62091c783184f2a4fafd49e2a58ef612024eeee669112
MD5 4fa1c37594339f1ebf108a160ca11902
BLAKE2b-256 358d2f0d98bbafa8d1f17183fe4394e79181f44cad3615e8e3e89cb430f1003f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cc09e38fe8566607870353505fa3cd5c24f9eb3e2a7264d2e2ba2553014682d9
MD5 09b0f2b6fdf0a085469edfe9dc0a49d2
BLAKE2b-256 beeaf318225f93e5c96345e257fe65081d7fa9ad50490f1febf891c0292614ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 848288aa71e0740726ac33605adb322e769e61f61fb9163fe4447fa91d727392
MD5 235d1e12a8f0367a5161384ddd9b041f
BLAKE2b-256 7c63549c2ee81d7fa151d6aa231e7f73a573b8e23b07a94e5445654a9ace99ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9a919839d68a9aa0562bfefe50e6f0896f93ef348f3f72e215d45241c8b57a5e
MD5 355a03b7737429fcf515479f63f0bbe9
BLAKE2b-256 ef24b04210aac06b776c99cb1ae7919fdcabd0624009f17a3020bde492ffb724

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 03e02941a85303f98daac90b3992f30e54b7fed18c2d55f4a51c95e00983f9bf
MD5 68789c1db7bb1862a7ee9a88deb97b85
BLAKE2b-256 3e6f1d57d887c311fa15443b08de341b4a36755c641e3dfc6bcb8e9ab920bf44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 088e7541110daddb3084620d602dcc9c8b2e2df6e1490955762ebb6ca8ed4516
MD5 ed0fe30dee0ad702ff985867707dd511
BLAKE2b-256 b59be46f3a36c190e4e45acc38cc45b49e2548792559cf096b2a499d05b308f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f63fc278e0bdf24ca5f47ff6c020d97309b3d100db6b0eb320cb71370740c701
MD5 f7191a5a911983f05df2e334b927fe6c
BLAKE2b-256 befd48bf2793e4aa7ebe53c53c2a265874dca8628d88563b166a1673407f04de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 91c31d4eca51fd30bcc46d843162c1c32ad487b53cebc2a02cb464e6fa50c614
MD5 6bbdfc2e16ab90c60179d30b902b4a7c
BLAKE2b-256 e97b9f59a82abbfa14f299407ac592fdb050ae899d515ea27d9279c7414b42af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 50ccd0aa4a98c90055e282df8aa4cbe6f55f42365900e85c278e53f02ba11f1a
MD5 4a1e88fa885496e2f4ea613a8d020bbd
BLAKE2b-256 232df7c98d9d236469ccbd81838695b7c0789ba79e843af8eac98d874caa2e00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7136715fd07566bf451532f439f1e29d09b48c3d9b3b0ee3fe96828011a01674
MD5 fc2bc96516fb6ced7a612c115bc05b4a
BLAKE2b-256 a1d26f8b26445a9c9e6b796a6dc104b743e10ccc8698599cd6ea7d9ecdfda80f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69411ac5af2807dc3f3bae9bd64e95522913295bb7f00afaeac368fdd15884d4
MD5 4b31c377304085a4d08a8b404b1be2c5
BLAKE2b-256 47cec861f49ab40636e05ee4603537d880e5754f221fb5c70a0a36e20defb3e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b050d76132e3d57661d475388cc542698e724a672e5c7ab65b988891deeb6a36
MD5 3483bfcbc4640b03b392dc5f4a161048
BLAKE2b-256 17a698c95d39742131f578458f207060f9e97788d52de655e6b18249396ae69a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a218a296d96909a455e54f8b5a678d576ef30631043e3fc0764e9dfa026ac529
MD5 f5d5e7bd4d400928dd0faa794352699b
BLAKE2b-256 bbc2b7e4aefd704283763c1f4913f4ae381d6b6d1c5fb19b097423bb8de0f561

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aa6f6a4a3762d88ce086195d0471388b80e6d1b206acf5e69993ce7fab8c1b7a
MD5 ad74719ec3909f413e770a38f7f090a2
BLAKE2b-256 3664048c8b42656a2b128488de208f145157a847817ef60add3d04ad625a643e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1777bb90ccc90b89b29fd333cdc0c8cc996eb402ca268d58109cc3b499421344
MD5 4eaeb61d47e2212fffab21227d8d212a
BLAKE2b-256 c74f940c57438fc954cddc178d5558590236f447f5fad734e55dca517a789bea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 43c142d12d3c4216b4b73ac9ecf52bb915facc2dbae5b6d9ccabed1f25055fc9
MD5 9a5035e4788a89dd0a42372fec680983
BLAKE2b-256 8f2a35d55bc9fb57fa0f699638ca2c76c628b40fb90c89319d865c689b63ebcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 313dfe5432ee3079520ab75b5ebd15217504dd47da6af86b6f33205ade80b8c5
MD5 bf4fb41229f984f992c6d7b40efa10cf
BLAKE2b-256 4ab6473c50fac315426dc1f9ecaaafe02960a3d41294cbdb8626bfaca885da8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5d8dfe9a6bc98b452d54e693a05bc88676e6c9d43b1c1f8621ae1f59baeafba2
MD5 1bf6b54e75cff7b89b5caff49461a638
BLAKE2b-256 9af20a9e072f719cc50d702c0c3a386a65f3c0bd8224055ec77a0007d7040e2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3535b9a668595986cf73283a0355a833ab3083374e5335f622f4b0d6036ab844
MD5 a135af7217142780e1fdc848de1f8e84
BLAKE2b-256 667ebb534f29ca27e004982decdc77a1388e508037e67dfcf564bbe68af6464d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d478a2ecc0c5b2dc92c201fda0d430fffdfc6e8b2ad88d534679746c0dbfd19d
MD5 5704b00b2a5ae6e038940cf2cc5f8e3a
BLAKE2b-256 24d2cb3f770d0687ca25f5053de37badc98ad728e388da51ffcfd4e534b202fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 129664dea18e2937d22a8d44ab0883b42955caa583bf5d02325b436f75f57f6b
MD5 2ec7e3ac9898845d2bc0dcbf50cfa7a4
BLAKE2b-256 cb7caef83fe93e52bda01937767b5527d9a9f7d4c4ddc0c7e38306f731060dc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 41301b8dbd708c396a05d6e4419f66940df97699dee7cdc2857fcb083451e59d
MD5 f0e76c0714973f04d7033525ab2f0113
BLAKE2b-256 da7add7932d2a89fa117062ecf084b95289f6e89ba5aae250ca8a2bcdeb3effd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 67712e5072a8e1594e9895433d6f99a9991ff89ddb2a412c3a7c27dfc762b8f9
MD5 60033c3bf91fd8aa4ce07439e10766f9
BLAKE2b-256 834cb10d32634c1e0caebe214f3c3685d7521d9fd0c0be063c80ec731712520f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 85ce20a139803a6c82e7d219bcbfb0cebf4dca1bd736087e4e7b581da365704d
MD5 6d772681ded82ecb0d2143d72cd69fba
BLAKE2b-256 2350a3b510700e6ff81b773712084089233a7f3fdb73db325856c75a57a278a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f82e5e034c5174206bbf162255951cdd699a49c3ad97533980df22743f1c19d
MD5 49e0c906fc49381af15b67af76e4b806
BLAKE2b-256 fb6c9835e7420782bbdffa03a59ff8bf3482d09e9889145ec2fb1df5212968c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 68ee2a680cbc9422f16af1dbb08451c634a6823a3138ca586c13e5c87c7b0654
MD5 1f42563332f740831d4b4be2191a36a3
BLAKE2b-256 5a56b8995dda1ad8631837e479be9eb4cedff90b51091ffffd32cb361c7bbbc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab14f03da915690924e3d8aa286c609cad7b6d02a76efa8b7f2297399458be31
MD5 9043bd591679c586034da737424fa6d3
BLAKE2b-256 974182637db5128af2c5a1cc7d897d0a91e32422a3c692c5d41c41ab58c26de2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a93c0f59e14fc7335ebe88c7fb49246b6a96c3d442f408cf531a0ca7239a5438
MD5 83afd3538a715cbb17575b48cbaa10ad
BLAKE2b-256 ce871c75fe76b45f725e4603418ece3d46de8cd8588d8063eec055ba8b462901

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 855834a8647358c734f2be738f36666bef0482afa54e322b94325ec0f1cc77c0
MD5 4e184702ecbb0f83a8c209220f4fa6d8
BLAKE2b-256 2c9ae08765d3b66698f2adeed1c81f704c8cd5b14dbc76cdaa7a56c15d64110a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8d204920e7effc70508e6d33d712203b6eaa0a4f468e165507ae0f6d84387ffb
MD5 1080ac489901b6610a5aed8b945a22e4
BLAKE2b-256 c2c31c144401c839c783c4ec80d2ec343a740a6555b3694dc0f1e41c978f3d89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 62318a3ae7ca0a4b86aaa705c7af93c290faa0481786aa131184efad79847413
MD5 7ec8a90c878ab2c825922119bbac216c
BLAKE2b-256 7fe14fb4652f24269f3404e5b0274a1936878af962b37082e9330ae098ad307f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ab0656c25b0705304faa7cf9c8618fb9d386f1d509e6ae8bbb65ef8a76fd6aa7
MD5 345dda431c677f0e750c2e68844571d9
BLAKE2b-256 cb2eb0adbf8c381a8a737c59dbf4eae873eb3a96e74d2e5e3ccab5876f28ba9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4d1b4335086d31cf8c1284a4e1ef4d358e2b0afa7032e368fdf9751edbe8316b
MD5 9975337e3c356451513a1114317ab385
BLAKE2b-256 ebae401d2a77267fa9a616aecbcb830d94c4e72bd761dea364be6403b178649f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b94e873033732065a6fddc1f201f9f19e56f1c23cae9183a3c6486c0b71994ae
MD5 d4026fd871404feabeebfed15440493c
BLAKE2b-256 35791ba5300af4871f53328c30f67cb5d7070992e5c1b5fc362ec316609d200b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 404d14288d9e18cce69dea38e3d3715d445aeda0f23c3d7614cb4ff395498b4a
MD5 fa1babc116f6b9452ca7e17c8b1a6e2f
BLAKE2b-256 60abe000a476f28f8fb2827d9091a01409a21f0f377a8a8393fc7438febd7cdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 bee5b12fc71865756ed71b69987d6c938d35caa2eb22558338d97e898fc86e47
MD5 5ec126ec45d10d2e4fbe46e14159a001
BLAKE2b-256 694198db2bbdea86382cec22b4abebc810e8a27cc377af5eeccb4fad63b6cdb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02ec407c3cf1f79df765db113e81b701a7e2c29f1a6f38b5755ba9643f0f4bc8
MD5 2fb147e9cc3b82e748e298a70ca70b32
BLAKE2b-256 87fe83c6d577b02a01aedf941339c9a57d43aa43aff77a522569dab3d9154574

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2b8f9db448aba669ff953cd25beba4812109404eb5e85eea761ae1e8c3662b95
MD5 a6931e251bc7cc05aaff942ad53f9552
BLAKE2b-256 e4db6450453de7b1a9562a48f074a53ddc896cd6aaaf6961edf0c2cfa218133b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 45358f3bb30d18693de7eacfd2fefb74ce647510aaf740cc06d36207ef30920e
MD5 4d988989b0b3d311c249c418dcb3e3a9
BLAKE2b-256 32fd9aec959129c7b9724a45ddca9325c59851fa624cc11d8160228e27df2fcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 beb119fa4095ba1c8285a3f706a29d5c9062f3e2bdf76f82bff1b354a53415bd
MD5 58823631cfdae1e614f2a790ef44ddf9
BLAKE2b-256 b26accb21303b417f2d281491b6b80e6e95127081e46e2617353ae5f62589423

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1860b8916bfdb87ddc58c58557bca206f3dbeb05c63f6ce311020efaa8eee70a
MD5 446b1e08da1a275e9c64f3a956132886
BLAKE2b-256 16f49b5d4560d5ab5aa255a3947d8db9212b48cde00d108146d995f196029685

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f870a1ab07a4d88f4f5f7a73837894b225c74dd0b369ec930460ba2295c4ad61
MD5 e2b06ac4545cd15d4d446a5a6bd20f50
BLAKE2b-256 89db1e7d67d810eb2866c7f87fd8678c510ddac515801d2581db4df3b217a412

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d2549a65516930b858ec747c24b1e65fe7ba1eda16edb74384e67538e24f04fd
MD5 7b29488b895a1e5e92c0be66cd3087b9
BLAKE2b-256 9e72e6d504d414a37e032250a54912d6dcef0a5c2c5d84758f3984b864777dd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cfa575a918aa0db1fafb15686c0506981c893141a0d5aa660cc450af96d83092
MD5 275e2682116187ad6ccbb0298469ad71
BLAKE2b-256 08764379e2a310ec614eaa6413be097ae573eb8780fbdd7ccdea9ddac2b09926

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cbfd744eaf940fc0add496a6bf6efc7172b24868615b74fdf1054510b265f110
MD5 bce38fe2bb7ab8277a94f58a664b9909
BLAKE2b-256 39ba9c10e353552e1bc70f25a97ddeb5bc80ecdb5ee0779247cbd626fbaea8a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c85c24c63a0f3c7c725ae1fdb532b9c57f959004806eb3a37d81bb298fcd8995
MD5 e1385774470be73c859c882a2fc7e18e
BLAKE2b-256 ef1cbc318bc2e1fea2aae8dc855016d480f51b5f267b31a05b10dc9dcb3f75b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f7eff788ad76ea93070c2997bcc8c58a95f7b3e79c4b20137dc081ca4d86f60
MD5 3a1a4e32feaad30538840f4d9b917eb4
BLAKE2b-256 d6d6f1d89ddffe85834230a1383940ffb3dd6c21e9e6ae4c616a1d0e9edb2693

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b271734d61eee65443372c09e7338e163e66c06f035a69fd9abf648e6df4a93d
MD5 eba2c5311e4069802dc26f00b0b269c0
BLAKE2b-256 d1a3408bbd8828476ecbf0c11fb9739ea5bc9f69c1834db45a114862282b8c48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9f8f1ba18222bd333ca4c72453201095e8b35dd29986a263580891f83dcdcfaa
MD5 2ff3d9026f74b53d2e6f71b219294a5a
BLAKE2b-256 2b3cf02f3fc96ca12f72b6438513ed6a6a41bd71e484df4ccd61eb304da27630

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 095b0573b261ca86db435023e063cd4bf86b36f6baabd25a5bb3cb4071ccc5d3
MD5 f355577603d2f0e6c9b7e3e35f3a5c8c
BLAKE2b-256 cf659b77392256d7ce3b54c440639fd0c8aef8e60d2fc544fa7660f0eeeafb85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 14dd3e71f9213e177e5be1bfb93f54408de96385162e74dc11fb0e3c932f8a25
MD5 b8fc7b8612b76ba0a31041247a2171f3
BLAKE2b-256 07a5ab4a3f07e97fa1e484b555fb1a2a11ed398ee868f35e58b8b4f7510a2218

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 403e2b021f8326f9d6015ab617d8b8c65ca2adb7251d47d4d6b589cba56995c7
MD5 0a15249b68c18499bb2391cf67c83f7c
BLAKE2b-256 0b7a116e12ccc774a37d53113d2c97581d456a78cb59b3f10db83503ec5a6605

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3931d60223865fbea4e942ec8cee77d0217d9ba44a376277e8e69e24df21ef9a
MD5 57add754503cfb3edcff04ae7a2a3d02
BLAKE2b-256 5efadfe5e9c9b15da615cb4e3548c2da877555260b4e1e849bf761f1d0810183

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 47d971676a9e1af4d3bfa72e390933288903c186d1b7e265cc195827aa322378
MD5 efbec72fc6e7e9a903a52183d590aa54
BLAKE2b-256 16be4c1895636221503ea2f39bfa0e56f5e0ae667c7fb78e4f1f88cb6031128c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63ae37afa59153336e9996780644cdbd01ebdaeca688fb2518b7fb7efa9ad323
MD5 8baeb941fa877f33f58ec57a8b612cb8
BLAKE2b-256 f99cf5892d54d756183ebc3ff4c1b8cc3ec29d29eb1e77f027e604714ff3c148

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 95a9aa4ce2bf8f71a072333f15e6116398d9fa7d9be7758dfff3cc93e082ae00
MD5 fab7afdef425c31644aa0e3d105bc30f
BLAKE2b-256 e16fb3cea1d11960d2c4e3c01954bc4f31d5613f4dd51cef3d57f6b91fdc1cc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6d3c1bc3b184abe4d4eee2622d4df4073fb54b4ce36356da91ca4c55bd6c01e8
MD5 fd5eb62a0374756036e4096f59ee8c2e
BLAKE2b-256 9d23a311fdfc6d7768d752de28bff5857f1961597215dfe354b23a11f6105992

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 03c2d764b24aa7b9b5d8bcd418caf3497f1ed4433cce038f5acfb1e9a964ec10
MD5 01d54e3bda526878d971c1bcf207bbe1
BLAKE2b-256 6947aa9c1220e875e6f2c7e9f39ea0d3b73f0a597255e914264f0f040802942b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f1c8e242f752f000e0bf2ca7d7b26350be9dfb82720ca920b2b0aebddcff45e
MD5 9b1fd5c3b6105fc3a23821bd07b3dea2
BLAKE2b-256 9be365aead2986bf106fffa73c9faed0839f1d6314f0f64bbcf8de2b331da9d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a0432144436feb84dd64621dd6844b0b64e37edfdf37acd6db12b142d395dda0
MD5 c13b9229e1114bb3d15eccb14634f8d6
BLAKE2b-256 db22e8cfec31a8fdeebf6a0081ee4c26907781be93a4584128e34dac2660a6fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0276de79dcf19d1198e702d00825d51cd5e6bc02ab47cced80e330be2a9d900e
MD5 08a309e6928188a4dbf6e1c71793d277
BLAKE2b-256 f80365a0232ecf7a723c3e89d48caf94975181a3739c891f1b7b2350a7b7ac96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7b072351eb7ac96e3d91cf51a769baf2a4d9512c0db7770a895a258509131725
MD5 acfb2e7f526b4a73a8e8c494a5a9328e
BLAKE2b-256 d21959bbb992058dfd2ac026dcf547fdb7c5d1902c22eea3191f3946440f6640

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 befb5d0eac21f5d70cbb5b179ffb49dc50f342bd61668c196d3a724db3d17fab
MD5 eb7c41850971196af38771c6a882148f
BLAKE2b-256 7751c978968d9980653ed4b89757887ab784051b01923f2e61a37197daf041e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 fcb1f0bf420ad3a0faabd5894e98ed6df801650bd1ccd6d910792830ec82b84f
MD5 c926c8d71f506a75a97f86d83b3b00bd
BLAKE2b-256 d22fda3ad54b638ea963ee92c8b1aad7d808fc8f34d0eb2e6dc8a038c048f58c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fbbc38ddbf203370a89c4a964d8b34458e97f797b9ee92f1fb45d361313f3769
MD5 d2cac51c334807b032c5c9564529ddc9
BLAKE2b-256 bfc9594d4e2415926c8ad574189127b83a85017cfe0ad35975aee3f739b5ad9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4e1ef8750834924af865ba4b325530fd75660644056e932d02b63b1f91c00dd7
MD5 1faef50193adf2fc93241197973de7ed
BLAKE2b-256 8dfbde0d1dc7c7e0bc4ffb5499ed196cd30641f1e7ffdcd5751bc737f2b86b04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a4610286dd2be303f16cbd04a30091d294b54850a561bb929ea234ad8835ba3d
MD5 aaed7bf2604ebc0e37e79ef1a7e74ac8
BLAKE2b-256 f97e3505c2c5dbcfd5421c4717dce55657bcf54dd1b338a82c919c4bbd11206e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9522a9520f506eb155ce3fa9b317ae55b7fee46efd973b83394d853da7a96c36
MD5 db629ad4e56448504508a01914758cd6
BLAKE2b-256 a376c47d7139dceaf89245ebf375bb6146ffa0ad8249db6e829043cbed5551fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ca4a92537e226135e28ce8d88fdaab2244ed8f3f6fc2d34071ae144f750e3b9
MD5 0834a7fda6179ae978186dc88a9da467
BLAKE2b-256 c7d78f7edf42a6da660b5347d0f154d4cee2b1887fbe72dae566c25fa3af63cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8a038ce37073320b4ce3e7bf79431440243a12ebdc83e96df02183eaa5931660
MD5 21082e8d71520bd86b2bc5363a9d612c
BLAKE2b-256 99aab91430d16ce9e4bea7625023f7a798d4f874220db32dbb9a8fbdcb01d872

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c0fa96bc2311447e7f522baad6eaae7daed82e88d92b68f48aa722ce35e5bed3
MD5 237dce83a94c84f5ac19256a8a08e0da
BLAKE2b-256 3a11c270733e5d4ff15d6f3b1b6a0b3ab80c1aa0d92ea32157c322a2b5a767dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9ce11d37f2af472845971f6302d7cf2e670fc0c2b6434b1ce555ca479d18e79d
MD5 9b5093e808d12125d431ce741206a97f
BLAKE2b-256 f9f605cf08a6f3551581d5687c66b80663f0f6f53777474c153fb00ccef403e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a347d9bdf19690980a612fa47a44b4abf65cb0f3e4df8424c4d9e1a4e8ccef0d
MD5 0aef962fa05bc406a1eac769ce6555cd
BLAKE2b-256 e9180e5a4df112d444d5862f11e886b951f55a59acadc2ee2f7d997d67d7bbba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5f7a2a6fd8f4e920381da0e75559bcb0a3ca844a72c82ed5c4a35df091f33e96
MD5 5dc284b69a0cb0b9d84428a11fabd687
BLAKE2b-256 0b87487b4a5f4a0b2da7d218f07cbb45ac8ea77ca4da4019c97bf46b7437ebe2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8247a0c656c3f3fdb761da1c86d1c7e4465eb21341a2561e95b2fe2a2627242f
MD5 e86de898e0255f7c98386a3eacef3abd
BLAKE2b-256 26ec719fb250dc074a6777e77cd7a01bebcc33bbe019960d3064a1c2b62e42e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 94726b009f68f3adfc44f3a3a112c652b15cb6bea9a8b2338c7190e6f723e417
MD5 d7eb3f4a95021001c8941c50b147ab58
BLAKE2b-256 6f029be273f4022cc6b3ad62b6f03e23ce7813b6f4ceb6f60ee46773cd12da4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 30613cfe91eb77c41a7aa5f2be5d16a435358da6d88f9cd84f2c2a704ba2b1d5
MD5 64414264e306ac251002589da7e643b4
BLAKE2b-256 2e15294149afe8e35efb06716fb4e573bdca2815817b55878f39aeef13134ede

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d1f5a7ea6eac8dc2df309dda0c4679e0a18a3742104ca9827f8067773c9a3683
MD5 d6464851c2416252e5f2ce33da35d131
BLAKE2b-256 d4a3187133c201384943581637b4227f5c3c3f8bed5ecf9df383ad03a0ac9bae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 199eeab993a72eed96cc1d066464d72c62d7177387484674baf6bf2879785645
MD5 b3e0dbf476325c53861cc1877f59df20
BLAKE2b-256 194baa416fd25116ea639e359d7697da132bada950455742c84f57b6e9cbb582

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c48a8c863f7c207d35d78aa9b36c9ec05d18cce7673913b105d86e85f4381199
MD5 c6709bffb6cbc5b3cbe69bbf1fb8ee9d
BLAKE2b-256 a9b9b5a5bcf1d210a06c950c7a98b6cea423f6d02b499972c6e80e398c59ac74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2aa6ee92491762e7639b74cd43e366862a3f1b3ae6adad63386e9566eb8113f4
MD5 6e27eed3b87a4f0c08ff8cb21ad22767
BLAKE2b-256 2cf56eb34889cd991dd7d26c18a94c4de43781cc8577c7fc312641006088c507

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e41164ed8409f3dd6fa7d42278ba490330740c54b7cd1d3f7f4d92d7ed86c592
MD5 acfe6eedd8dd4208a1b0b582d8401a22
BLAKE2b-256 cb744385a9e5066f261c9877363be2837869c88e0fbf1b579a605aaed043137c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a2de56af96bccf5bc80a0601cda0532629ae3e91fd34a61200d70f1860e43b3
MD5 fe513092067f74087ebc28057f9d3b8d
BLAKE2b-256 6093f789b03b72144f52511ada481e8d0bcaef8bc9ac330f35bf6210bd8b23dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e5e8d4cab63f8cb3354dce91f7f03733533504594fff516ae184a433c61ce0ad
MD5 e2993c136bb592c55e24f17b1ca7d865
BLAKE2b-256 84e83cb080887c8ceca1fbc31dcc18e494086fa892abf78fbf4c5c1d7ee40fd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bcf7b178653c3cc0f32cb938a256fe1192efff742b56860ab84f6138422dec55
MD5 368641f4d60977b6c0b899696c10cbb0
BLAKE2b-256 35eec78d4e3f5dafa609e155bddb2aad114d13f2bede16c574d9bd08ec838ddb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 77a3e84d3ad6ded569ef9609402d86c559fc8f9216bbff3463bbae4a78243338
MD5 94585d8f08645f29fd5536db9d64bcbc
BLAKE2b-256 9cadcf4b5883e59d66902cce9f30d96b344c701224ca6a81b229c88e34c4c6f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e89fa4ebe9493487a1340f6bda229c59ca2cb8e9ece7117ab62de9e62366eb4
MD5 c355d1a9fc1c38b1581ab71584497f40
BLAKE2b-256 409c6ae8abd9183e8906701f7093d4efca013ec774f60bb349846d5dab9459cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 14f39f4927157f55aca266f8905ae2e415a8569998dd372782b77dacb2ca3498
MD5 31db572e3d668302c706344ea2a0510b
BLAKE2b-256 a67c931e159bf815c47bf5448d231ab099376ac234744f01b8494d4adc288aa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 309d51b9e4cbea00b26f216e2e3f28a01dbf368675be6675a6ad8f8beffc080f
MD5 6f39600427fe0884dfe35e260a554954
BLAKE2b-256 0dbdb8debe8eac2a614a36954cb47acf9450dd94ecc84fdb1c0d552974e33eb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 80fe0c2a7b8fabee7920e7cff8b6509a3647a47ce14027d895828db50958c877
MD5 a4b310c56066161a35c7ce0eab454e7a
BLAKE2b-256 b608fe3d3b810ce8b2b6eeba6b510d4c93a8e8f8c3253a98e26aa71d0650e6a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dfa350f3e52bd5c8312b64d0c22f0fedc809fe35f15085429b5bf241e56dc4cd
MD5 ab37fa5798ad11419bb5bc8f41d084a5
BLAKE2b-256 209e5f0ace367fe4a432ad0772d330080246ba28e06f5d5cfe52c4f4ed866757

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 23f831c5816e36ca6876f7f1ef750187dd9efd3cd289f1fa79e7e4e818f19ab9
MD5 812daffe9b90aa41587d574d12007c76
BLAKE2b-256 9c95130e94ca4b2ab1951a968db7a910bc024084798965c01fc59acb741bd4a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a17aedbfe2098477a62b81e8cd362706025587ced4eb6dc3e38ba0b71b112f55
MD5 88dc9a0098869abd1ed5bbdd7669926e
BLAKE2b-256 8aaf37f798ffe2d5899b18191d0cbd37567db68b8453fd82f2c1af4cbb6c7475

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e70b87bbc8b9ee183f39f7290c4baedc86a53e9e0826d2a08f0f4ba649936f0
MD5 2aa7f64b62732cd711c1620f91809925
BLAKE2b-256 dc146ebe4887d89d0d2ddf73e518be73792f2f7e76ef97ddd6926d73110e7268

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5354f93cb0e148ed9f9d3094a979148323369369cb6c8c809608a4b54546548e
MD5 9e5209741a92d9d3dda3be05212ce2f4
BLAKE2b-256 765abebaea8819fcdbafe003b191d29484aa4e7cf379422fc28fce2af6114706

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5ebfcaf10587b98e44398c4dd0931b85c31b6a091206ae10493100362950a034
MD5 5d091aba2f786bac7c7c2ce6973abf21
BLAKE2b-256 be4ad195f4d53807420871c6e6c7f276d179f115294291e0cf92a03adf0d715e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 30dbcb97d03e235e673531c98d106d6e580f49f879be2fa01d94b2115e2f75b5
MD5 9a950c4af013fcbf9715da8945af70bf
BLAKE2b-256 7a444d28c2fe2ad72ad77c71458ccb08180178db87114b58b06f9a35f2bb16ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c689176056b18e396f7b590476dba9f2a3301f3df0437c9f3a23255e8b3d82ef
MD5 97966a1504ea889f58fc8b83c3d3d7b1
BLAKE2b-256 924deafe228d16ba637c0fefa3ab93a5c923c20e09abda2d172fefcc868de716

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74ad230eb5d80a506919c9c54edd06a54208e63f3dcfeac94199887b3e8b3072
MD5 f5ddec7801897fc7242e2ffbbc870402
BLAKE2b-256 f42d0dd4c0bf3653f13b92f8c36de088f1f25eec807dc97014c44b3b8d99d05a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9f508077e678835290e34fc5b5e4856440ac5a5f4704ac885515f2c0f32ed988
MD5 8c509c251f1fa45c6095244f919e3825
BLAKE2b-256 e4acdeac367afa559ffcb5a264bbda3c7b653dea35e28bc3d029b2309427fce1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2b21dee66072b6f65695c7456ab4b3c72642ec6846cb6f302089bd597a89d4a7
MD5 591f37451d02ec80cc21ca065d8d542e
BLAKE2b-256 68c57fa072f0eefb7b3f53a2325ac69cc3f553248bb852157875202709b11ac7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 0e9cb7cd32977320de8a12ae9e7463015dce0e82abc928440bb97108e5e75952
MD5 3b1f3e8146f5fcbf199a3e0b7cbfc9cb
BLAKE2b-256 4d2a7be97bb512c33aebd287f35cb39d950232dbce5c426ac27577abf958479c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6812cd3f05af5b2b1fb388f6cec89cf558088f18b9d366f1f06172487aef5a59
MD5 d48c744f45ce3e555922bfb6046e5aff
BLAKE2b-256 ad1cfc609e05debf41851c2ec8e1b500eff8b6adeafaa36e82a2adb36a333fad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bdc6caeb7ee3f89e06c2839bcefaf0394a5dee7de85ca6b0f2667f3258418a5a
MD5 71d5aa35a38395a3ab84ca980c70a142
BLAKE2b-256 e78ad5f24693b99223abf90a5c1df37cad9f6306de060b38376d0883c4851c7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fb22f5a0233220b6c58a40c740d5a31735d5fcd08875b9306c1ab519bba44aaf
MD5 fb7b2ff77953f8e7ae685af67faa32d4
BLAKE2b-256 d1950bcc2a7a9755d8125d8c6063a31dfbb375f08d1ec2e36efe8d3fff3c36c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 93e272991f7744d8e148089c7f46802de5b7ab37154fb98172b8b4378f8b7a4b
MD5 c704db12873de7d604470e3aed444cd9
BLAKE2b-256 c1513ba9316c40926e308544ec5f61bd08710e6ab94989075afa9ab2333e8a23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c01fea84c963cdaa0224e57e9802ab4a612490a4225580ba0519f58631e73c58
MD5 fc39d9da93ee69c655b5103baa2c2358
BLAKE2b-256 501872cd4724ad051227b8de4f4b4f1926c066037755082186db4a0ba8675138

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 accfc9cfe49046d438c5aede56a3fd50f15fbe4167de5c0f4c09c6eaba109ce3
MD5 e7927a8e2f22296dc65d712dca75205c
BLAKE2b-256 20ed642a14bda8aae13389f1d172dc75a83b60cb58742f4246ccb9ef6dd315ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c5a9c941e875479dd4d9b383fc7a9b58648838ce7c52e2d02b04b2de44238e81
MD5 29d70371c8b09b46f8b3f3ff2d2e30f9
BLAKE2b-256 52dc87d5c8024ec0e4f70e04cdc75c73024927573f107ff7bd6ade9b88c9d3ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 218bca479e96b61d8c74803c87cadeb3d926114b9bf3c7d59f526c6af2855179
MD5 1703398f75a67cdef7de30434f6109ca
BLAKE2b-256 86115d8bc809a783825c2a0e6460d0e672a3074d914bb7d43071c22b9b349b34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0d600547e59e8ec22e3473d219d35f0cfd5393e035692f1074168cd11bf03e12
MD5 962c3df10a43095d560c21e0723e0a36
BLAKE2b-256 352f52518e31ef825ec0d1e0ebc259b13d2f0d14b977541026b53a325c34880d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.17-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e6feea566cd53f3c64b58725e08388c08d783f16d75e13281f7e0ea326775d4e
MD5 4f4107b0107ac695f1973ce2aae5a3cf
BLAKE2b-256 d9a69db767da5c69e6e3f9979289b31e71a930290027f230fcdb6ebdd5d43788

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