Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

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.2a11

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.2a11
File Size Uploaded
adsorpy-1.3.2a11.tar.gz 825.0 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for adsorpy 1.3.2a11
File
adsorpy-1.3.2a11-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
adsorpy-1.3.2a11-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
adsorpy-1.3.2a11-cp314-cp314-pyemscripten_2026_0_wasm32.whl CPython 3.14 CPython 3.14 PyEmscripten 2026.0+ WebAssembly Details
adsorpy-1.3.2a11-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
adsorpy-1.3.2a11-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
adsorpy-1.3.2a11-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.17+ x86-64, Linux glibc 2.28+ x86-64 Details
adsorpy-1.3.2a11-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
adsorpy-1.3.2a11-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
adsorpy-1.3.2a11-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
adsorpy-1.3.2a11-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
adsorpy-1.3.2a11-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
adsorpy-1.3.2a11-cp313-cp313-pyemscripten_2025_0_wasm32.whl CPython 3.13 CPython 3.13 PyEmscripten 2025.0+ WebAssembly Details
adsorpy-1.3.2a11-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
adsorpy-1.3.2a11-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
adsorpy-1.3.2a11-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.28+ x86-64, Linux glibc 2.17+ x86-64 Details
adsorpy-1.3.2a11-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
adsorpy-1.3.2a11-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
adsorpy-1.3.2a11-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
adsorpy-1.3.2a11-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
adsorpy-1.3.2a11-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
adsorpy-1.3.2a11-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
adsorpy-1.3.2a11-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
adsorpy-1.3.2a11-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.2a11-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.2a11-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
adsorpy-1.3.2a11-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
adsorpy-1.3.2a11-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
adsorpy-1.3.2a11-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
adsorpy-1.3.2a11-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
adsorpy-1.3.2a11-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
adsorpy-1.3.2a11-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.2a11-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
adsorpy-1.3.2a11-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
adsorpy-1.3.2a11-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
adsorpy-1.3.2a11-cp310-cp310-win_arm64.whl CPython 3.10 CPython 3.10 Windows ARM64 Details
adsorpy-1.3.2a11-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
adsorpy-1.3.2a11-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
adsorpy-1.3.2a11-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
adsorpy-1.3.2a11-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.2a11-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
adsorpy-1.3.2a11-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
adsorpy-1.3.2a11-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.2a11.tar.gz

Download URL adsorpy-1.3.2a11.tar.gz
Size 825.0 kB
Tags Source
SHA-256 checksum
How to use checksums
94b34f75aa0e6a83ad1fcf91aa830bff95d570b7b75c67b4ae563abef20ed59b
BLAKE2b-256 checksum
How to use checksums
643cf4266457cdfed0322f68d529cad6e1d05c48f5cee1420024859554c61cd0
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.2a11-cp314-cp314-win_arm64.whl

Download URL adsorpy-1.3.2a11-cp314-cp314-win_arm64.whl
Size 711.9 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
b562f49caad13728867055d30bb46b922e345ab150de06f0589442f2361bdb9a
BLAKE2b-256 checksum
How to use checksums
052d79b8826febe6669461bc2acade664a6ffc882833bddf1fb996c4b3a24af3
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.2a11-cp314-cp314-win_amd64.whl

Download URL adsorpy-1.3.2a11-cp314-cp314-win_amd64.whl
Size 760.3 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
58814219816b236a707b2e197a08add81fee122258399ff388aa5667718b5dda
BLAKE2b-256 checksum
How to use checksums
68d085b423e39dc6df10ef7517eeb3cd25353171bad887a78c58cf3c8acb8ea4
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.2a11-cp314-cp314-pyemscripten_2026_0_wasm32.whl

