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

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

Built distributions (wheels)

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

Download URL adsorpy-1.3.2a10.tar.gz
Size 825.0 kB
Tags Source
SHA-256 checksum
How to use checksums
2663dca6a1a8251eaa32164d903598a0421ed21a2b533889ead05a97dab23b01
BLAKE2b-256 checksum
How to use checksums
e4acb29125a218ee54f4286625e8e2b3b33c657a7476ef88f93f7662f33926aa
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-cp314-cp314-win_arm64.whl
Size 711.9 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
dbeca06ac7656beaa2084d3b43ea885215f99b0397a7545e5a22bfa2678f8584
BLAKE2b-256 checksum
How to use checksums
bb4a15015aebf074c6ada8e7aa0457d0ecb7873f08bee2e176beb6e8486fbf92
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-cp314-cp314-win_amd64.whl
Size 760.3 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
b23ad7de6423c271154756318c9c329e44a2f05408a41049f53dd440b4cb04b0
BLAKE2b-256 checksum
How to use checksums
2d2126afa5d0ccf28d1acdcc43222fc481bd1fb4ddd51b7afb40e0b14cf14d0a
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-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
106ea1ca13f7c9de3bb4f3d1c100bb74064af8deb07c7723e1b16a40d1db4465
BLAKE2b-256 checksum
How to use checksums
657b3d46d3161bd796bbbddeaebc60b08a71a30a6347e2fdd2d814e8cb0c1b29
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-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
ed55f131c7145c15b81646c393a6616e60679613728f87f0ed625a64cc48e2a3
BLAKE2b-256 checksum
How to use checksums
5c054efdefa337cb242009d11b3ef7e4c6c8d2d0e84f68fc34ce6ef9ec61f296
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-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
848acf3cdc3502229550ab9d4bace253199d98beb8cce751aae7a846d63a6fe8
BLAKE2b-256 checksum
How to use checksums
bf5ae01806cf15118b3406d7938abe5051c5963acd8591a3a1cad3996e0b80b8
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-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
a8b010d28eb420894c602b81980dc8cc8bbfff8bb795344bbac4d6cfe81501be
BLAKE2b-256 checksum
How to use checksums
0e302478e571c34a358c6c53bca2d979b0f0dfb83a56a731a44e4d3fd48c5d20
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-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
259bf7ed6eaddef7df013567060dfac5ec2ca78dd838e2ddf1f001434b8db530
BLAKE2b-256 checksum
How to use checksums
e568c8db75b8defe58ad97e4b7754663f581170146e6489f8476f3c71d823d5a
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-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
5be947db6114b9b8cd2b50e0280b82d14bd5e60fef0c8d51c86f1155f4d40b6a
BLAKE2b-256 checksum
How to use checksums
e9edd2ed7ae19201a3b392ba3a32a60c66f3a4428a17f7b436657c56f55991a7
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-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
a5d9a32d131de3bdbe782c61d497dd71a437dbbe13232ec7cb3ba0ab0fb3291d
BLAKE2b-256 checksum
How to use checksums
d6f34e51f3bf06e6e582cd5632e85624a1ef084972a0f484d3af1b8202dc4203
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-cp313-cp313-win_arm64.whl
Size 650.4 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
a1c311290a0b24873dc9b04e7c908b2f0488171992fd851ff13428ae9d1a74fe
BLAKE2b-256 checksum
How to use checksums
9e4691385113239ca96b9cf12ed5352c946b256d1008ff7523b89d1b660e5bb9
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-cp313-cp313-win_amd64.whl
Size 687.0 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
494497bc81c385717e14604b85a03457b3eab304b9e53c2d2cffa54c7da56418
BLAKE2b-256 checksum
How to use checksums
00585e37aaa297dd7482129dc44d35744568894e77a4645c280a78d9d4c2d61c
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-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
8c0dc3679033a3eb354f356f27c00cfc26252a25216d8b6cb6820364d283d26e
BLAKE2b-256 checksum
How to use checksums
a6e8fe74826903c1eb902a40e70ed9f62b654205f8c356502a325c87143fb3d4
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-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
2396ebde6eb0b25685b35fd9c92e0b9147ef79994f69cf2bf1211b54797f1494
BLAKE2b-256 checksum
How to use checksums
2c29e35c4fb842660ba2f80837f25140f1f9577b29abb825327570ce7899bc06
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-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
04861ef3331246c5c1448561248bfaf435189f30324af8ec32ac3ad46b4612f6
BLAKE2b-256 checksum
How to use checksums
71a91424cb77f0dd65ff4c40cea496ba5a5e97959f5242feeb7b08402cddff27
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-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
9ae69a6d2b69e816d12d4f6d8ebddbab397c0260f5130e02a055b4bfb19ac983
BLAKE2b-256 checksum
How to use checksums
5a73c09b23a4306a6403617dd027871319d2a302f359c48bcc9b8bb70d8f6c88
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-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
1db4bf6c6a64595294881023443592599e0d3a03ec27ba631d67e8ac74769d2a
BLAKE2b-256 checksum
How to use checksums
917ba5bd67f18727b841886c4a3e1e5bec30f2fcb38eb7ecd6b31c4150b67b6b
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-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
8174c9715e85c06dc1c9b6ea09e58cc92ce462fe1ba0f873c27c9e3281041766
BLAKE2b-256 checksum
How to use checksums
eb5e2068c9edf911f25437002a46db30501af9c570c4a71687841b1722edea57
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-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
71ca8977904490ad272bd5337161cf0cab872057c36a5d09f975b6922d2b0bc7
BLAKE2b-256 checksum
How to use checksums
f5180944c2d113b622d6b5b31036c4fa2ff3e9dda9b018316c9c31c661e6e2ec
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-cp312-cp312-win_arm64.whl
Size 594.9 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
617b5531f9dc6d8197bc24cd74e0a50a0cb77ae0a9c975d498c254419af25260
BLAKE2b-256 checksum
How to use checksums
d1519f5907d98801d748c4249ad8d3e88a954d76c737486c95d766560a5c7575
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-cp312-cp312-win_amd64.whl
Size 622.1 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
35124d92caf9cdcbbc7dd5cb93afaad51924b1d084a217876884aad964439ce9
BLAKE2b-256 checksum
How to use checksums
cd752ca556d7b2c5f724160e6666727fe14f051cd2cb759d42d5e48f38ec9a72
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-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
c3686168b6e25ffe0123ed6fe77438a9e48084f2afbd4506765270590e1977e2
BLAKE2b-256 checksum
How to use checksums
34b77e445d981b3cad6ab5293e1a18f048895a74b97df7e06b9d382530ce756b
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-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
3c0890d2f10eedcc2797dd9ff83d9434064911398aba30eb24b743b7354ec265
BLAKE2b-256 checksum
How to use checksums
ee5b48b6e1d0b361e680a6de67ec64c6b13507e75f658e717d2a0cd7fd4418e4
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-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
1099498fa934942127ae935959265663aafab708f2540c77fc3c09194e9dba48
BLAKE2b-256 checksum
How to use checksums
ad77abddcf2d778329b5de3209e75c3c5df383f4b70a5d304a657d558ce5cace
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-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
fd957dc296daa98c481d626daab60fbe9a8f2df552f5725c18d770c133c735b5
BLAKE2b-256 checksum
How to use checksums
a0e9b76008271b214c53109b282dba288d008d6d334084952052fc344c42b062
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-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
02b1fef1983fd61aa8b4c81db3dfe31454b2acdbab5768cb6737b73ee875534c
BLAKE2b-256 checksum
How to use checksums
7ae86733efc68d78c65f0865571e9da07b097dc455ab55b23fa6faf9960f208a
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-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
1e6052e6332b55ad05504d7ba48e0789c9d539ef942a559d2abc2019f3f89548
BLAKE2b-256 checksum
How to use checksums
107e5f2b5be0af80d8521ad7e1cc820eeb210b134fdc3603c49efac5f36e062f
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-cp311-cp311-win_arm64.whl
Size 539.3 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
4cadb4f17895d76427504aea573c1d3aabaa05442ee322eb536dafaca45c06cd
BLAKE2b-256 checksum
How to use checksums
05ad4f83d4940bd845b3f0c349e1f7cd9ecc5464e41688738ef05c1e766acb42
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-cp311-cp311-win_amd64.whl
Size 556.8 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
51b4d539051b37519f7174add38c07daba3e00beabc605be6fab87fd42adf87e
BLAKE2b-256 checksum
How to use checksums
ca2ad8ab4fdeba2a89153bf2255541e44b3d6ecc894d522f9ccbdda773170406
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-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
11c475eb534969500d61bb1361cb42666493032ed114b21df14821fdf5b0d474
BLAKE2b-256 checksum
How to use checksums
3bd401ea70e064540cec8cc443ac41b91ca58cc2a432f1103749af4d93060882
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-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
5968fb527b17f6f17af799c4ac0e38b622afb65e1c903362722b683c709e23c5
BLAKE2b-256 checksum
How to use checksums
d65f806f2c1415c2ffce64ff60461d3ec4ee7c042a3f3a84947ecc9d5021ea12
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-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
6e4c856f3b45e3b7f234e5ecb655fd7f9fd0800ddaef9f9943241c9092d75703
BLAKE2b-256 checksum
How to use checksums
4ad4c0f3a22942dfc37c714ea4d165525494d62bd8d4fcee9e923757ed0583fa
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-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
7ad6f575e8258ee72425f8d8beb40812cefb95101646b066f7b7d38b6dd8a8ae
BLAKE2b-256 checksum
How to use checksums
f38d19a1ce54798d6d1b26dc1826c1d7caeb331de51d5ef26e44af1f14b155fe
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-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
65731513c789bef71e4b5a0d1c53fc08bba284c2b79475aed1da1dc4baa5ed5e
BLAKE2b-256 checksum
How to use checksums
43d9549bf73025b50d8c66010cda29ee15b86588a999adb8a095cd7718bd5751
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-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
051028a208e0b206d77eddcaafbf8a464fde1a7ad752c36bb928b37ef7915077
BLAKE2b-256 checksum
How to use checksums
87ab484d37af980e26d67302f90d892bec0a6820832c190e8cfde4310d23c309
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-cp310-cp310-win_arm64.whl
Size 483.3 kB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
bdc10268a29e0934e6646567e50950745bcac1bd6400a1042079c5e57e8f9820
BLAKE2b-256 checksum
How to use checksums
aad570938a6eb71a618a9f415182314d4a4ec6d03875855b84d986caf3295636
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-cp310-cp310-win_amd64.whl
Size 491.9 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
1a51262ea7642095baa0d91f72b7bd252b52e2e1049c2c7395e55b6bc1648f0e
BLAKE2b-256 checksum
How to use checksums
6fd6f0fdcf6c76e8c3778987e65babc028bb774b84be1eb90887e40fb514b448
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-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
233caf5ffb422c125651993319e3b5f527fffaae724cc65ca9a0ee7ee584f09e
BLAKE2b-256 checksum
How to use checksums
b2166e2d15dea54b499c5a4de91191d2250cddf8dbf2e0cbe3d05733b4038674
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-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
da0bc63a2818fac55c0a467d1d7bb188d877baedc223a9371407678872e86bea
BLAKE2b-256 checksum
How to use checksums
a732d2253c10d9194f223da18b0a84eef2a12222b5dc7b1b45e4d58a90e57ece
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 811.4 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
6779af15016718ae6b5c404c6e7ecf77d9b3291a5d71aec4a1bfdf5696f1fd87
BLAKE2b-256 checksum
How to use checksums
82f5ab7e731b8cbb325ab5718e5b8040f1cc26d8139ae225a1425360cd80aa57
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-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
3a0f6bf0eb2ef4af22a35407b73002620a803bde0ca7bf2cb93993e9d6af84e2
BLAKE2b-256 checksum
How to use checksums
ed64256ac97bae39cdaef89cacd2e6eaec6fa9523e0dd4b91242f2f5342d5e8a
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-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
64b3490c72fa84846f5e047711bd1ba38a65e4d8f358b26c9f7a73059a7d3b1a
BLAKE2b-256 checksum
How to use checksums
dbf4c83a043b0cae9f2912a896c6a36e682cf16e9c720aca122991b7f67dce5b
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 24, 2026.

Transparency log

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

Download URL adsorpy-1.3.2a10-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
9393dca870702d305034e1b8c48f9e17cf3b9adfa08189e931e1138ae948bdd1
BLAKE2b-256 checksum
How to use checksums
0080ee5d8dcaeada5410d85a75a4d0b0dd59c0b85d92d420fad91170825493aa
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 24, 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