Skip to main content

AdsorPy

pypi version test results badge docs build results codecov OpenSSF Scorecard OpenSSF Best Practices OpenSSF Baseline

Lattice-based random sequential adsorption (RSA) Python 3.10+ script.

In RSA, molecules arrive one by one at a surface. Adsorption takes place if the molecule does not overlap with molecules already on the surface. The list of available orientations for the molecule is traversed in random order until the first orientation that fits is found, or until the list is exhausted. All available sites are checked, and various metrics can be extracted afterwards such as the coverage, covered area, and gap size distribution.

Output of an AdsorPy run, an image of a covered surface.

How to use

This package can be found on PyPI as adsorpy, so we recommend the following:

pip install adsorpy

Run the adsorpy.main in order to run a simple single run using the standard disk-shaped molecule on hexagonal aluminium oxide. New molecules can be created by running the adsorpy.molecule_lib or by calling the adsorpy.molecule_lib.first_time_loader() function. Molecules can be generated from .xyz files. It is recommended to run adsorpy.molecule_lib directly from command line to define the molecule orientation, then store the new molecule string for repeated use.

Run the adsorpy.run_simulation.run_simulation() function with the molecule footprints generated in the previous step. Output can be printed to stdout, plotted, and saved. An example for dog-bone molecules with rotations of 360 // 12 = 30 degrees:

from adsorpy.run_simulation import run_simulation
from adsorpy.molecule_lib import dogbonium
molecule = dogbonium()
output = run_simulation(molecules_list=molecule, rotation_counts=12, plot_output_flag=True)

User-friendliness will be updated at a later stage, allowing the user to define simulation modes, surfaces, and molecules more easily.

Documentation (generated with sphinx): https://joostfwmaas.github.io/AdsorPy/

Future additions

In a future update, the code will be expanded with diffusion, desorption, and species conversion (changing from one molecule on the surface to another).

Design philosophy

Because AdsorPy has been made with scientific rigour in mind, the package is tested in multiple ways:

  • Unit tests (pytest) of the code ensure correct behaviour for expected input.
  • Property tests (hypothesis) of the most critical code components ensure correct behaviour for unexpected input as well.
  • mypy (in --strict mode) and pyright (strict) ensure that the package is correctly-typed, as if it were static. The py.typed file, a promise that the code is type-hinted properly, is added because the code passes this test.
  • ruff is used as a linter with almost all rules enabled (see the pyproject.toml for the list of exclusions and reasons).
  • slotscheck ensures that all dataclass slots are set up correctly.
  • tach ensures that internal dependencies are handled correctly (from low level to high), preventing circular dependencies.
  • tox is used to run all of the aforementioned tests in parallel for multiple Python versions to ensure correct behaviour.
  • CI is used for automated testing.

The package also makes use of an optional config file that falls back on standard behaviour, because configs are often used in scientific software (set-and-forget).

Openness and academic collaboration

The script was made public for the sake of openness and academic collaboration. Please let me know if you have questions about the script, or if you have discovered any issues/bugs. At the end of this file, I will place a list of papers that make use of this work. Feel free to contact me if you want your work to be added to the list as well.

Release files for adsorpy 1.3.2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for adsorpy 1.3.2
File Size Uploaded
adsorpy-1.3.2.tar.gz 824.9 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for adsorpy 1.3.2
File
adsorpy-1.3.2-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
adsorpy-1.3.2-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
adsorpy-1.3.2-cp314-cp314-pyemscripten_2026_0_wasm32.whl CPython 3.14 CPython 3.14 PyEmscripten 2026.0+ WebAssembly Details
adsorpy-1.3.2-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
adsorpy-1.3.2-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
adsorpy-1.3.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
adsorpy-1.3.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
adsorpy-1.3.2-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
adsorpy-1.3.2-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
adsorpy-1.3.2-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
adsorpy-1.3.2-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
adsorpy-1.3.2-cp313-cp313-pyemscripten_2025_0_wasm32.whl CPython 3.13 CPython 3.13 PyEmscripten 2025.0+ WebAssembly Details
adsorpy-1.3.2-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
adsorpy-1.3.2-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
adsorpy-1.3.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
adsorpy-1.3.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
adsorpy-1.3.2-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
adsorpy-1.3.2-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
adsorpy-1.3.2-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
adsorpy-1.3.2-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
adsorpy-1.3.2-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
adsorpy-1.3.2-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
adsorpy-1.3.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
adsorpy-1.3.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
adsorpy-1.3.2-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
adsorpy-1.3.2-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
adsorpy-1.3.2-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
adsorpy-1.3.2-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
adsorpy-1.3.2-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
adsorpy-1.3.2-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
adsorpy-1.3.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
adsorpy-1.3.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
adsorpy-1.3.2-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
adsorpy-1.3.2-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
adsorpy-1.3.2-cp310-cp310-win_arm64.whl CPython 3.10 CPython 3.10 Windows ARM64 Details
adsorpy-1.3.2-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
adsorpy-1.3.2-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
adsorpy-1.3.2-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
adsorpy-1.3.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
adsorpy-1.3.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
adsorpy-1.3.2-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
adsorpy-1.3.2-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details