Download URL adsorpy-1.3.2a11-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Size 495.2 kB
Tags CPython 3.14 PyEmscripten 2026.0+ WebAssembly
SHA-256 checksum
How to use checksums
741d19435af28e1cda64a44691dd63d49d7304334c59f8844c11de6caf915962
BLAKE2b-256 checksum
How to use checksums
3ef7d36b4f96fbf1f0587e0a3c91721bcfd20d335323cc589817ba11d86db348
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.2a11-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL adsorpy-1.3.2a11-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
fb0339fd45edb7a7ed3fca2a1b383c8cd6d9e8e60846c8edaa9775109dae880e
BLAKE2b-256 checksum
How to use checksums
eef6266622e035fce5e6ed832bc95b531a3ad8d9bdc132c5b0b0171a719d33c1
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.2a11-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL adsorpy-1.3.2a11-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
377c2d1b80883aa4f129216a8b57d452fa0e435042f970a71438d3181d36ea33
BLAKE2b-256 checksum
How to use checksums
4d911e83fb7200cfd8e7838ebf7263622533effe584a439b56b89d37fd1c8539
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.2a11-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL adsorpy-1.3.2a11-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
e46852648571d7f299de4f3539ab314cc3a5064d3eefa60eaa64381d7047e161
BLAKE2b-256 checksum
How to use checksums
7d70bac090bef4cb6f5b15f2af86d07bc12037573f9c439142b58d3f42446f8e
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.2a11-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL adsorpy-1.3.2a11-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
366dfbb51b0530ec18ed3c2d7e141d2fc69410567d178b6b17ef958a624e68ab
BLAKE2b-256 checksum
How to use checksums
2349c2005ed52d3531cac8661cc9ca9c5b3bbadde107d3ba449890bccb0bb27a
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.2a11-cp314-cp314-macosx_11_0_arm64.whl

Download URL adsorpy-1.3.2a11-cp314-cp314-macosx_11_0_arm64.whl
Size 800.1 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2e741e5ee5e80ea9ab32cbe027b9c7dc8bbdf45b07f711f66be28d473e893cea
BLAKE2b-256 checksum
How to use checksums
6c380800382e0e554735486f0475fd02e0f5f477b62528e809c03bfa5e978dd4
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.2a11-cp314-cp314-macosx_10_15_x86_64.whl

Download URL adsorpy-1.3.2a11-cp314-cp314-macosx_10_15_x86_64.whl
Size 797.0 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
e98f988e6558015ace5e0136b4d4d14d204e599ab713f1ddd6a6619d76624fb6
BLAKE2b-256 checksum
How to use checksums
c30669d44e58582b350f5e3bf55f8a25c2d89309dbc44fa14a7ef79a751639c0
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.2a11-cp313-cp313-win_arm64.whl

Download URL adsorpy-1.3.2a11-cp313-cp313-win_arm64.whl
Size 650.4 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
a9d2c4ea74a57cd43afc83c888c1d37af5ed58a3b4cb00a02eb2646dc416639e
BLAKE2b-256 checksum
How to use checksums
f43558b919260198c12b6c8100e45026053447dd0ce3800c26c6b54d189e2772
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.2a11-cp313-cp313-win_amd64.whl

Download URL adsorpy-1.3.2a11-cp313-cp313-win_amd64.whl
Size 687.0 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
08b2c1e189407f0227c442e1f485d35283d2a06cf18b9b885e61dc8ec7e96ba4
BLAKE2b-256 checksum
How to use checksums
45aab64c1e98f606f812a793070ae8180f2d873810855b65223cd3105dbf207a
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.2a11-cp313-cp313-pyemscripten_2025_0_wasm32.whl

