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.

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.1a3.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.1a3-cp314-cp314-win_amd64.whl (583.9 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

adsorpy-1.3.1a3-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.1a3-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.1a3-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.1a3-cp313-cp313-win_amd64.whl (510.7 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

adsorpy-1.3.1a3-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.1a3-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.1a3-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.1a3-cp312-cp312-win_amd64.whl (445.8 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

adsorpy-1.3.1a3-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.1a3-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.1a3-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.1a3-cp311-cp311-win_amd64.whl (380.4 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

adsorpy-1.3.1a3-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.1a3-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.1a3-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.1a3-cp310-cp310-win_amd64.whl (315.6 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

adsorpy-1.3.1a3-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.1a3-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.1a3-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.1a3.tar.gz.

File metadata

  • Download URL: adsorpy-1.3.1a3.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.1a3.tar.gz
Algorithm Hash digest
SHA256 09ef2ba1417be8754f52fd584f0499d8c6807a441416c58ad54173550458f02d
MD5 bf1fd4090e0cfed308ffc21274cb7757
BLAKE2b-256 e0b10931055bfbf3a0612895ab126c53b27aa4a50681de6d6c703fd5b6e189fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1a3.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.1a3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: adsorpy-1.3.1a3-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.1a3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ed08a522cc62e472e0d0dfc2123aec6302cf19bacf16ffacc9d61b27d8425354
MD5 f3f9de8d108e615c521c457f55884719
BLAKE2b-256 37a522d77aeb76c05aceca5e9eeebab648c3098bc6203d677128341976e39fd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1a3-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.1a3-cp314-cp314-win32.whl.

File metadata

  • Download URL: adsorpy-1.3.1a3-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.1a3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 31e2011c0d0602c98364701de158d44cd28f4034be4130ad93ab5afbb4a16d35
MD5 89374506ade3f6b8b2b064dfaddaec98
BLAKE2b-256 1ae38534e78c7d1d673a0710d5135a75ca4c8b40392e781d745552c0183e6c74

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1a3-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.1a3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for adsorpy-1.3.1a3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8ffc60799502f3cd4f57a8a11d1cac3c0683f7f08ff34cb8d177a6a6a4500a93
MD5 5a4d4da90d7231cd0267a0490a82bbe6
BLAKE2b-256 2b66e214bed3191435e8cc70e0ae85fa2c60ac10de2c904721bc8509b56eed5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1a3-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.1a3-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.1a3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8b529fb45b7d2da2f401123a51ee281fa9c8267cd18d810328f005fb422186f6
MD5 57f5f91df70af73189787f19661a96db
BLAKE2b-256 b35150e5a3a58a6e3fb8873197e44f6afb2b78920098476ae2f9d3c34e18af1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1a3-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.1a3-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for adsorpy-1.3.1a3-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 6f8d7de901f5ae0b701f7ee6b6a9a57de8c06f6a9e4f2afaebf16a061419fd84
MD5 8b710871223ef5a147ed4c619cc6a126
BLAKE2b-256 2f48fbb7ab8529f88166d98f442910fd00baa15c548d4fadef8397c29ad2349e

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1a3-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.1a3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: adsorpy-1.3.1a3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 510.7 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.1a3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b30b498832d3da9eade6228f210348124bb1e294ce319d0bbba02ad870e4ff04
MD5 323beb09029fc42e964e3007cf6a65b4
BLAKE2b-256 3b1c24a5cbb05cbb339877ae80d068694982c24f50ba2d52fc8ed82223b6a5ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1a3-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.1a3-cp313-cp313-win32.whl.

File metadata

  • Download URL: adsorpy-1.3.1a3-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.1a3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 64cf1c75bf32d9d1f0120b5d0a7c80dc9467b5611a345e3561e1a1e7c7c8442e
MD5 3b57ef4b3d8483e5ec9899331fced06e
BLAKE2b-256 26cf0589bab16136acbbd29d28f11167cbfb5dd959aa77771a555d21dd54b327

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1a3-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.1a3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for adsorpy-1.3.1a3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da3800023a7d11d33c6a2289c88275b0dc6dd897abb28c406db4d032062dac6f
MD5 4f21af432d66446e158d8c2157ecfe60
BLAKE2b-256 d271e619fa6db42d13243309d1b6bbb16d847cf0161a82408d4e1d8764daa76f

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1a3-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.1a3-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.1a3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7cd82ee92c7c5277965780f306e93558e675df0bdb9c78abb6c9f0f306f7d5dc
MD5 dded58b26d0cd57354263c857110c6bc
BLAKE2b-256 826847b28f99e9cef4029ba67ea0a29d42548085245a8f4898986dfc545ac977

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1a3-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.1a3-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for adsorpy-1.3.1a3-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 56a3d57d012279758e19753411f3fbfc5cbb9596f4a8463e763e7bfef885d235
MD5 df3b90b44ef3a2acab2c833661d55070
BLAKE2b-256 7a6f202a514f46e32f93bf45ae049538d0d403bdec68bdd0aa9674bf04c4bb6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1a3-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.1a3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: adsorpy-1.3.1a3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 445.8 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.1a3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5b105f19f2045efd9e2f6d40aa780e8e8b4402628322f63b81432e37d113ec10
MD5 7c4641cb08ccd2bb391e2693fbb1a82a
BLAKE2b-256 3fd0149407a1845ae484279d284b548e91cd710f352d9904d8b18d9e69e2e163

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1a3-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.1a3-cp312-cp312-win32.whl.

File metadata

  • Download URL: adsorpy-1.3.1a3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 414.5 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.1a3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a2ac71d0eb944f31a4f811ae209ca5201ffbcf4810d3885943b8d4344c9a3e0a
MD5 89d2afd20ec38afc70b08907c6a24a7b
BLAKE2b-256 eee418b856fbd57cfce4a9d25f603881564ecdc38214987cfe61da03ddcf4351

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1a3-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.1a3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for adsorpy-1.3.1a3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 78e880db5bf95d33ad651ff3f89c83cd8003c773d53fe99c4c62050c4468b6d7
MD5 7a02ab3722ad9ced577bc4a1ea52f1f8
BLAKE2b-256 9c353c0a8c31a388c7682a423e3af3eee0a614fcb6cd5e15821f660b4287f2d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1a3-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.1a3-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.1a3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8fd07500cdb256de26df03d9a763a650a32403e9ac25dd3b090f31394a173cd8
MD5 38e7de6e9be744c754fa2ce586130e06
BLAKE2b-256 fea37d439ef7984874ca53475362f37d54535d0d2a56907a9397baa28b6a45b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1a3-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.1a3-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for adsorpy-1.3.1a3-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 d4602d69098721082a833372279efdd85cb031522f102510b271345ba0407179
MD5 542da6335ad9d8725204613572cbdf47
BLAKE2b-256 640366ad3c1b65ef64dee615f83c29d8590211d1ec13ca285b2e635c91ff12d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1a3-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.1a3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: adsorpy-1.3.1a3-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.1a3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 45b7c9782d5aeb8c0c0a83e18bb0cd5b060d44a21ce464c924b63f9ade98e50d
MD5 21d3a79be2993e214aa12d8a8f4ccd2c
BLAKE2b-256 99add7614006fe8705c3a2f974796efe8a2b75a825e37ad6e5150b2b65bf431a

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1a3-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.1a3-cp311-cp311-win32.whl.

File metadata

  • Download URL: adsorpy-1.3.1a3-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.1a3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1fbba229fcd64b78ba387f178ca31d2395a99801d3203c37cd5ae4265738ced8
MD5 7870a9b67ee227775a386a34bfcdb7b3
BLAKE2b-256 cf60d178c01b666a5bd2fcf2bbf5f7634d4844929c4a3afb2aecc294f50fb955

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1a3-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.1a3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for adsorpy-1.3.1a3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d5c010c8e877e149fed6b7503eadd4bfeb5d05a81fb80c78af0f6553f2ece5f7
MD5 7976f937d6bcab08c1e250d43f56f16a
BLAKE2b-256 f7d1dc04928f594724a59ae09ad51d46f1257cdd60afa703d6b2052fa582392e

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1a3-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.1a3-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.1a3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8fcc5f0d424db2cd2ed6a721167f70d50280cb975dc540f96ad21d84343c1991
MD5 4740a2a8505575566d6d0ca19d1bee22
BLAKE2b-256 4498af700a6f77525526c8a8aee87d5424d1bb83ab2e828c7cc3484c38330e19

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1a3-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.1a3-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for adsorpy-1.3.1a3-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 208e6f17a201a3d9295a654312fe046d099e9e2034018f00bd061efa024b1cb6
MD5 1b36e6ecefe5a204c40ede5c9677082c
BLAKE2b-256 d664d21062b621d59603a907caa62105833e75ace1e444b631bd85b612a19ba4

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1a3-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.1a3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: adsorpy-1.3.1a3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 315.6 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.1a3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 480c852fb8e68fa1d5833fad80357743911498a17aa5850e4164ef20d0ecee3d
MD5 ff35ddc8ce05398cd72cb89ce8359651
BLAKE2b-256 8b0b92eb3d3b9c72607989d0082f394a0632a52589b30185f3524a91f782b3c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1a3-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.1a3-cp310-cp310-win32.whl.

File metadata

  • Download URL: adsorpy-1.3.1a3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 305.1 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.1a3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 fc18106f675d0f9f34f27779aac42775e7199ece73f87fa6548e6ab97e56cb02
MD5 25852504f6db47c82a39073251a2c558
BLAKE2b-256 6b5f4e36a6ee4833706092b913d44d24a20fc85964565033f2acad3c43ffff13

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1a3-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.1a3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for adsorpy-1.3.1a3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eaa98d7a78d679067c74261115e85c27d3a2a5984c5bc9cffebd9178158d1d38
MD5 6f82461267068787c0c1c4335557c243
BLAKE2b-256 62d4df3ed95f4e9e4afd2427f36a4ae9a80e7de29fe87fc3b1d64585fe410383

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1a3-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.1a3-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.1a3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0681bde408337c1b011e7d1620f0298f85637328e95990c052932c4483bdf737
MD5 4e4adb4d76cd9bb4fc9ed286fe5dc0f6
BLAKE2b-256 c324dbef5fda2415bac93b91a775d094a737281139711bee104465be5937dd06

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1a3-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.1a3-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for adsorpy-1.3.1a3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0c12ea8eccbb743b5567d32f139ab9d895c224806e84324f4a7ac6abea2de76a
MD5 a2310e54ea097142b24e232f1fe93a29
BLAKE2b-256 a790326cbdde051b75de0a634263cb36d0b4e62a22a7c98b348d1e7566398222

See more details on using hashes here.

Provenance

The following attestation bundles were made for adsorpy-1.3.1a3-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

1.3.1

26 files

This release

1.3.1a3 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