Total release size: 47.0 MB

Release files / adsorpy-1.3.2.tar.gz

Download URL adsorpy-1.3.2.tar.gz
Size 824.9 kB
Tags Source
SHA-256 checksum
How to use checksums
9600afd47346a13608feb3e975ac21dd387b47f73738bc08768463eab3d95dd3
BLAKE2b-256 checksum
How to use checksums
d77660e0f5517498fc7222ca271e30e8447aeac611d030f8487725120fa76f12
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp314-cp314-win_arm64.whl

Download URL adsorpy-1.3.2-cp314-cp314-win_arm64.whl
Size 711.8 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
32e478689e288143683a4cc6c7fe559d75f922a0d996e9a05c69da2df109a4fd
BLAKE2b-256 checksum
How to use checksums
a725b60935f7ad93ade564a3351b5a3f84026a9c80785b98fe8b51f00d6de98c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp314-cp314-win_amd64.whl

Download URL adsorpy-1.3.2-cp314-cp314-win_amd64.whl
Size 760.2 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
eec71db1ef2960332e144912a34b8be28d8dec26488b0f50643567dba9a7aae4
BLAKE2b-256 checksum
How to use checksums
d4618591ef627e70f673f94ce143f3b9aa2b67ba430769c4fd8dba098e378a16
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp314-cp314-pyemscripten_2026_0_wasm32.whl

Download URL adsorpy-1.3.2-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Size 495.1 kB
Tags CPython 3.14 PyEmscripten 2026.0+ WebAssembly
SHA-256 checksum
How to use checksums
110bee568bdc09b140b840bcc8f09b0d8836996ff1c0a22e3d481fa51ad7e792
BLAKE2b-256 checksum
How to use checksums
d6ba79acdc29128344ebe91afd864e8f1ad3752de976cab3c8234d3f9ae65b56
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL adsorpy-1.3.2-cp314-cp314-musllinux_1_2_x86_64.whl
Size 2.5 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
1731ce3c5f7336dcf7214950ce898fbf88959cc0e03afe14d021fb6d34b21b11
BLAKE2b-256 checksum
How to use checksums
47cc435d8ac48124c8424cdc01f1cf76c83da19587b6d075804bf5144017a09d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL adsorpy-1.3.2-cp314-cp314-musllinux_1_2_aarch64.whl
Size 2.4 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
42a022e3b3e6ba6649f8ba22fbba35cddb3c96a2b0d7a8a15ae9d5f184c4859f
BLAKE2b-256 checksum
How to use checksums
1403df439383cfb84f1a48b4f643dc2781883e588f86b4db663754a922bbedc6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL adsorpy-1.3.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.5 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
71de1fae8476547eed0fcee52572e8da2e6ca97c319313c88e687943290e103b
BLAKE2b-256 checksum
How to use checksums
b62aed6244726dd3859a8ca88ad0a98a1bee123334fc9b817c0686a960c6ad32
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL adsorpy-1.3.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 2.5 MB
Tags CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
269fade8a4b3bca70de219d13c70a77b2c7d6317f18f66abeea598adb09a9180
BLAKE2b-256 checksum
How to use checksums
06f7312924e33ef46ec35e400b5ac93f3eddecc117734d42d866d5c8f72218e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp314-cp314-macosx_11_0_arm64.whl

Download URL adsorpy-1.3.2-cp314-cp314-macosx_11_0_arm64.whl
Size 800.0 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4c8b2f5d68b1a0620612cb1392f4c7680e87bc03b8772805d49d021b639fe088
BLAKE2b-256 checksum
How to use checksums
3ebce3eedc5095037538bc1cdeef31c8e4a0eea0bb3d7e95b98377f591379470
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp314-cp314-macosx_10_15_x86_64.whl