Download URL adsorpy-1.3.2a11-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Size 459.7 kB
Tags CPython 3.13 PyEmscripten 2025.0+ WebAssembly
SHA-256 checksum
How to use checksums
e6398a8ac8e9d2786f0423f3e6c4c786bc248dbc96b3b38ce7c4a0e121490fb8
BLAKE2b-256 checksum
How to use checksums
cc8b4d69e24a872f4d45d06238ca2d65a978d00660997f6b9daa8bb65c03fe0b
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.2a11-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL adsorpy-1.3.2a11-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
eef88878c3116914744148d0152fa7383e8d3f048cada6ec9eeeb09d5a582bb5
BLAKE2b-256 checksum
How to use checksums
a8b147d1cfd4ebbe22df9a399d1eed172a47e63a42098f2701a03fda6e96c848
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.2a11-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL adsorpy-1.3.2a11-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
a3f8faadcbf4ce897d7c6da0e2e1cfd51370d84b9ae48ad75f55606e1b371334
BLAKE2b-256 checksum
How to use checksums
e7bb9f445d49c99401f7f127769ef323b526d97d42aa5bc305655b44e827e075
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.2a11-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL adsorpy-1.3.2a11-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
3fb3fca644c3d3f76fbc683cad42c575ef7926d986f281f3d867e80e469d190e
BLAKE2b-256 checksum
How to use checksums
f0cdc9ddaa7bc35c1bb620fe09a90b289d7beb70d05a2e9a25697ed0b516a954
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.2a11-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL adsorpy-1.3.2a11-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
c9e3534f5a88841e800b99bcfb2063a6e014013d702f6adbc6b888329fd0683a
BLAKE2b-256 checksum
How to use checksums
1b166a13c2892a6d789ef5d895671dfdf8a45a69bf230d57dbcf4173b9edf8a5
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.2a11-cp313-cp313-macosx_11_0_arm64.whl

Download URL adsorpy-1.3.2a11-cp313-cp313-macosx_11_0_arm64.whl
Size 724.8 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
0f7c1898b3c81a8be314b3f2cd4b037223da6b4ad3d2efabb4a0a67e903e95c3
BLAKE2b-256 checksum
How to use checksums
92009ccd98c284fe66ec4f526f165600c8aab49f7a2daae65bfdc0473c98589d
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.2a11-cp313-cp313-macosx_10_13_x86_64.whl

Download URL adsorpy-1.3.2a11-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
2a51d2517f52ff37aac9b04838d2dcd29db4f87aa360e88fa79a87e0af5bea10
BLAKE2b-256 checksum
How to use checksums
8d7908a4c3016f06f545576f3e93af90c23a7d5dc7b77a9565dedd7326d83ac9
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.2a11-cp312-cp312-win_arm64.whl

Download URL adsorpy-1.3.2a11-cp312-cp312-win_arm64.whl
Size 594.9 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
7db7dcf4d5485e6440e670cddd25081f831c4db97da4c66b2a58ef3086bbc7ce
BLAKE2b-256 checksum
How to use checksums
b15e6180dbf215ac983c2f7c72934f078e0ab3316625c58a5d90b07ac534cd60
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.2a11-cp312-cp312-win_amd64.whl

Download URL adsorpy-1.3.2a11-cp312-cp312-win_amd64.whl
Size 622.1 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
4a6526282a474d1d1e34fbc5cf902b0ccb9e29bbf16f1320144b991a31474f4f
BLAKE2b-256 checksum
How to use checksums
375004df5e669d1882792e48e29de51937212d67a897cfca6fb24dab25b4b61a
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.2a11-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL adsorpy-1.3.2a11-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
947cd8ea664ab3d2e59c63b4f2ab72e5cfe3ca2d503ab0646a7f6f0138eb7a7d
BLAKE2b-256 checksum
How to use checksums
fd36ace642bda7e459a2936eae7f2f2cf7d219a6fa4365ef157f9b45d7ea42ba
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.2a11-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL adsorpy-1.3.2a11-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
644df9f33d7dd455e41a1e8aa200df3f4bb940d1e23d792d0e6065b785e520da
BLAKE2b-256 checksum
How to use checksums
6edf57dc7c3dee132455af8a6c6b0d88fd82d5f149e60378a48379327576c7fd
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.2a11-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL adsorpy-1.3.2a11-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
5b4a3129b3d21ea0d31aadcf9c7ced18f6eb136351f9a0b4e8cf6fafb76d5d92
BLAKE2b-256 checksum
How to use checksums
5becdc97587fe87f3603055ccb7857fc70e0abf37a4a052eb802052937a68d98
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.2a11-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL adsorpy-1.3.2a11-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
ec0b9bc74f3f2c6f7ad9ef6da0aed03bd2a2a544829953175402762704badf54
BLAKE2b-256 checksum
How to use checksums
4200811950e555373c59e83b2cc29098606d2803df7def089760c35cb10a4390
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.2a11-cp312-cp312-macosx_11_0_arm64.whl

