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

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

Built distributions (wheels)

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

Download URL adsorpy-1.3.2a8.tar.gz
Size 824.9 kB
Tags Source
SHA-256 checksum
How to use checksums
5772e8dc5f65f10925e8971ffc42a72bae599a88819f789f3f0607b2047f2dc3
BLAKE2b-256 checksum
How to use checksums
f7158cc8cfae688e85c9a3f98885f883fd79a0bbba44384bc9647afb7cfad1e8
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.2a8-cp314-cp314-win_arm64.whl

Download URL adsorpy-1.3.2a8-cp314-cp314-win_arm64.whl
Size 711.8 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
95b7197f97bd756582f256c2a9db3cfba491d40e4d68062bb782b1b6db3c7d18
BLAKE2b-256 checksum
How to use checksums
f1505f862b18d37a6410a548d459c51f2e48de110a61354570a9982131bb4bc7
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.2a8-cp314-cp314-win_amd64.whl

Download URL adsorpy-1.3.2a8-cp314-cp314-win_amd64.whl
Size 760.3 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
82e44e92f3be9742a22a5d23cfe68f2ff189cf302f55ebd56f99e1819e6cdb31
BLAKE2b-256 checksum
How to use checksums
9da5968b8ce257ce78233d2edf195e92428627121bcce912eb1a511c61501df6
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.2a8-cp314-cp314-pyemscripten_2026_0_wasm32.whl

Download URL adsorpy-1.3.2a8-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Size 495.1 kB
Tags CPython 3.14 PyEmscripten 2026.0+ WebAssembly
SHA-256 checksum
How to use checksums
d5ca2184c4793f791bfc03de3dbf17a27adedf5b009f763d5e55df4d39ccf0ba
BLAKE2b-256 checksum
How to use checksums
2d737376f9b07e78abb6bccb7d28f45507b93a7b20d5530cd6d75813e86347be
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.2a8-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL adsorpy-1.3.2a8-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
72773924cf1dae89b55f32560bdc95ae29f1a57b0cd27031874148b29e518194
BLAKE2b-256 checksum
How to use checksums
cc81c4290865c3194fac3c9d788ddc7e2af509a6e60a908c460a58aadfa4ed5c
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.2a8-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL adsorpy-1.3.2a8-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
0c57aa58d7245b6e6ba9fabbf2725f186e4fe4b4e72c65feaa0b55a6ff88600e
BLAKE2b-256 checksum
How to use checksums
276b16e3c9eeab8c738790b579475848cc3be2a17214490dc187f2eb31f33946
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.2a8-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL adsorpy-1.3.2a8-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
0027a83dd1f5d713e539be0b645b722eaf6051f9fd237d76ad73bf3e010e3acb
BLAKE2b-256 checksum
How to use checksums
07e825bdfce32a2347f0fd2835b21d408504a8fe8f30df1b7b325e08f7271266
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.2a8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL adsorpy-1.3.2a8-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
1ed5739c1b3ec06927ab045bc1e7b7e1fe3c54ff18978189258f1a9ea112a112
BLAKE2b-256 checksum
How to use checksums
f9136f550bc5ea45ea69be5f628f9cf4fcd42068180e586b824518a41a082e8a
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.2a8-cp314-cp314-macosx_11_0_arm64.whl

Download URL adsorpy-1.3.2a8-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
b789ff92168537a701e08a80a0399f0aa8ed04263b578c16f54afb2972566f5c
BLAKE2b-256 checksum
How to use checksums
e2470214c17d78bfe6faea895a5a622eb099703e33b5adcb2a5513d0cd137985
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.2a8-cp314-cp314-macosx_10_15_x86_64.whl

Download URL adsorpy-1.3.2a8-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
c3b1c48d413ef593f2320dc9817f927536953e8d6690c2f2e34c099f6acaefb4
BLAKE2b-256 checksum
How to use checksums
e4d479adf3a0f219303ed8e85600d7453060a488e90600583a1371cbc0d65ef6
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.2a8-cp313-cp313-win_arm64.whl

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

Download URL adsorpy-1.3.2a8-cp313-cp313-win_amd64.whl
Size 687.0 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
224c09bbc6845cb60610544f6c8bc98cd379792ee9a393d3b2049fbd9a2644ff
BLAKE2b-256 checksum
How to use checksums
8d299808cf2bed8a8fa69ef2422a6b5e900d05c66eb9a0df180d4706936f40a3
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.2a8-cp313-cp313-pyemscripten_2025_0_wasm32.whl