Download URL adsorpy-1.3.2-cp314-cp314-macosx_10_15_x86_64.whl
Size 796.9 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
03ba3b7051f73efce652604e061cf2f892d748e2aa985a468063730cc4d79e89
BLAKE2b-256 checksum
How to use checksums
8c638bbd45727677a25c074a7e43be4b0d9441af0a23f1f4e9d687711553e9cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp313-cp313-win_arm64.whl

Download URL adsorpy-1.3.2-cp313-cp313-win_arm64.whl
Size 650.3 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
3b88cd6c250dae1234dc4e3e658f3ca8a9ead3056d887d5530d32e0367289d1c
BLAKE2b-256 checksum
How to use checksums
ed5bb3acfef2656bb3fb8bdd6c196dcd36225d784655586364217577d391a5af
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp313-cp313-win_amd64.whl

Download URL adsorpy-1.3.2-cp313-cp313-win_amd64.whl
Size 687.0 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
667285d9d97ed03787d90a1fe2d9de3d02d2f1d595ce880c08b5a55d551eeff5
BLAKE2b-256 checksum
How to use checksums
9552179c8f8b65014150003a8a66ce514a73e5a2eec030d8253e8c82ab22bcac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp313-cp313-pyemscripten_2025_0_wasm32.whl

Download URL adsorpy-1.3.2-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Size 459.6 kB
Tags CPython 3.13 PyEmscripten 2025.0+ WebAssembly
SHA-256 checksum
How to use checksums
1703d051daa3580ee36f4e9687db26f5aad061cd777574d3ccfffa670f1085d5
BLAKE2b-256 checksum
How to use checksums
21f33d0a431a96f30ce23d2e48a68ec37a2fd45d8afda5358b64666a8922eb5c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL adsorpy-1.3.2-cp313-cp313-musllinux_1_2_x86_64.whl
Size 2.1 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ccde76e97fd7355255e3a1f4770f5fa4c741ca4bc8f22f3279239f16aec89f74
BLAKE2b-256 checksum
How to use checksums
1958841a786370ac13dba446e0bc5420bf0ece92304a1fb1899d2ade01619485
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL adsorpy-1.3.2-cp313-cp313-musllinux_1_2_aarch64.whl
Size 2.0 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
6df981a8a946427bd431499a7ff695c8aa72dddcdbeacb4b8d38caaa7171376a
BLAKE2b-256 checksum
How to use checksums
0785981058f0e942def5e62ac6cf424bedb8bb85266f4652edcaebbd15f89c12
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL adsorpy-1.3.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 2.1 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
eee9702d07e296ffe14b24c426586d44b0528edc317fc2a40027c35d1879f181
BLAKE2b-256 checksum
How to use checksums
b0788f0618dbf5e0608ffe278b264fa5893b4224e45ffb8492d68ec05f415b39
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL adsorpy-1.3.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 2.0 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
86669a910b7e0d1791014a767f7f1b8351cee203cc8fbaf5e284fa419bfb8dbe
BLAKE2b-256 checksum
How to use checksums
7d65bb7609d6948e5177fe46517abc90488dc75f1cd6a5fefe320386491e34dd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp313-cp313-macosx_11_0_arm64.whl

Download URL adsorpy-1.3.2-cp313-cp313-macosx_11_0_arm64.whl
Size 724.7 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
8a30878ec68c1cea97a79b1de3adf152f0b8f5cfb41ec6236410091be6a50fab
BLAKE2b-256 checksum
How to use checksums
5154180a0dc8cff04fa0d414cf0e0786e42f3328a5ded2133f6f1deaa5941dfb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp313-cp313-macosx_10_13_x86_64.whl

Download URL adsorpy-1.3.2-cp313-cp313-macosx_10_13_x86_64.whl
Size 722.2 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
dbf45edcd6ebab5510f6d08e63b774c89cc130e2908b9d444bf31bfb37f2bc21
BLAKE2b-256 checksum
How to use checksums
6807bc42817310df887e0b9a7a7c4ea429f41b61f724561f14e806daceeaccfb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp312-cp312-win_arm64.whl

Download URL adsorpy-1.3.2-cp312-cp312-win_arm64.whl
Size 594.9 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
566a7463f1c56d8ae44fb579ecdaad5cc455bf3c8e9b4c1989098b8c673f08e1
BLAKE2b-256 checksum
How to use checksums
4c76cf2c6dbd2ecbab0399f48c1c7099c97c135e879e3da70ad79532d5299e59
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp312-cp312-win_amd64.whl

