Skip to main content

AdsorPy

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

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

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

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

How to use

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

pip install adsorpy

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

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

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

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

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

Future additions

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

Design philosophy

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

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

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

Openness and academic collaboration

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

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

adsorpy-1.3.1.tar.gz (819.7 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

adsorpy-1.3.1-cp314-cp314-win_amd64.whl (583.9 kB view details)

Uploaded CPython 3.14Windows x86-64

adsorpy-1.3.1-cp314-cp314-win32.whl (532.4 kB view details)

Uploaded CPython 3.14Windows x86

adsorpy-1.3.1-cp314-cp314-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

adsorpy-1.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

adsorpy-1.3.1-cp314-cp314-macosx_10_15_universal2.whl (997.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

adsorpy-1.3.1-cp313-cp313-win_amd64.whl (510.6 kB view details)

Uploaded CPython 3.13Windows x86-64

adsorpy-1.3.1-cp313-cp313-win32.whl (469.4 kB view details)

Uploaded CPython 3.13Windows x86

adsorpy-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

adsorpy-1.3.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

adsorpy-1.3.1-cp313-cp313-macosx_10_13_universal2.whl (846.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

adsorpy-1.3.1-cp312-cp312-win_amd64.whl (445.7 kB view details)

Uploaded CPython 3.12Windows x86-64

adsorpy-1.3.1-cp312-cp312-win32.whl (414.4 kB view details)

Uploaded CPython 3.12Windows x86

adsorpy-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

adsorpy-1.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

adsorpy-1.3.1-cp312-cp312-macosx_10_13_universal2.whl (697.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

adsorpy-1.3.1-cp311-cp311-win_amd64.whl (380.4 kB view details)

Uploaded CPython 3.11Windows x86-64

adsorpy-1.3.1-cp311-cp311-win32.whl (359.4 kB view details)

Uploaded CPython 3.11Windows x86

adsorpy-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

adsorpy-1.3.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

adsorpy-1.3.1-cp311-cp311-macosx_10_9_universal2.whl (547.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

adsorpy-1.3.1-cp310-cp310-win_amd64.whl (315.5 kB view details)

Uploaded CPython 3.10Windows x86-64

adsorpy-1.3.1-cp310-cp310-win32.whl (305.0 kB view details)

Uploaded CPython 3.10Windows x86

adsorpy-1.3.1-cp310-cp310-musllinux_1_2_x86_64.whl (634.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

adsorpy-1.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (634.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

adsorpy-1.3.1-cp310-cp310-macosx_10_9_universal2.whl (398.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file adsorpy-1.3.1.tar.gz.

File metadata

  • Download URL: adsorpy-1.3.1.tar.gz
  • Upload date:
  • Size: 819.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for adsorpy-1.3.1.tar.gz
Algorithm Hash digest
SHA256 e67d49f812e0735ca5d21424953e9d8ae324c7e153b4892e5910dc2c3e2382d7
MD5 f3966e15afca0688e73010f29dd0d327
BLAKE2b-256 3ebd2e506fb5c9182b2311109746b4f23b237c2b95431c1a722d92033baec458

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1.tar.gz:

Publisher: publish_to_PyPI.yml on JoostFWMaas/AdsorPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adsorpy-1.3.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: adsorpy-1.3.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 583.9 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for adsorpy-1.3.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b32e8e4ed1cf0f752be98ab5bc8cc895107ecb7c19ca10aa272185a07da5bb03
MD5 3093b4d73451397ad024f907e6e1661c
BLAKE2b-256 2fcd156e273939c5b04ed50ab45fdde8f7c40f7210b0e354d4032822b7900940

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1-cp314-cp314-win_amd64.whl:

Publisher: publish_to_PyPI.yml on JoostFWMaas/AdsorPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adsorpy-1.3.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: adsorpy-1.3.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 532.4 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for adsorpy-1.3.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 4ffad36cff2b64e8a7e6948048a797c2453c201da56a8f3410f7a5b38e22b830
MD5 c26193997ee253410ee2140f67217147
BLAKE2b-256 4dea6b9a0e3fa52d3d727fb76132459fc4bf3b5ee50aef9230ecf07226210d83

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1-cp314-cp314-win32.whl:

Publisher: publish_to_PyPI.yml on JoostFWMaas/AdsorPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adsorpy-1.3.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for adsorpy-1.3.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03afb94a4646cc248c530f86f5e526d3d54eb76b16d0b56800a21497eb6fb901
MD5 1f4f833d4fd94a281a29b628c430cec9
BLAKE2b-256 55b6e38677625728102336eaef8276fcf47f13f5c800bb6015f03ab72316afcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: publish_to_PyPI.yml on JoostFWMaas/AdsorPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adsorpy-1.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for adsorpy-1.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aadd457b157702d843695e629afbe27cf42cc005da5d7d1829ef31ef18190c6a
MD5 99994326f59ef06a1d7461e8dc1639ee
BLAKE2b-256 24da7632f368999abec46d639621edec1ee0398b399d707246f7381d87a42e2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish_to_PyPI.yml on JoostFWMaas/AdsorPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adsorpy-1.3.1-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for adsorpy-1.3.1-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 20117633ef674ca7d0b96ac95cda58edd2bca811e9290fe04e01a9bd7bcb7d98
MD5 88f71abbeccc3817e4edca4773779458
BLAKE2b-256 42eaa2786b514091646c436393854a7391a7d2908525e1b0713937ea80179796

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1-cp314-cp314-macosx_10_15_universal2.whl:

Publisher: publish_to_PyPI.yml on JoostFWMaas/AdsorPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adsorpy-1.3.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: adsorpy-1.3.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 510.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for adsorpy-1.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 340ddb7ff6fb0b0ff1aaf7a915a524317e1061a6867d1893d212db6ec87d47da
MD5 e6b7804e2b00a85f9538dd19bd02d0c1
BLAKE2b-256 dde16f817f9b884127593968158842e410231032dd5ba1f492996841e8a26a3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1-cp313-cp313-win_amd64.whl:

Publisher: publish_to_PyPI.yml on JoostFWMaas/AdsorPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adsorpy-1.3.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: adsorpy-1.3.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 469.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for adsorpy-1.3.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f6d43486852075f23277ec99033183d064e42943830d1af8af8b968e7826eede
MD5 2c747bc4cc733ca99a4b6c7bfeafde1f
BLAKE2b-256 5047ae42f447a376ff3dc1e48a82dcf3f45a23c4a1d907c0913fc1e2cbd50bd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1-cp313-cp313-win32.whl:

Publisher: publish_to_PyPI.yml on JoostFWMaas/AdsorPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adsorpy-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for adsorpy-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c3e507d08c87737332140cdb7175ab6f3def56fdf3c6f08d75c89d74d3882ca8
MD5 fc23a9742e322087fdf22a0a1dad1b80
BLAKE2b-256 11ae0ec1dbe18807ab568a18d69491e8bf7dc6b4b97ea7767e91ba19737fd3aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish_to_PyPI.yml on JoostFWMaas/AdsorPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adsorpy-1.3.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for adsorpy-1.3.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7b59e6ce4bdd5a1f4d7f302275c97b4f44128261e0be9988b05678edb3f683bd
MD5 bf530d1ef4f18fbfecd5ca3569ac395c
BLAKE2b-256 829d38c769ab7262015721c8b5bcc2529c81fc8d239f096b8814f2bdd7d338a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish_to_PyPI.yml on JoostFWMaas/AdsorPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adsorpy-1.3.1-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for adsorpy-1.3.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 e153bb0686415d53659081a881e658273209de1bd2f4bea993c8b4e2c2b0c8a7
MD5 2bcd871ca09f1a9655a13690faa41a32
BLAKE2b-256 f2a8c98a4a5474496f166d52f2aac0ae8b37105627e12efc09488de824fb69eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: publish_to_PyPI.yml on JoostFWMaas/AdsorPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adsorpy-1.3.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: adsorpy-1.3.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 445.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for adsorpy-1.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b767f4e7a0775d748888f069ea7865b3080a68e32a53eadfa6ca47e0968e1c34
MD5 db3f1ba18e5f57ea7972a8fa5a98439d
BLAKE2b-256 0bcce4d3c7bc39f1ef6f9c974cbb0f1b7f7feff6ffaef6b5c73cf296aba50772

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1-cp312-cp312-win_amd64.whl:

Publisher: publish_to_PyPI.yml on JoostFWMaas/AdsorPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adsorpy-1.3.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: adsorpy-1.3.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 414.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for adsorpy-1.3.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b5709430af98b8b9ee4b9a9455df8f90ea0fd76e558e484e8e88d8e820b72a59
MD5 2b670e41294d98fa65ace45e776ea062
BLAKE2b-256 86c8c8948dea9bbb4ba4a9ead0587f1968abf5983a973fb1f3bdf44330820759

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1-cp312-cp312-win32.whl:

Publisher: publish_to_PyPI.yml on JoostFWMaas/AdsorPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adsorpy-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for adsorpy-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 80c0a9c0131ac65f4313f242812589ea78e58998adbcbb5ddb96021f2fffdd98
MD5 fc9b4b771d0ef3bc316d86a6cd4507b0
BLAKE2b-256 c377fd6096d48501f6e2ade4e87e11f521aaeb4a12995a35a1903e93ca158ae2

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish_to_PyPI.yml on JoostFWMaas/AdsorPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adsorpy-1.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for adsorpy-1.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 28abe1a9df197dc6c4b39c054e22a4e6c49a9d33676674dd5555ea474590fe7a
MD5 7bffbbd8395fb4352798b0b046b201e7
BLAKE2b-256 b10240da9a356c52a1897de5db670faadc7c822220f7cb7fdc168da928334089

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish_to_PyPI.yml on JoostFWMaas/AdsorPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adsorpy-1.3.1-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for adsorpy-1.3.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 227293a613db6800fc10cbee148ca03ba262da0d0305a2c642e553f781dac56f
MD5 1dcef557521c0b12313e2819b973a410
BLAKE2b-256 deb7ff11dab20855328d1bb1f40c8b067a7a1ac1b9d87d2fc084afa2fdc38a0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: publish_to_PyPI.yml on JoostFWMaas/AdsorPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adsorpy-1.3.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: adsorpy-1.3.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 380.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for adsorpy-1.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d1186654442bf0140f4c4857ad0f5506585dadf45780d5ffc722d1dad29c8191
MD5 bbf35d8a53b999c8ec1567295c92d6b7
BLAKE2b-256 143ad36467b42b8d99d300db42ce39f0c8a3e42ad5b6f17912684663b1a144e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1-cp311-cp311-win_amd64.whl:

Publisher: publish_to_PyPI.yml on JoostFWMaas/AdsorPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adsorpy-1.3.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: adsorpy-1.3.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 359.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for adsorpy-1.3.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 637852613ca7acdeaba8705d6c7a9fade980d15e13bd2dde9f2b26b5f3a66e4f
MD5 f5193ad21d2af561a3aa0b36dd12d41f
BLAKE2b-256 a11fd7a419bd73d01ceef46014cf762cc6d36f4f8549c01cb01ffeb7d3db322e

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1-cp311-cp311-win32.whl:

Publisher: publish_to_PyPI.yml on JoostFWMaas/AdsorPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adsorpy-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for adsorpy-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 708ca97d690b0cb470a396264eafce02cf561e1a93226abebf981961c0015612
MD5 1d06ee5fe8eb1a09f3bff9d46b785e42
BLAKE2b-256 0f517f48a51d1afc1ced12b4df2207e0ca02a4d5029aa5aa232b27184cc1d7aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish_to_PyPI.yml on JoostFWMaas/AdsorPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adsorpy-1.3.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for adsorpy-1.3.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b10555babe7fb624df58e0616c08e940db2d833aead74f6a2022e912371aee14
MD5 c1fbb0da971c40331c761aa0bd49678b
BLAKE2b-256 57b58d5d2397b6e8fb85a8a97e78009ca56044b64e89cb98eb7f9af7c59881b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish_to_PyPI.yml on JoostFWMaas/AdsorPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adsorpy-1.3.1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for adsorpy-1.3.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1bc05df78d8db27c6437ae9a8b89700bcc89e6b75243e25d1c51708593789a8b
MD5 6b575c6fc5c653b953ce97332098901e
BLAKE2b-256 8f65149a331f4f60a1c866ac10616ca47ae97307c6b83d68b53660ca88accb0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: publish_to_PyPI.yml on JoostFWMaas/AdsorPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adsorpy-1.3.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: adsorpy-1.3.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 315.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for adsorpy-1.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 07d3840793cfd2fe46312359f3442d861eb96201636a1c7e3cd92763430d7f2e
MD5 7ee73d28add309964a59982b98987f29
BLAKE2b-256 ba513dcf377b9d1c4c8f7c09e5d259f21625d77b706f4216a0e6a18bab7cce5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1-cp310-cp310-win_amd64.whl:

Publisher: publish_to_PyPI.yml on JoostFWMaas/AdsorPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adsorpy-1.3.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: adsorpy-1.3.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 305.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for adsorpy-1.3.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 fd3138e33eb43898eea13698e171d534941db370f9979bfe949fb98cdb3f6965
MD5 40b39a42eca740780c954c057853038c
BLAKE2b-256 0ae1f5f3619177f5e2f1fa99cfc7b68a3426869be6b0b9ff308c3a8a5c1db5c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1-cp310-cp310-win32.whl:

Publisher: publish_to_PyPI.yml on JoostFWMaas/AdsorPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adsorpy-1.3.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for adsorpy-1.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b0aad03acff0cf9756fdc4e072dc6d79851bb88574ec92bee651fa02c0c20282
MD5 a41a0a46ee53c7d8deb2348191618fb6
BLAKE2b-256 e92a5a3663e5c934c7f0bb7b8bda13a66a22d1c923bea95d3c5d2403d70de8b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish_to_PyPI.yml on JoostFWMaas/AdsorPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adsorpy-1.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for adsorpy-1.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9575c187d3bd8d06a7ab759b5bbe18413aa30b1781571b8eb1600e8be5d61d50
MD5 940377424ef462f1bfec092899a61764
BLAKE2b-256 b029ffae415306a137887774173e789aa2b22701d05d92548aba49ff0671dbcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish_to_PyPI.yml on JoostFWMaas/AdsorPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adsorpy-1.3.1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for adsorpy-1.3.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8d142d087d4b6c76e88429d3b74487d0aa54cca4b83c0532489e97aa02f446cd
MD5 0e4967da2f718473d1c536ec87481456
BLAKE2b-256 7726f731c83e4c3ed0d991ea3115fbf9e047440b3a8c859c75e4a15c8b27fe21

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: publish_to_PyPI.yml on JoostFWMaas/AdsorPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

1.3.1 This release

26 files

1.3.0

2 files

1.2.2

2 files

1.2.1

2 files

1.2.0

2 files

1.1.5

2 files

1.1.4

2 files

1.1.3

2 files

1.1.2

2 files

1.1.1

2 files

1.0.3

2 files

1.0.2

2 files

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