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.16.tar.gz (189.6 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.16-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (595.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.16-pp311-pypy311_pp73-musllinux_1_2_i686.whl (625.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.16-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (695.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.16-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (603.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.16-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (424.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

attoworld-2025.0.16-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (454.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.16-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (558.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.16-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (433.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.16-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (425.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.16-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (444.6 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

attoworld-2025.0.16-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (595.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.16-pp310-pypy310_pp73-musllinux_1_2_i686.whl (625.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.16-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (695.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.16-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (604.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.16-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (425.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

attoworld-2025.0.16-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (455.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.16-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (558.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.16-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (433.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.16-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (425.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.16-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (444.8 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

attoworld-2025.0.16-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (596.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

attoworld-2025.0.16-pp39-pypy39_pp73-musllinux_1_2_i686.whl (625.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

attoworld-2025.0.16-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (696.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.16-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (604.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

attoworld-2025.0.16-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (455.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

attoworld-2025.0.16-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (563.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.16-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (433.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.16-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (426.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

attoworld-2025.0.16-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (423.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

attoworld-2025.0.16-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (442.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

attoworld-2025.0.16-cp313-cp313t-musllinux_1_2_x86_64.whl (593.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

attoworld-2025.0.16-cp313-cp313t-musllinux_1_2_i686.whl (623.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

attoworld-2025.0.16-cp313-cp313t-musllinux_1_2_armv7l.whl (693.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

attoworld-2025.0.16-cp313-cp313t-musllinux_1_2_aarch64.whl (601.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

attoworld-2025.0.16-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (454.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

attoworld-2025.0.16-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (557.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

attoworld-2025.0.16-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (431.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.16-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (424.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

attoworld-2025.0.16-cp313-cp313-win_amd64.whl (294.1 kB view details)

Uploaded CPython 3.13Windows x86-64

attoworld-2025.0.16-cp313-cp313-win32.whl (290.5 kB view details)

Uploaded CPython 3.13Windows x86

attoworld-2025.0.16-cp313-cp313-musllinux_1_2_x86_64.whl (593.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

attoworld-2025.0.16-cp313-cp313-musllinux_1_2_i686.whl (623.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

attoworld-2025.0.16-cp313-cp313-musllinux_1_2_armv7l.whl (694.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.16-cp313-cp313-musllinux_1_2_aarch64.whl (602.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

attoworld-2025.0.16-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (423.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

attoworld-2025.0.16-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (454.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

attoworld-2025.0.16-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (559.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.16-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (431.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.16-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (424.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

attoworld-2025.0.16-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (442.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

attoworld-2025.0.16-cp313-cp313-macosx_11_0_arm64.whl (395.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

attoworld-2025.0.16-cp313-cp313-macosx_10_12_x86_64.whl (400.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

attoworld-2025.0.16-cp312-cp312-win_amd64.whl (294.1 kB view details)

Uploaded CPython 3.12Windows x86-64

attoworld-2025.0.16-cp312-cp312-win32.whl (290.5 kB view details)

Uploaded CPython 3.12Windows x86

attoworld-2025.0.16-cp312-cp312-musllinux_1_2_x86_64.whl (593.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

attoworld-2025.0.16-cp312-cp312-musllinux_1_2_i686.whl (623.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

attoworld-2025.0.16-cp312-cp312-musllinux_1_2_armv7l.whl (694.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.16-cp312-cp312-musllinux_1_2_aarch64.whl (602.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

attoworld-2025.0.16-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (423.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

attoworld-2025.0.16-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (454.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

attoworld-2025.0.16-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (560.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.16-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (431.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.16-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (424.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

attoworld-2025.0.16-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (442.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

attoworld-2025.0.16-cp312-cp312-macosx_11_0_arm64.whl (395.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

attoworld-2025.0.16-cp312-cp312-macosx_10_12_x86_64.whl (400.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

attoworld-2025.0.16-cp311-cp311-win_amd64.whl (294.4 kB view details)

Uploaded CPython 3.11Windows x86-64

attoworld-2025.0.16-cp311-cp311-win32.whl (290.7 kB view details)

Uploaded CPython 3.11Windows x86

attoworld-2025.0.16-cp311-cp311-musllinux_1_2_x86_64.whl (594.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

attoworld-2025.0.16-cp311-cp311-musllinux_1_2_i686.whl (624.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

attoworld-2025.0.16-cp311-cp311-musllinux_1_2_armv7l.whl (694.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.16-cp311-cp311-musllinux_1_2_aarch64.whl (602.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

attoworld-2025.0.16-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (423.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

attoworld-2025.0.16-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (454.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

attoworld-2025.0.16-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (558.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.16-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (432.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.16-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (424.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

attoworld-2025.0.16-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (443.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

attoworld-2025.0.16-cp311-cp311-macosx_11_0_arm64.whl (398.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

attoworld-2025.0.16-cp311-cp311-macosx_10_12_x86_64.whl (402.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

attoworld-2025.0.16-cp310-cp310-win_amd64.whl (294.1 kB view details)

Uploaded CPython 3.10Windows x86-64

attoworld-2025.0.16-cp310-cp310-win32.whl (290.4 kB view details)

Uploaded CPython 3.10Windows x86

attoworld-2025.0.16-cp310-cp310-musllinux_1_2_x86_64.whl (594.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

attoworld-2025.0.16-cp310-cp310-musllinux_1_2_i686.whl (624.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

attoworld-2025.0.16-cp310-cp310-musllinux_1_2_armv7l.whl (695.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.16-cp310-cp310-musllinux_1_2_aarch64.whl (602.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

attoworld-2025.0.16-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (424.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

attoworld-2025.0.16-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (454.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

attoworld-2025.0.16-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (558.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.16-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (432.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.16-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (424.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

attoworld-2025.0.16-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (444.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

attoworld-2025.0.16-cp39-cp39-win_amd64.whl (294.7 kB view details)

Uploaded CPython 3.9Windows x86-64

attoworld-2025.0.16-cp39-cp39-win32.whl (290.6 kB view details)

Uploaded CPython 3.9Windows x86

attoworld-2025.0.16-cp39-cp39-musllinux_1_2_x86_64.whl (594.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

attoworld-2025.0.16-cp39-cp39-musllinux_1_2_i686.whl (624.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

attoworld-2025.0.16-cp39-cp39-musllinux_1_2_armv7l.whl (695.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.16-cp39-cp39-musllinux_1_2_aarch64.whl (603.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

attoworld-2025.0.16-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (424.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

attoworld-2025.0.16-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (454.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

attoworld-2025.0.16-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (563.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.16-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (433.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.16-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (425.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

attoworld-2025.0.16-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (444.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

attoworld-2025.0.16-cp38-cp38-win_amd64.whl (294.4 kB view details)

Uploaded CPython 3.8Windows x86-64

attoworld-2025.0.16-cp38-cp38-win32.whl (290.3 kB view details)

Uploaded CPython 3.8Windows x86

attoworld-2025.0.16-cp38-cp38-musllinux_1_2_x86_64.whl (594.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

attoworld-2025.0.16-cp38-cp38-musllinux_1_2_i686.whl (624.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

attoworld-2025.0.16-cp38-cp38-musllinux_1_2_armv7l.whl (695.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

attoworld-2025.0.16-cp38-cp38-musllinux_1_2_aarch64.whl (603.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

attoworld-2025.0.16-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (424.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

attoworld-2025.0.16-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (454.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

attoworld-2025.0.16-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (561.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

attoworld-2025.0.16-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (433.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

attoworld-2025.0.16-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (425.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

attoworld-2025.0.16-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (444.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for attoworld-2025.0.16.tar.gz
Algorithm Hash digest
SHA256 d0296a6d11b2af77c1788f4b4c7f9f018b747a5f2d04c8c870cdb341a97488a6
MD5 40c7c7a5b1496bb6623e8688f3f267d7
BLAKE2b-256 f2cfd19cebada62517e4bdd3b2cfd8e64e342baf3557fd9169ff53d237ba7dcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68bcd04c15fbf8a115f39de048c9f43023c10f62808f1cfcd539490a3d0ff083
MD5 e2f059c151bc247cd1b3be938d626351
BLAKE2b-256 0986152595f84ed5e4c40cb95d2c776ea6a61fbf8493559066ed0cba272f4df4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9f56eec2b1e9d4ad7222135f0c397ed8c6787c8394efb814e21653eab62455ec
MD5 cd80123e920c44256ec5f843009b8f80
BLAKE2b-256 e874ec42fa65316bdcd1eeddf08ae8abbb2e9d26a91fac722127450771c91927

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b7d57ccea15aafe369017c7936789859cf6e3e3e051e620da1e348a8db48dd64
MD5 040a7038193b7687ff02f85a91dda2b8
BLAKE2b-256 2727a78641e884a38da41c18ca840b2411a4caab3a7a0157038fe1f787d76f65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bc868bda2f15ca2cf786d14f4531514f5d10f517d63d95eae74f8814e34bbfb6
MD5 0c07308a45add9d8fb8df17807b7439b
BLAKE2b-256 a28af39c39b37083ab6021ca1178ee04ec91a91751e8e96c75c637a6c6d991f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b93fe377d9fd7a408d5c4fc0d51505f4eb5b9ccccfa4d6281ba7ebf325d2e23
MD5 bf1435a0892b16d600fc3d96f97bfdf8
BLAKE2b-256 92b83d3873dde12b479463dd07a9a6cf3d7cb18efdef8c73c4ab5dec8e7a71e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 abb353bd1936804194d9c59739aa816526832d4b2c2b73e93421033618bdd1cd
MD5 6446bd9919e234604f2923ca91a503f3
BLAKE2b-256 180afbdbc9f6f5e64896c1fab43b7fb0df77dd37230d23d014023071a29d6732

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6b923bb1331e3fcca02266dacbc341b4018d04a3ea1bd3c8ee0c6c1a131e61fe
MD5 fa70ab15dafc43944c43335700e50ced
BLAKE2b-256 cb03fa6c9cb6a5a70b0cea6bdfe3a553861b7b42d9bd0d050bcb320449ad8432

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8e8134e93d50e1370e246418e5d67f0dccd0fda4c3cfc56d330312bab1ddab74
MD5 6e2a51356969dee4cd90b8f019d4968d
BLAKE2b-256 6cb24ed1238eb4e8c319fec6568a2986da9aca0b32c11458db9f19fc296ec682

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d813442254b735db41e1b728a1d58c899092c63049c41f2f2eee0105d3350dab
MD5 c1751eb2231f8ed3813aae60989262b7
BLAKE2b-256 50c4c6613039ea567e7524dbe1ddf764b8fae0d072e02d6a5920e8cabf27a8bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2f19ebe59ae2a99f4ee85394eba1f053fb99cc02d25b17e81ecccd24a96c1f4c
MD5 2b4a3831a85a8e98d0dbebbe7988fbe2
BLAKE2b-256 d5847ddf30de5f5da893de1d63e83efe21a3e5c506a11cea8dba2c395dd5f4d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e7907839f64c51cf5e53d4f1f787302d0f31b7b881e419d16a92a472e282c28
MD5 08afe574b4be21fa3cd52e24fd08479b
BLAKE2b-256 fd03b20a9ac3f68bdc86fa0bb007d0aa8b6e239b68bf49d0937bfafcbeb2db98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c25af90c84946e028f52890d7ead33173b25ca76ba36b89ee6f286ba3971853a
MD5 58a36184bb96e93d45d86cc45e766d65
BLAKE2b-256 7625c497be3626656a49678ac7f726f6fddd3c92f9e1e3132dd1a92ebd48f98e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bdc254e579d949fab151dd9425dab6cf86a12722d56253c5ebacef1096fc4192
MD5 b4e56186413fee58b9b154f68a22d64c
BLAKE2b-256 69993db87fb2d7694411393235d1b54204104c190f3fbe4284728efd18ecbff1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bb284d084a95e33eeed5c30a87c814467627defd314922176f727c22e5d046db
MD5 bd5cefde67ebc6d40224675802ad02ac
BLAKE2b-256 76792a6c3446384b38ca06e00469cbe11d4bdf55c23b776b83058779113191ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc92148c41760aa095840b2ee397d5ca95279ee2fcdd78c9220a964d6274adb5
MD5 fc76d5669460b928b435763347c57847
BLAKE2b-256 44197b21d47c8c8e34edd3aeea55baaf7fbcdd75fdaea87135b8b775af55636d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0f1fc5c2f40697b8de1fed435099ece4c7924bc542308addb08534f2c36197d6
MD5 94c0c2455b52b56e7c756348245c9277
BLAKE2b-256 5d8fdf26ac85a15d91105a36f80d2b1c0a5d0dc7a5bb634b7c907f5752fc6ab7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dcf3215289a2b5e6130157a12b24ffed198b0f7e6881a95d09a4350507e1834b
MD5 044df58c781009eeabb37aa7f18cb42e
BLAKE2b-256 7b873011981079cfc3d6a47b8e7ad04dc8e0bd1a74febab0d904f10edf7fad7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 89d1a224c116a064562a3c98e4cc0e4f7293ba67a9d5204d2ef2c5693cf8447f
MD5 13d9aa8fb4d968e637fe2cc5b4629cf3
BLAKE2b-256 dd1669a153e4131032422104889eba8e1af6ddc6c7344f9e7354334adda5814d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a2726b3079e9154d1d5bae7a518bd4b5b5e460bc0ab9b1af9002cc7ac6b34fcc
MD5 90fbc4a0f1a33609a6e7004803fde5ad
BLAKE2b-256 a9071a9e0742005a2446e2b921f26c5e923c659e03cc52d0a1520280d74b13f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 27308d7ed7e8361b0f7c73cd6f2c0b08a44cc2243df5fab8f956f6788d1b38fc
MD5 6cd8f2ea0560e2b4a1aba7d402ed656e
BLAKE2b-256 f33f4cb70bc8cbdd9fdbee83baee35808b32e210b187008ff90d39fc76381320

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3526b5dfdc088f944f1ca6860f71d702ef8a2769e05f6c08b1077df494aba8ca
MD5 33c3314223ccf720b3a5570464549fdb
BLAKE2b-256 26d9e0ce8a4c5c4c38fa79c53dd4b3b6157f10ca7200970ad6c566d645cca34d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0103314f849364f420ccbd471465e0963851e0a0073b90b5053dc812ed2c4929
MD5 aa0f380893dd73ca37e09cd890193f76
BLAKE2b-256 a2ab45347ed290e5794c9e253e4238c9046c52430b765c4deef071db93db0109

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b0822c3ba65ef60d44cecb7b567cc803368a3a925c742fc9495ba89335749424
MD5 e51eda10dfa86d8607475d4b8e7aac34
BLAKE2b-256 b4ba60eb6447ff6fc937c55098ec210cb1bfa7933bf8bbee414b6cb05ab56ee6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 075f66903ee1cf036081b4c789be56832fd52bc60f6f8b525af7af7428e2d64b
MD5 019349a8825b7c7323cd6f4474dd8a72
BLAKE2b-256 4d91f455ba104e3f22cabc4824a1525369fff926f6638ba3abec60bf1539c71e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7ed9cdbeab3a7202284fa712ed460be3f146c1284348c27719f737b1bec72f24
MD5 774f18471ffef02626265642f70c9066
BLAKE2b-256 10ea4f35600f1681e42a33972bd0eb875ea173d4b32a3cf026170c21af75edf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a78615394e054d103627e23dd38e49178a8ba9d5fac619581afcc8be0b506cab
MD5 5f872e99bf7cb9c7cc318b1abb15a6f3
BLAKE2b-256 0f79f45db0173c9efea521683e4a52c4b6aa1066475e85f7b7932fae1adf8af7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 48c994208f850d44fc41b08d661796062742855ed542a3c9f3d3d6d856717791
MD5 cc445549d5cb479b89e6508d7542bc13
BLAKE2b-256 d5b1d0b2d38b922449ec5fa735414691a8e46d9e07334ae25b3cc1c2c7093737

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 00aafa087d5bc9aa6d16e3ac08068df7e4fb98fb3a431c814b1d0d8967c644af
MD5 ed6f42a03b036ba603eead3b59b053ae
BLAKE2b-256 f9143a7bc5d120886a2c9ae561e661389272ceed69420dd59a870aaae1ee9bf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c7dfe5be0638771dc869e647d6e5a696edc8a6ce5a1129903641d735379df754
MD5 d4c9e3092d317d9cdf8249149b38275c
BLAKE2b-256 19474b3d34cdb3ea939a8432c80b043f1985a3d68511d383d6ce4e70dc755462

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 71a81c0f77521a3e1a2c9888fac74ad5933bf216120e0dbe0bc7e9b798a8ccea
MD5 e4e145b8f61f0fb35b5ec68f80aed806
BLAKE2b-256 5064642face4bdba3aba83f21c1545e5e65a5c9b9e286df0bae31f2b9059e5bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a747d0e5b527ec3bb05459e2f21eb4257b51cb2339600f499d9e1439ab40df39
MD5 1433a459faa05c2d05fc8b145ab8ff36
BLAKE2b-256 da9202b4fec54351a11aba5637a8221e9dd24b54e702159f73cc64474e532780

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 07a19e50b3881a48684c00149f4cfe9ca1b3b9948ee73a3fad7770a3c61fb958
MD5 2ea08ecd67ac8085e84603ff7e7834f5
BLAKE2b-256 1c7730fb6d6104529dd73f6b8a940414c403640ea288db4dad5011d0da59639a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3ad900581aebac83fba8c0611d84e50a11496637c91fbf4f5ff539dfd3dbf8ba
MD5 f35b8d254f9ef58f6f604df378b397bc
BLAKE2b-256 8b77d4df9c1571c17d20a490d339ba2654971fca05021b750152b89e47847d73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c349f297b004252964a8a1f9cc28f3437c0f3011e9505a2391266d761aa5510
MD5 e1f112648ea27022d1ca5dfe1ae00e3b
BLAKE2b-256 43eb4649c320e9d53e4d96ac6012cdd3238fb9b31e62c0f3b114e8caa609def8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 36d344f46eca6247e0a7b7483370f1564da86fc48946033866d4b0ba29232d61
MD5 23520640aa5ac8da97b6192b579a4904
BLAKE2b-256 ce479161f8d4498be92d97d69ebee7e3d9bb04fec01aafad1fd36c2865ba4eec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 12f20f801d8466ba63255f8c4a5012c98c31e2aa74f358cf35853a6608690a93
MD5 f6c7db1ecfee012f6fe82b779d3112b3
BLAKE2b-256 a0f1a0c13440c7b4809d358eea8d3337da384e346cbb2ac5f35532c379b36226

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 09fd9057ed91fd4db43ec2869c0916472d63bd547770588b71c44f16400408e2
MD5 aa3e85b797f60e7d8b1d43635ecac934
BLAKE2b-256 3a5724d8912cb7e447d6ec948a5c5102e436a1674bbcdb8925aa2544b11c170e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e955d828d64cb839ff4f06be6c15adc7ce57375fd0990d350e478c609631f34
MD5 f52fe832b7ec2926fc781ec0be000517
BLAKE2b-256 f8ad4b19551beaec4d78d0afb08a25d173463ff90fc07ec3e1b29145188190be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 05f7ff1f633dbb10455369be878dd9721513a12d64c4a2fdce144e91956e431c
MD5 377c8506fb8c2bf943daa8cffe520e22
BLAKE2b-256 65fc6df9221bf851d119b75968d9c526e26ec030d585d7809a7cd77e78ce1b82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b5f1279cca298e560743915dbc8b10bb5ecacdcea95a92f089202d662689d33b
MD5 173f8654edf99621c0fe8431d7444d68
BLAKE2b-256 bbd246782a17503518fac86aabae32d3a368e830ad26b300a4ceb59b4d198dbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a53ee341c9fa7dc7c34e45bb937c94bb34d6da4c8951b5cc5f061519634cef36
MD5 02ce68cb8fed8bbd27faf62c2b2e2688
BLAKE2b-256 2023543480e0b9fe0753fe774f325517def066884bc9a5dc71fde8f53b5abd12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c3a4db1085e354612037691ea5b96dc7e1b71d970fe357a8d28e354aad7901fc
MD5 cba8990de116295669138606d81590c1
BLAKE2b-256 2cac80376fc6decde0fe9fd634bdadb2f9e6868d9a57eae395d25ccdef1bd2e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2bdef018dd007a2946ec6f7f3980c87a7c065042d5854a92e09a7ee698f9f6e7
MD5 65414b47008c725929175ddee20f0eb6
BLAKE2b-256 8c9abbfcdf08adac482e9db5f0cdaf04f2da0f9c22d572c1fcc585176893d3ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c8c4e4211fcf888da19b52d3b41e9a656738dcbfe69435378d5582b40f9a23fa
MD5 bfc1228894b5053cb5083df132afbe1e
BLAKE2b-256 13adb14eaf14f3e3d0b543a12f5cd36765874292fcade0ac65764ea6e89e3be6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2327de28f4291a06c85608ae956c8c8d4e4aa4db213eabe5079f57f479a44fef
MD5 639284f8116e8f4c29e727b5eb194f76
BLAKE2b-256 fde3cda213b96f12918d0edc4515e75ccdd28434373e59f19810d2e81c01d31e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bffe5a47bf973993c69d162db7e3fe33a3ae8ad6f98c2209d52e509bede8ad35
MD5 454b53ae7e9f526e9787ee823c42552d
BLAKE2b-256 71211df6ab940046b2d5a6a477b72e6521e42ed78de2107174870c2ebcac353e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6c5477dfb4e543b1f066735e9ff770f1023c0a63080af16883cc5a789c1c9918
MD5 485952b87484dcf1909cd703f7a4870c
BLAKE2b-256 ea6a6c4778f815f8ae9f47dc3bdcae4c6ef6a4f228774757551ec15293ddf58a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 730fca30eb605a3cb66930903b80ef79ee2b2a0883bd1c3fd95e355371f5915e
MD5 0dc26f93570b0f0262c06ad11e31c8f5
BLAKE2b-256 1a2b3b4f6979bdbb804addf3a2ff97871c4eda2d0b1c4b2b0c4286600e3e2e9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd027055783b4ea6c1a6d6a14a29117ac4041c0cf27b93abca210f8feb526f4b
MD5 c510458fd7be7555fa3f2f3d864f66ce
BLAKE2b-256 d5f867a5bd991ba2dda38c76b312f941a7edacdb33c2318de1c315b9a486d516

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bcd6085cab440df3991c4906e667cbd1ab00f74ce4bd674a3ac4b266e30a1fd8
MD5 3fc64c7aff9b94b4ec5dd1d8abdf6d34
BLAKE2b-256 5d68dafa8bc75d416870cbdcf20cefa1ba9fefdd0c06e9e5576d77edd4a88dbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb244373dfdc0668db8be17855177b111e64ef75aecf8ce57c194199f7fb9d51
MD5 e00102c53c4c1e4ebee84d796190c96c
BLAKE2b-256 477376d276830a7f919b67c414be2d801cc54f0392e4f015cfd762f0e34fbe57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c46287079dd4439708b8f31defe68dca9d83d80265cd576ddb3503c1ba47c589
MD5 df8622a2f0dde25f9bb38718f6b33728
BLAKE2b-256 cb07200e7788f99862c87915e147fb0b32a254cec1f927f097630b81462d4046

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b1c899cfda5c1e21bbf6a87d5e87d76602b3ce585200caebcc369e93de90044a
MD5 7dba34634d895a07d2b4ecac8b9fefc7
BLAKE2b-256 c9a5034ac3a03566174db50de96e0b3ef3f193b50150dbb46ea0fdda62698224

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c8e6abebec49850dd95a7f50e4d114775441418cb7d78e527cd01e4ca64f68d2
MD5 037df494aa84661965e9da5916820328
BLAKE2b-256 5bf212e18e97062e16c47fefcc0dad447b72e41826cc960494296f2a6bb818fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 18f1bdd1a588afa524bc06d8d2947c4e89a3912709f55de5e2596f8e160def1d
MD5 f267b521c907ab875a2a0d36165e498e
BLAKE2b-256 bc341e6a1b567172f4e139e7af8cced59c1458d07cbf82e95e6b9e5c5ffe7930

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 97189a39d91daf6f2cf1b0b0b16336370c55ded763cc2f948e3a3973954d1afb
MD5 b30b929a9020875305fc3ad25e07d01d
BLAKE2b-256 5cea93b88c84241976ee5a9a19a3850f33f2a9b5113d617a4f11b56701aac691

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 444fd6b210192aa61a1fd07f0cd53b26a763ad9fd374f3b8fe1f10c9cbd5fcbd
MD5 db3232b1e216b51d1f552a16776e26f1
BLAKE2b-256 72c369048aa9ec40f416f07731399b8abdbf6c6371206b2480bd7ad7c0a67e2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 affe2d31a4dee44c6ed774d0ec29912a2f83b938a190bed9d07a6aff8206696e
MD5 13bc30def03e336931ecec130e08d92e
BLAKE2b-256 159fd263b54c3f06a02aacf1f21511c789455059f2442aaab1bf6d3d4228405b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a78bd9155470a450139ef8ae16395b552cdd176a93588f72e6f3ee66485f1530
MD5 a25beabc452aaec97e9b6ebe6ddecad0
BLAKE2b-256 3a0a436fe464856872c1b7db5b4236dcb8f408e04c95ff9b1bf03b50412b8e4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9ade0965c6a207a1c9ce8c197ca2dc9c3efe39a09db344e38c9bf0ca0f9fbae5
MD5 43d81e3e37f7277b833b31a2a4204e46
BLAKE2b-256 06e24800726761bb659b065edda42ad024329e4754c70293c8b87ac09f11f717

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 82fe569ec9a42698b6c93454dfea362983bc8dcbd331c480a0c01f022017f99c
MD5 10c8b11391ab2ff9b9994d4cc40eb104
BLAKE2b-256 1dfc489d8a1a62ec6f9319fff0b7d01db9fdef085e3bb7d5d6015657f630939b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 734581785a09668e99ec1e7658e00863f4ac676c4c20b56f51c05ff1fa3f9e75
MD5 21b299b56f478e5c1361233bf835c5e1
BLAKE2b-256 d0842efddafe69cd640c134d3430082244ede69f989aaab4fa41ffd3e77bf7e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a928b08a10787629cd3f3425da6815da1b9d930c82a1ca82e1156b35b247aa5d
MD5 c583bcf522ae4a29458657aaedcd7782
BLAKE2b-256 93a653aea122b32d8e3b4e2a1c2222c44ebaa5bb3acedd598182cbae826a9866

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9be157da5ed4897e5713fb4a4eaa31fa1ff8c71971f8e145bdd464d4983519d7
MD5 03b422051edc4200b803433fc74e499a
BLAKE2b-256 7476a1e11e63b8f07febe536ce250b23ef988f6aec1bc863dd69f0a2a03767b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6505eb42ab5fccbee1724f31414b5536b20e1ba613b4e3b509fa73c63d0fe6c0
MD5 7e32c07bc6d42c14e47494071de39122
BLAKE2b-256 0128dc8cddf30b55001d066f277000dbfea16ed0ecbbbfd61ad5c998efe89914

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5ca8e23010d50413f886aea87e803f41ce470deb815c9939e51a78bb10857be2
MD5 eaef94bd7c45eeb0ec9f083f95b159b2
BLAKE2b-256 117896b39280434de8c484ed74b1827b112cb70966f9bc1dbf24828776f91841

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 442edd73e66009f0511d968d1e14577742719400a7941491e64b42027776bd5d
MD5 bcaec7c641af6f5173e45fdad1f84e99
BLAKE2b-256 0a07d22e611bdca8612c133f4fe0e071e81af066f2d556318726e426877962b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b954314cd957e51a2393e0c7c392e1ed2abf2ecd1db5788b3942695d5840d405
MD5 b6d9edf6711b575420bd8184ef68ef3e
BLAKE2b-256 4c447a8761afa74bef3399c18032bbeb829f63ea51f1916ebf413ccf1cca7120

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94d2c2620567ff3bef914b41686379606874c837f3423d5bdaedee8a06041899
MD5 b51b19f038370d596b249581b2750d17
BLAKE2b-256 76eac09f7e46eb6d098aa4934cf3dd14020d9b012d80ef4b5a95f4bd2a65cfdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 53ef3cd1145d304f75e8e662ea8a6c4820a468f6b4952eaa1f4087583945d9f3
MD5 e2d3a7db3ed3f92d1a592d3e35f61ebd
BLAKE2b-256 97e257ce7ac22dd397d833e48f3c33c95c38da4d6d7714b5a87bf32b7aab359d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f69cbf8b96ab9dd6cd7351cf4199ff0dcb32a27d7ec4b55095767b959911aea5
MD5 ac6c8a3852cd2e15498e46fd6cd13ae8
BLAKE2b-256 680eaf64aed9d9824c5618b801ac0c3e11db863f7b5897f37998a52ba22bdee0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f28c9f8f4fcd283905c194189793921954d4284476957d2091ef33bf0d885f5f
MD5 c2fc3afc899962ceb4d97b8f0386cb20
BLAKE2b-256 9528bcc19713153e022a9f39feb71002517734a3b091206e2c88efe141af8e59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a12855af1e8d315f3dabc6738822d9940f7ba7e715b71514d7950569325eef82
MD5 4b469a2268bf72601c1ebc26dd811c61
BLAKE2b-256 69b86e229ed52a9c2f54745c8d1a3936a3a2ffe9f319abbbfbed0f533246955c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 97fbbab3226e90ebe1e098011abf6fdcc25d0157d5d1caa4f6170319d107a5d3
MD5 88ba30702da677cd92a593955d529611
BLAKE2b-256 67815f1c98fa2240ace01d24bb0cee7b2be7488e1d0de72096903d514ef51a36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e2a3a75e04d77eabc684748be9855b8e4f6dec6eb0e3eaf3122c33826beb6774
MD5 da009f9c29366638ae59310fea2742c0
BLAKE2b-256 33aaafaeb43d78ffeed10a32eef7166ecb3ea74b23b1909ef3490831efd0c2f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b409e03c0f2a2a95730e545ff34e0546565307e8ac795e0e7f8dced84649a97d
MD5 48452c0a95412349d9560660a8ead641
BLAKE2b-256 c1a8d0e66379b96534718f79c099222828475db4ce40d83976a79f0c0974a9c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf6ed23ae4c3f69ca9857c1d5e47f6ad4f2264468b25e1ea97f6ff1917b6da4d
MD5 2a353dc0b10a70ac177196530cfa3607
BLAKE2b-256 c8c92cf27da55dc2b75c63e0a63d3fca6763e3609f47fc5411df660dc3fa6664

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4e2f7635094bd5c69bdf01ed799c257d0e797de43e61ccfd059c6763f202e7c5
MD5 de5d4f30c3336c66639681eeab55b76c
BLAKE2b-256 3321b60bc9cd1495c6f0122f90d49f8295f4353dca2c70bfe6a3a88218ab76f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b88bb183bdac44d1b0702657037ccac637b46ec7adc3b8b961e7d1cb046e223
MD5 eec47068093fd3875813470d2e4a59d8
BLAKE2b-256 138989fa6507441f95d5210f956c1cadc12a9d5407b75cee8df5fcdf36418059

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8db1aaf6560718e4bd17dc1377b6736f8f9e119deaad18ef3f78f50bb15369b1
MD5 ee44a0576bf15db092740b649ad3aa16
BLAKE2b-256 3f9827764e172e1f3ec04adf228c6797eaf2c1fae4ba485e74b86ac93a13febe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5cf531785f646bc86fe2000f80cbb1b1c3ce564eea8d6ac628bbd6170c01c1ab
MD5 58ef2ff9cfc265c51fff733dd911b6cb
BLAKE2b-256 4db8fe3abc5fc22f88e83c50b7c59ee415cba0107131e7b07e0420fa89aa5371

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a63311774c4549b2f1722afe37ec7dabffbd6f87cd64bda951eeec71fb84d78f
MD5 8b3317127fb3c4d483883793182d064d
BLAKE2b-256 0a67dcc9ea89f2b7b040bc29f614c3f6ea0f3db4c363ebb5969b399f4a5914b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d5a6c1dadb18799d9edea944bd10d5ef2910e315a355e9cb150d153f4386043
MD5 522c7c55d4f39e9371471b045e2fbde0
BLAKE2b-256 679c564d30fadf55d78d6a482da07149c6461ba7709c114c0e8713401e88b053

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a5483bf129e0136dcd74b539704cb2fa6170e926a5cca3d989d4cccb30941c17
MD5 c4eb162eaf5a2bac5947475d57728405
BLAKE2b-256 075cf825c2c88c163511da38fa37d5d08900276d2cc742a99692078531a012b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c9062340903f86117348afe43503e3a0e29b893b048f97c38143b6b06e2f3776
MD5 26064b9f4ff535bd631ed454e5225dd8
BLAKE2b-256 55f8dfa2bcd79067c97317ac92df940fa971000f24ec3349953967f50307d088

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 df1f3cc7a2c081515136091d1a8222e8b016411486fd12396058df897e575520
MD5 d41ba5adf7700babdadb3af1fd59a27e
BLAKE2b-256 322f027f7297eee8d193bacc6f04ac6d3fa10db0beb3b52cc3ee90508f3e7532

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94fe2ba5302d93cb25ff4844d0a82a2fef901779374a49d979eac9d6acebe8e6
MD5 35713b59f00c0feb8b97cd8eadfe69fe
BLAKE2b-256 0642d3c08b92bf253851729630e1ce1c474d4fbaab723db136cf1319a7d5539d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1218dc7286f154f422a4acc41578bedc47d50bad7d74ffd8e134f39eef72aede
MD5 6e6ab48f49fb425b9ac77fb305ef3d06
BLAKE2b-256 f922ce919358f8aae2cee391f05c34220da2618126a214e80c8da383b07b3595

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 873702189602a5c1004aae877f6f8161faa734b5ca7edf2d0488be0b65cac49b
MD5 0f51b31ec3f58a484d930104d0bb3d18
BLAKE2b-256 f2ae49094b3046f57268086445f7edf9fb96157d5e7ab7c85d36a65773797057

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 32e0037a911c47c4183807fda77615b69b81a4254c557f416adb27d05c121b5f
MD5 53a159c031bb1b0cc84743cfec720324
BLAKE2b-256 67e207c837958e02c07204a578332f0af12373db0d16acc409bdafa9b6ec0300

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2cc674c4e030dc0c493b35ef8cac873f2aaa55514ade6c812b8270ad8978afcc
MD5 c3b7322b0e677149926b4e71dcd15d6e
BLAKE2b-256 5ee5e678f65de8a5f6af145ff80e680dfe71947257a53abd463293505a25f01c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d499e5950f937063036cf4d221e700ebfa1a9b93cc10c2d2c6d3e32a656168c3
MD5 b844878bbaaa925f4a88fc5f821b53d1
BLAKE2b-256 776efb8382e3fe54dfd2a98b60f1ff773b50602a675cb2797efae74698e4b66f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7d189195904d1458513771c062ce989d21c6082c666f57d8bf0970ee3e5fb48d
MD5 6515dd88a604be94fd20ef4d8713d1a9
BLAKE2b-256 f63e3dbddd3415b5fc8e3147eebc3d21fa4e0390de8e0932584bc26746efa700

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 204fe0bfc0a98f01a5bbfecedb766f7512f0a856dba64b5ff3edd4e8b0e7e4eb
MD5 a8dc4bf6b53f03f9360c6c6797d670e0
BLAKE2b-256 c85a063f554c5b59e6cfc34a128deeed6ae2cbcd3147e3be6335a083776b2c5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1cdc522a661e2d08ef1bee674aa834d613adf2c75946f6e7bbb9487b4a25234
MD5 87b4d1ed59a31b527469ef99bd731d62
BLAKE2b-256 57b78285412bf154625829f16e8eb5a86e09ff109a6351a3ed99f43d31cb4df5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 39ecf8cbfcfaf911a85d670f6d9f8f3aa5d208a7487bb05489f3d78a609d0161
MD5 00ae9ca36f25f8c6744f2bc86b2632f7
BLAKE2b-256 a59c9bdb74eb04ccb81f3ee76c2d66b112531f0b9eb9b031316dcecf0cab85f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8ae50a008917a0cf9d32b9b80e9ca850ae603a2f29ca4ea259cd167a3b05af84
MD5 32fec02b3c659904be1fc866349903b4
BLAKE2b-256 fa60ccf1392aabb530f20f07a5caf7cad3a0a4cc36382456f6f829ee48965af5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0f8d09c39363242ca1ba8dc4920663ec62ec44f04c1961cf182c45b2a73cbd8e
MD5 cf8cc77ab842ab09d13e653c8237bbfa
BLAKE2b-256 f7e05e57bb2ef17010b95cd183872a3d4bb353bf21915ee7a2980005bd4e3a1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4fb162cd93bb9aee21b32e0a8794eec66dee34ec271b9232529a15089ffc4541
MD5 1c0ddc493511fe7d447611fd74517795
BLAKE2b-256 2af7c432668dd5cafbeb5c19ac6a690749b50463f8279537fc218f51882a81a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 44b9de10e83a43400f9f66ac70b4774ced3f56d5db418935bfba93540ee61fe4
MD5 b9393635a64cb2fc4a47b98b23b71d3f
BLAKE2b-256 c3d0fcb8a924a02bf04f47b0a2b43894eb7c43f8440980c85eab192d402a73a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8db40654fae0a75d25f29bc3a4b392e1f78a6fe8b61826e0be4b818c59ec8d26
MD5 116c8a8a73857204b5ab9293cc1e6fa8
BLAKE2b-256 4a880f2a5fd9955461d6257e3673f54b72e92133364f32ba79edc42fc245e989

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 79e7ed915f16326f5de8bbb3f9cd84e5524d511a50a89c6cb124b4337fb0b7ac
MD5 bc263c9fd9e3c843b16fb08401e03364
BLAKE2b-256 91dc7634d12997b88a8fa915ff640fbbb1f4fb50d8f5db2c3a5099c4f286a2d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2323ccac93e985d090d7faac87bb5a226ae313dc3640da7cd6528433afe06e49
MD5 1f1c378a5699efa7a909f8202b0dac64
BLAKE2b-256 38181010a3e4072ed663a86e08db308e2dba81ed3e0104df1a27e76c91b9c32c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 039a77045b4a032d3be08f82aaee6a6a3bceff8504ff58d2590f058f26f2f842
MD5 141c600349d7d51e044c7d1ee1aa4899
BLAKE2b-256 83ccb56f26e9fbfa432c9e9f319858a0c03331cb1475eb710f48d2238a21bd7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1060a0d7da77938ba33e4cf7714123c3742e487cbb1c5e10f3d00ffd680c1109
MD5 c7dae62691e409147e1e4e164b6da658
BLAKE2b-256 78c20db95f2c8ef3bd72bf2c7ead9ab59dac1c01f2f59e8615de71d91a0fb43f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3996162f25432c0ece1d174554a65b6e20abd6ac67b3ae995c6751931584676e
MD5 de390ac98c533f5f93a7488bd70bafe3
BLAKE2b-256 c71cc187de5dcf158914e9d5a27d744c1745c7a76293b92538484851f6579d39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dbc8e9c2fb160f1bb9cb78505673076fc4d5c2c3e52bfece53b4db2547f17261
MD5 592c4afb699678cd077a3f84e091c4f5
BLAKE2b-256 a9322ec89f3b4b84596c354514a7e33302dcd0cbb87255e1c675c302c42c09f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 44f79570ce90e27e977cb6b2e71287ef2fe2e4d6f326609acf04a39c659bd5eb
MD5 30845c2ab1f884dda16e2fb17e0a2aa8
BLAKE2b-256 9bb9c410ef1f20c0d0a43f5263e52d4cc4bd477df67b4ca238245206433adf69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 528b13aeb7a859827f550af8c6e77a3e008a239a9458ab1850a37fde7c0a1100
MD5 6e81d13227ce099d9b7a9b5dd21723d1
BLAKE2b-256 eb93afeb5389856467f56df872d91a412fa5355d2e054af3f969dd237b0142de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 254eda8244b3205e0ab9420d35b49fa1b668984aac2f1646e886663378ff5a3f
MD5 2647709c7ccc2416616f9e7875e5c84a
BLAKE2b-256 b71c40fbb16e4f54fb7757133fea6d637fff1538ee204fb3dbb9a6796adf7f3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 329710ffc611bc02046031eb79c3670304f6c97c8a66277818eb779e41e87907
MD5 41e46ff2745ca123be3a0c6dafab4168
BLAKE2b-256 656acd6a0adb20623727865d06bfe6f14008e65e71c12ab0de4a35fe272936c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 62542706cac72f37808c75eeafb7c36bac9f4310f5d23d4e46bce7af3163a075
MD5 da322aa95f7a8d8071beaf8aac2dfe5f
BLAKE2b-256 bc51f14046c7b712e13d89b07a9f4dc8a310aeb2740c80eb75dff1ea26c024ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 98ebfeb9ff693ac7e2f3795141f8e1e1a0ccc2d2230f8c3852f60bf9ed251eec
MD5 09a28e2f3b35bec152cff229246aef11
BLAKE2b-256 cb579b6fe3f6c03c8d7754ecb4976b52b6dff30b09f88d3c67e1e2178f3f437a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ab10307f16d8936442f13db36f42b9c95f35c8f5b1c0019b00d230103024baf4
MD5 d1c243ce0cfb2936afec332c9d821c80
BLAKE2b-256 7b20fd783d1b53d88a1b9774359622525f726bd4c5f1a43ec6f9ab1884b2f196

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b9a9ae0aa50c3877843a0cf776bf2415dcc2f3ae5b27f3ca7a95f199adbf478
MD5 aeba5700defbb62783b9d99dcf6d013f
BLAKE2b-256 ef3450ab059375adabdfa1fb478e835010672a8439f5db1e42a843efd0e051d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for attoworld-2025.0.16-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bda4ce1e6d0270cbbcce2cbe758a9a40ea177241d5239b21932234f70aba24de
MD5 988042d80597f8146672dfad8d873214
BLAKE2b-256 e4cc17bd53d6c78ea5bf5813990c677d281a56b77544187ca20ac0f5e06b4002

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