Download URL adsorpy-1.3.2a8-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
327242fbd50088b6d778ee6bc6965e8cdb4a09817d719e709ab102ee652530a3
BLAKE2b-256 checksum
How to use checksums
9174fa82f9a7cd79f802aa25ee18f55eeb605a5adf4c4f0f3a0c48c3d9ff20ea
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.2a8-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL adsorpy-1.3.2a8-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
f6aa3ae06d7dbbbdc324f3cd7b89e299868dca71916004d166c63b228c29620e
BLAKE2b-256 checksum
How to use checksums
0080ddbb88e3f265c5cab357ad319753aebdb67a3b9e4ff9cbe13de4a6228787
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.2a8-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL adsorpy-1.3.2a8-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
46c5ef6b5267031931aecd72beccd052c5db480508f29a881ed9429f20c699ba
BLAKE2b-256 checksum
How to use checksums
8e408c614bd374167c158d763ce6b6ead7f7ff570a760f2c4c6f1d8cd6daade5
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.2a8-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL adsorpy-1.3.2a8-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
b44ec15793482f97a689fec43d44ab863ff539df89ce5dbebf0b3364b938edd6
BLAKE2b-256 checksum
How to use checksums
fe2664e404c63f670fcbefdf9942f82f41ccccda817e302e7ee7f0b2d9ba65b9
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.2a8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL adsorpy-1.3.2a8-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
1fd155ebc2b7e203b16fce68e041b1c9126287d88d0e81ace3b6100dbd38e7b0
BLAKE2b-256 checksum
How to use checksums
912858ce28909963a2a224e16b0ec3d6284be4813cce142f7e0aa3cb2a4a3545
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.2a8-cp313-cp313-macosx_11_0_arm64.whl

Download URL adsorpy-1.3.2a8-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
0a4b7e4b5f892d6fef69a484f060c2347c243915e63cf3c2ab76abf922bfbc1d
BLAKE2b-256 checksum
How to use checksums
b4ef683e0d403089b68586d41e62de5893813bfc9c0af8039645344d8f8dacd1
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.2a8-cp313-cp313-macosx_10_13_x86_64.whl

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

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

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

Download URL adsorpy-1.3.2a8-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
f1ca317487ef890081f80a329aa6e93f262dda39016086d55aae467189ac0df4
BLAKE2b-256 checksum
How to use checksums
78bb95c6d5a68a38686f574751625193368528b38566b301a6efdba7d5f5ca28
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.2a8-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL adsorpy-1.3.2a8-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
944fddb02cdcc4519241f363a01b209341475f607e339c042b765d35f87357ff
BLAKE2b-256 checksum
How to use checksums
71c2f53219e3441239e513955085fef28c05318437673650781d4628ba2169d4
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.2a8-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL adsorpy-1.3.2a8-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
3ffd56a15eafb9fe9686c49dcd6effd759982e33e6376bc92c736e804cd9b20c
BLAKE2b-256 checksum
How to use checksums
e33eaf2ea0feb51a3ca3e28a8666f66c748ba65f443de0efadf13c037e4ad1a4
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.2a8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL adsorpy-1.3.2a8-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
5a33681488e1099ff846d15cf4677c338855ca18d1267dff95a10d411c14aa74
BLAKE2b-256 checksum
How to use checksums
9cb0f2e3d90c4cadd767d6ed4081077689eea288ce39da37671bb5091a1e6a2f
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.2a8-cp312-cp312-macosx_11_0_arm64.whl

Download URL adsorpy-1.3.2a8-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
819a555c8ccc203a600229bfb629062b514f68f9f9e34f18e1a538811fa6ac5b
BLAKE2b-256 checksum
How to use checksums
014538b2b04feb38cececb21ca83affd726c8afca98eba5a7c8731a595f66371
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.2a8-cp312-cp312-macosx_10_13_x86_64.whl

Download URL adsorpy-1.3.2a8-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
108cba0dc64f8480284c46034064034b8253221d186af3912080e870d63e359c
BLAKE2b-256 checksum
How to use checksums
f70a8b9de3699438502b56aa94621d675ad54e40c954e8ed3723a80f32dc202b
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.2a8-cp311-cp311-win_arm64.whl

Download URL adsorpy-1.3.2a8-cp311-cp311-win_arm64.whl
Size 539.3 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
877a1e19e8e147ee05faf08f2f7dcfe5ab34db015f0f356a890ccd12b29ecfde
BLAKE2b-256 checksum
How to use checksums
66aa1ea8a2b7239f6450d8f73aa7bb722b386fe404d6d812f01350002bf0d13b
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.2a8-cp311-cp311-win_amd64.whl