Download URL adsorpy-1.3.2-cp312-cp312-win_amd64.whl
Size 622.1 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
dbf5eb1237f01644a21556d46eb7839d14d02a324e190123a6ac621e33177336
BLAKE2b-256 checksum
How to use checksums
9a518d617758498e9921d93758e319ff8b87c95e9d8ce9de8386fd9e88c0b02c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL adsorpy-1.3.2-cp312-cp312-musllinux_1_2_x86_64.whl
Size 1.6 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
90e331f5c17075cbaa3dd5e66a9880bc28652451f882949da5871832c614a4ae
BLAKE2b-256 checksum
How to use checksums
7e19013c99ecd4e5ed013ac85de6d5121203c6f6931750bc6bd27508cb0f950a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL adsorpy-1.3.2-cp312-cp312-musllinux_1_2_aarch64.whl
Size 1.6 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
8314d0cf7d6ad11daa5fd2f35c911611238e827dc9255aa1b04fe76ceb20fb50
BLAKE2b-256 checksum
How to use checksums
708273c362fe45df0039b200f3a5a9e139a5546136b0d78504b0a5d4304771a7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL adsorpy-1.3.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 1.6 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
629e68a2dedf2d7b8d57fd1c46b27681f94c9e974aff248d59ff17b07a2bf48b
BLAKE2b-256 checksum
How to use checksums
bd7b19e34e2150b9cabd42aca86461a2a85e3f4605114f69d30edb58bf93acb1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL adsorpy-1.3.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 1.6 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
805f52c6d40870c8477f06c28b519801c32bb164aeacd0889263c1df26224744
BLAKE2b-256 checksum
How to use checksums
a8681b7ed038fa9266a0b7017e1f6d59d41e119d4177b28ad74602efb1f3b630
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp312-cp312-macosx_11_0_arm64.whl

Download URL adsorpy-1.3.2-cp312-cp312-macosx_11_0_arm64.whl
Size 650.1 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a46ed2d38e8400d01411d20af5e71f68813fda04138b828e61be1f6dbf20415b
BLAKE2b-256 checksum
How to use checksums
15df72f388e88525a311d3666f92bd6807f001b5cd3127f6406f5463dbc8c26a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp312-cp312-macosx_10_13_x86_64.whl

Download URL adsorpy-1.3.2-cp312-cp312-macosx_10_13_x86_64.whl
Size 647.5 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
2d69271d73eed065eab5f5860e045053afca6934a45ba0a0878043f46adb3b31
BLAKE2b-256 checksum
How to use checksums
70ca117e21b0cd4e7ec99fe8883874ab0733868bb65bbb841b85a03c76730c26
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp311-cp311-win_arm64.whl

Download URL adsorpy-1.3.2-cp311-cp311-win_arm64.whl
Size 539.2 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
5578d20c377a15fe48b16eea38deec068ba38d9eaf1d3d17dd7a6c3868638f31
BLAKE2b-256 checksum
How to use checksums
cdd93fdb544cd61f54110a1e2bf3ea1748129e349de675efa896718c8fdaf8ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp311-cp311-win_amd64.whl

Download URL adsorpy-1.3.2-cp311-cp311-win_amd64.whl
Size 556.7 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
90250b561bc1bdc07e6c623543c072456738e3fdc01855aa82677d951eeab894
BLAKE2b-256 checksum
How to use checksums
27a4194b449b19294b4161772e0f08f0583f715096f6364276330f747fbc3d53
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL adsorpy-1.3.2-cp311-cp311-musllinux_1_2_x86_64.whl
Size 1.2 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ca0dfcca33d40698a87353aa36694bd0fe691182fd59660d723b3fd1bca88d43
BLAKE2b-256 checksum
How to use checksums
99afcd2d13a12ab2fc0df2072f0cd78fa6b527f4838e7af5e65bd9ea8d0ca627
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL adsorpy-1.3.2-cp311-cp311-musllinux_1_2_aarch64.whl
Size 1.2 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
f2283171f624a42789267547ded91f611025ba04d05fe42003465929ddde2d70
BLAKE2b-256 checksum
How to use checksums
000676399ae3534fc06a329be5162d52809c9529a1ae8ffd51c8f316c1d0e79a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL adsorpy-1.3.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 1.2 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
06aa6892b4c609c0abfc430ca99f9aeab42812eb3726b6e506e78744e1485a16
BLAKE2b-256 checksum
How to use checksums
822e6e4e7162e3468c06faf4c14331a06439f30e159007735ee01c5a6da960f8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL adsorpy-1.3.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 1.2 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
66ba0703803f89b7839c537ed8a415d1495a89beac987593214f5f2603a52a22
BLAKE2b-256 checksum
How to use checksums
2cdbfb564b198bdd228498c5fe5e7f7ece1e5ef550798da8f6c8fa7ad1105b9d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp311-cp311-macosx_11_0_arm64.whl