Download URL adsorpy-1.3.2a11-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
839c77bf4b962fcb1f34a0355828abf14c86caf60ef6306be788cac0c2257e6a
BLAKE2b-256 checksum
How to use checksums
0b2ee4bbe6a9b855254a1fd94bc55b4487ca95d8f8c7fd4f3e7a12b27687243c
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.2a11-cp312-cp312-macosx_10_13_x86_64.whl

Download URL adsorpy-1.3.2a11-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
b428fc8236a00a75b45113770d3fc45c51393e666a5dc68bffc8a9f0daa6bc8d
BLAKE2b-256 checksum
How to use checksums
7aa1c70f309ccfc07a125457375d4e435e32d3cd61ed3d075a99f7de04af7074
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.2a11-cp311-cp311-win_arm64.whl

Download URL adsorpy-1.3.2a11-cp311-cp311-win_arm64.whl
Size 539.3 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
776a2ad0f0331b77f1690fc9ff22a2c6964c4de811678b552e6dea11200e944a
BLAKE2b-256 checksum
How to use checksums
5a135554eb79cdb815c7602e19f860d04365700c6105db7d7d5abbff2db81173
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.2a11-cp311-cp311-win_amd64.whl

Download URL adsorpy-1.3.2a11-cp311-cp311-win_amd64.whl
Size 556.8 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
072370480df56269d328d47494d2e08928fa44176499251e8e185f6aa1e426d2
BLAKE2b-256 checksum
How to use checksums
60dcf23608a5dfe61a9660e7a1e8d70126e6347f801e7c59a8cadd2a7f28ab4d
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.2a11-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL adsorpy-1.3.2a11-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
68a33960916a935ca03e0d5ef52d59079c4c9ee716f864064a78d6f9cf3e7885
BLAKE2b-256 checksum
How to use checksums
5b0094fac3e465a286716caa00854205c8800ec1c12375d15a00931b4500b1d3
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.2a11-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL adsorpy-1.3.2a11-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
5e06dfa5fabbd79f591de2e239b05bf051140bc7b1cb4a9a1657fe449f6b10c5
BLAKE2b-256 checksum
How to use checksums
8ffc1d4b66b4e3e8a7bfd49ee67f921eb3aeb4c578e64c1ef6bd99da674ee838
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.2a11-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL adsorpy-1.3.2a11-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
93eab5391aa274b4a555b8773793e05bfd4cb90b9d62c4b213d23b0fa0470e14
BLAKE2b-256 checksum
How to use checksums
161c23b400224b70eba9473d8e64ea15e4796552eae32ae90b73fa1e11c8e2e2
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.2a11-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL adsorpy-1.3.2a11-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
01afaf8fec62dea1513557041ba273435227cf2aaae3d068585fc049ed9b12b4
BLAKE2b-256 checksum
How to use checksums
f84766bb10f3e5eac841b69239d1ea8e1d0a1b296d5647bd1806899d05679b1a
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.2a11-cp311-cp311-macosx_11_0_arm64.whl