Download URL adsorpy-1.3.2a8-cp311-cp311-win_amd64.whl
Size 556.7 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
f781c97db74c68777656530f7609d7cb9b49ee6195d785e4b9ac314c3a1f7f23
BLAKE2b-256 checksum
How to use checksums
d3ab332eabeade831f57718a3a7cce38ddee1adf9b8080b759a1723c2fe1a699
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.2a8-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL adsorpy-1.3.2a8-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
d374620755bd6892d51521a819c8f7af0a346638d0b94007105e525c56a0778d
BLAKE2b-256 checksum
How to use checksums
e37dcc4841851ef75d1516af0e1a851dd81158839fdfcbe55ac142c49f0cd975
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.2a8-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL adsorpy-1.3.2a8-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
7dcefc1261ac2a5a1e198a0db0ba7a8af9f3ff8b0e44d4e48696d540dd48db56
BLAKE2b-256 checksum
How to use checksums
9b34a774dc6e068f94e75ce002d6c7d9cc5bd6b527319fe89da3f2bc4346faf6
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.2a8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL adsorpy-1.3.2a8-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
ed425679d770c0a039713499192d5d2ae7811e2420d009d15d00e48f040d8aa2
BLAKE2b-256 checksum
How to use checksums
9a943d51e10fe30ed15c5ef79cdf27852948c32a133be2de9ccbb17522051ee0
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.2a8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL adsorpy-1.3.2a8-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
c4c78cb44e8142a694d628dc4b23981ce0a7af6d58cd26105b626c35d46533a4
BLAKE2b-256 checksum
How to use checksums
19abee1ec8e4710c342d9d1cc069794d33e33bcc2037983aaffe441be485387d
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.2a8-cp311-cp311-macosx_11_0_arm64.whl

Download URL adsorpy-1.3.2a8-cp311-cp311-macosx_11_0_arm64.whl
Size 575.3 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
b9a54a74fe0f0bddc5ca83db0e1d67b2a62e3ec369b359c1c738811b40c2e231
BLAKE2b-256 checksum
How to use checksums
abefc8bbee6643b125dafd92557aa27c2c3d41c570a769954ee28e5219634d2b
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.2a8-cp311-cp311-macosx_10_9_x86_64.whl

Download URL adsorpy-1.3.2a8-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
8ee569ba0fcdde4f49459d65bd19d0087f74e6d8acea512598ffc24a05df373a
BLAKE2b-256 checksum
How to use checksums
511cd149a288d52ef5dc028b162ef96ff4ebf741445917cc968234d487a036c9
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.2a8-cp310-cp310-win_arm64.whl

Download URL adsorpy-1.3.2a8-cp310-cp310-win_arm64.whl
Size 483.3 kB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
1fe5c35caf981da78845f6d5b988efa7c4695b0e9fa6d232c9172854eaf2fd19
BLAKE2b-256 checksum
How to use checksums
40fb42c475bfbe1fa3f7f2141c8ea0d2cfeaa3c987689ae055cfd943082b5605
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.2a8-cp310-cp310-win_amd64.whl

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

Download URL adsorpy-1.3.2a8-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
ec152b241a1ac72449ae54e9bdcdb1f1d834101f6395df54e39a4afa856120cd
BLAKE2b-256 checksum
How to use checksums
572aa4db1355a7a614be3b0702563a4595705c09d680e4d401e3086aea43c7c5
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.2a8-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL adsorpy-1.3.2a8-cp310-cp310-musllinux_1_2_aarch64.whl
Size 803.6 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
9a42c434fe39a9e372c7a633219dff1391770abab83c98ce1466a5194f20a47d
BLAKE2b-256 checksum
How to use checksums
1e3c497422849339f9cc17f6ccf8805dfb6ff30919cef0988edc8eb62df20579
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.2a8-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL adsorpy-1.3.2a8-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
b750d9fe27aa165efad5df0fcd23c14bab997020b28afeabdb322fdb8705ab08
BLAKE2b-256 checksum
How to use checksums
b9cfe47adae50fe1cc6641aa6dbd54aaa9270371650e3b4e94095a4a605208a8
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.2a8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL adsorpy-1.3.2a8-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
029b92f4c83bd232f1f6be060e266a1ceab04f69afcf4ba3ee6b9beb7f764682
BLAKE2b-256 checksum
How to use checksums
07508b3c83c71add91f31c3400883d774e2268a88d7076334bd909897d5a1a9b
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.2a8-cp310-cp310-macosx_11_0_arm64.whl

Download URL adsorpy-1.3.2a8-cp310-cp310-macosx_11_0_arm64.whl
Size 500.5 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ba31270caa92c82ad8b7f1b75536a6efdb890b6c9d121b20f86caed7f3cde2ce
BLAKE2b-256 checksum
How to use checksums
820bfb132b30fb649d073a8e32172a8dac71a7d7a0f9ae4568e38fd1e4ab8b9a
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.2a8-cp310-cp310-macosx_10_9_x86_64.whl

Download URL adsorpy-1.3.2a8-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
b9007435f6290c4a179841795d3f78d272d5438437ecc5abe4208e05a1b50ba9
BLAKE2b-256 checksum
How to use checksums
ebffb6297a6215a18396cf930deec065f70d4bf70ad381db731a6ba4a55b5b78
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