Download URL adsorpy-1.3.2-cp311-cp311-macosx_11_0_arm64.whl
Size 575.3 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e5afbcda3a99674707683bea5e0cef968aec45b5f0d67df9f43e56e9223e4238
BLAKE2b-256 checksum
How to use checksums
a289930e89d316bda602f10143a4fd583eaf839d920ae26dfe6e74204cdd1b3e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp311-cp311-macosx_10_9_x86_64.whl

Download URL adsorpy-1.3.2-cp311-cp311-macosx_10_9_x86_64.whl
Size 572.8 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
5b1df6a1997f6f188c97956e63c668615c0111ecfb481df32cfd1148d3d99559
BLAKE2b-256 checksum
How to use checksums
f11b56d114bec00b8d55dcf869b6ce8565de9babdae1da31d73992ac8d6ebb06
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp310-cp310-win_arm64.whl

Download URL adsorpy-1.3.2-cp310-cp310-win_arm64.whl
Size 483.2 kB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
9e1c3b17a093d0512c2406ddb6008b67e518d7fcb93308e568de9e679e5c9497
BLAKE2b-256 checksum
How to use checksums
1c0d54fb235f1ac4ca902bef71d0243c2ebb3d308ffdbd1e9783079fe9e31762
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp310-cp310-win_amd64.whl

Download URL adsorpy-1.3.2-cp310-cp310-win_amd64.whl
Size 491.9 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
ce679273e3ae4f330db50a3ad88306e07dcb8907563ca34241b2b6a85516ea8c
BLAKE2b-256 checksum
How to use checksums
6ba9997ac93222436c382f9702a63d35bfe71660ed8669b9e0fce2ab2962aea1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL adsorpy-1.3.2-cp310-cp310-musllinux_1_2_x86_64.whl
Size 810.5 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b8d6453ef13d490ad1453f0ea3573fd0ab01d60b2629e2b505ed365c7a40685a
BLAKE2b-256 checksum
How to use checksums
a4ac7c9249be22bff85d2cd1611f6b1b3fbedec106a56973ac6ac5077a46b8da
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL adsorpy-1.3.2-cp310-cp310-musllinux_1_2_aarch64.whl
Size 803.6 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
2effc6adaa941b575db3f47c1d0e43197bdc51217218c62ec695ff2f24ce8148
BLAKE2b-256 checksum
How to use checksums
ac3278814ff81e39fb1448afff41d375621a1815d24ae1b9e9cc091015d54cac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL adsorpy-1.3.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 811.3 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
c82980bb12d3ce841220d0ffc4eb34741ad299ffbfeacc28bcc89054586599ba
BLAKE2b-256 checksum
How to use checksums
d6a6ccaf2d4409515f182e915b769529d4ce7451ad00b6dab85f6342510819c7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL adsorpy-1.3.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 809.6 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
177cb4c1331eec844a1baac1626b204805bb1d560c8709a7f76245387d38e582
BLAKE2b-256 checksum
How to use checksums
07ad5179a0b0ae14ac03ddac42b063877aafe862f06dd6ced7de734a5c713c51
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp310-cp310-macosx_11_0_arm64.whl

Download URL adsorpy-1.3.2-cp310-cp310-macosx_11_0_arm64.whl
Size 500.5 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
61d7019444745591e3c3ee53d06bb9c8e2b10715c03deabf17e20e0c4bf6d701
BLAKE2b-256 checksum
How to use checksums
408c5d7709370ffae8ce82264a4c16f8876b2c8d766c8e7e15a7084632d28bea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / adsorpy-1.3.2-cp310-cp310-macosx_10_9_x86_64.whl

Download URL adsorpy-1.3.2-cp310-cp310-macosx_10_9_x86_64.whl
Size 499.3 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
3969d0480d9907c685f6f57ce5ae4a64259aa28f3a78dd38c1a1556ed106be46
BLAKE2b-256 checksum
How to use checksums
3c152528518b4b754e2dae9e5e4cb6abbeb5bbae90dc3bc7d0d5f56aa0c98323
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log
Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page