Download URL adsorpy-1.3.2a11-cp311-cp311-macosx_11_0_arm64.whl
Size 575.4 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
bd7cc3373c73af1617954add31ed21fc6757771e9fe32930512e1b648b4ec774
BLAKE2b-256 checksum
How to use checksums
31b829662fb3abc3b7f836b9890459fbbf6fd97b58e7213ea0a489d5a3577636
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.2a11-cp311-cp311-macosx_10_9_x86_64.whl

Download URL adsorpy-1.3.2a11-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
1e5d8defe570b5b73fb798e6e4207d502a7203ce87922c4eb43e8058459143ae
BLAKE2b-256 checksum
How to use checksums
60df8aa6c6db54d344dc00cb15c141405a8da62f3e0fa51d951b1ce4a96c214a
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.2a11-cp310-cp310-win_arm64.whl

Download URL adsorpy-1.3.2a11-cp310-cp310-win_arm64.whl
Size 483.3 kB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
a3a64d56158db515d76344d3035e32d1dd552745e4344df259b05f4753916894
BLAKE2b-256 checksum
How to use checksums
3fe6284917c8ca7d64b375c7bf34abd6bb8084a7384f1f76d6609f06ce5be1b5
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.2a11-cp310-cp310-win_amd64.whl

Download URL adsorpy-1.3.2a11-cp310-cp310-win_amd64.whl
Size 491.9 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
f7fcb3f0d800028e1d67be3a625c834594c5c1217e3e98fdf9fade8ac25b6485
BLAKE2b-256 checksum
How to use checksums
18a64577af030a440b9205fa82f5972bb7dce7b90d33da04c909a3a0ef4d38ca
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.2a11-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL adsorpy-1.3.2a11-cp310-cp310-musllinux_1_2_x86_64.whl
Size 810.6 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
7de9825afcc7e23334737b552955a5b62c8bb9774ca0b3976fc91ddeceb82e87
BLAKE2b-256 checksum
How to use checksums
160c56b5e6b3df97150a82a817ac25d6a240a88ce50e962844405e6e984dcb63
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.2a11-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL adsorpy-1.3.2a11-cp310-cp310-musllinux_1_2_aarch64.whl
Size 803.7 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
aed36bb3433cb71e4748402c507c077f3c1853a1f904de2d379a249430ea3d66
BLAKE2b-256 checksum
How to use checksums
60d0b0a171fdea76a98387cf369d79de8590801b76b3c8b23231ff801bdfa210
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.2a11-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL adsorpy-1.3.2a11-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
b95d33dc3ef66d3e2cfbc0acca7c4cd697e9000c02d372affdc7fe56a08d5752
BLAKE2b-256 checksum
How to use checksums
45f6cbb204d8057746c94887325dfa80ebfcaf84e7ec7984f3d66f39a5b7b426
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.2a11-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL adsorpy-1.3.2a11-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 809.7 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
25e217d6850cc9ef1b96ce9b0e0251f4dac6732237cf22a0849328c07506b2be
BLAKE2b-256 checksum
How to use checksums
0563a70ce0619b83e524e7c7a03c4d0e3993e0637045ef717aecc0c67a16eacb
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.2a11-cp310-cp310-macosx_11_0_arm64.whl

Download URL adsorpy-1.3.2a11-cp310-cp310-macosx_11_0_arm64.whl
Size 500.6 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9b9566b6981a633baa8920f85055fc57550a28c195b5dfcccc20127d5486a638
BLAKE2b-256 checksum
How to use checksums
c508a8227740d7ebae69039c2f59afe7a22b40b4313f6018f1049a209abaf2a3
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.2a11-cp310-cp310-macosx_10_9_x86_64.whl

Download URL adsorpy-1.3.2a11-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
0a33ed81582561707003e45c27027d430abd343198ed4a91d37deffd555b98f3
BLAKE2b-256 checksum
How to use checksums
ba31eba914b2c11e432363c5d264731168707c1d1c6dd81dca301c7d79db03cf
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