Skip to main content

First package version of Oil Spill simulator

Project description

cpp_py_oil_simulator

A C++ oil spill simulator with Python bindings (pybind11). This repository provides a performant core simulator written in C++ and a small pybind11 wrapper so the simulator can be used from Python as the oilspillsim package.

Highlights

  • Core numerical code uses Eigen for linear algebra (bundled under src/Eigen).
  • Python bindings implemented in src/utils/pywrap/pywrap.cpp using pybind11.
  • Minimal example and utilities live under src/ and utils/.

Quick install

Install using pip from the project root:

pip install .

This builds the extension module (oilspillsim) with pybind11. Ensure you have a C++ toolchain and CMake available on your platform.

Build (developer)

Build the native extension directly using the provided CMake and setuptools integration:

# from project root
pip install -e .

Or build with CMake in src/ (native build):

mkdir -p build && cd build
cmake ../src
cmake --build .

Usage (Python)

After installation the package exposes the oilspillsim extension module. Example (the exact API is defined in the pybind wrapper):

import oilspillsim

# Create simulator (example — check `src/utils/pywrap/pywrap.cpp` for real args)
sim = oilspillsim.oilspillsim("src/mapas/defuniak_map.csv")
sim.step()
density = sim.get_normalized_density()

Accessible functions (API)

The oilspillsim extension exposes a class named oilspillsim (C++ type SIMULATOR). Below is a concise summary of constructors, methods and read-only attributes provided by the pybind11 wrapper. For exact function signatures and default values see src/utils/pywrap/pywrap.cpp.

  • Class: oilspillsim (C++: SIMULATOR)
    • Constructor:

      • oilspillsim(_filepath: str, **kwargs)
        • Create the simulator by loading a map from a file (CSV or supported format by the core).
      • oilspillsim(base_matrix: numpy.ndarray or Eigen::MatrixXi, **kwargs)
        • Create the simulator from an in-memory base matrix (map, usually a 2D array, 0 for obstacle 1 for valid position).
    • Contructor kwargs:

      • _dt: (float=10.0) internal time variable. Each time oilspillsim.step() is called, particles will move relative to this.
      • _kw: (float=0.5) wind gain. wind component affecting particles is weighted by this value
      • _kc: (float=1.0) current gain. current components affecting particles are weighted by this value.
      • _gamma: (float=1.0) brownian movement gain. Random movement due to particle intereffects are weighet by this value
      • _flow: (float=50.0) ammount of particles liberated to the environment normalized for _dt =1 at each sourcepoint
      • _number_of_sources: (int=3) ammount of sources that liberate oil to the environment
      • _max_contamination_value: (int=5) value to dictate maximun concentration of contamination per node. No more than "_max_contamination_value" particles can be present in the same node.
      • _source_fuel: (int=1000) maximum fuel a source can liberate to the environment, once a source liberates "_source_fuel" particles, it stops liberating
      • _random_seed: (int=-1) seed to relive experiments, leave to -1 to allways use a different seed
      • _triangular: (bool=False) special condition promoving a different particle behaviour where particles moves following a cross shape.
    • Main methods:

      • step()
        • Advance the simulation by one time step. The GIL is released during execution for performance.
      • reset(_seed: int = -1, Eigen::MatrixXi _source_points_pos)
        • Reset the simulation state. If _seed is provided the RNG is seeded for reproducibility. -1 used for random seed.
        • If _source_points_pos is provided, source points will take chosen position, otherwise seed source points will be taken
      • get_normalized_density(gaussian: bool = True) -> numpy.ndarray
        • Return the normalized density matrix (optionally smoothed using a Gaussian kernel if gaussian=True).
    • Read-only attributes (accessible from Python):

      • source_points — coordinates of contamination sources (list/array).
      • contamination_position — array containing all the discrete particles positions (list/array).
      • density — raw hydrocarbon density matrix (not normalized).
      • x, y — spatial coordinate vectors associated with the grid.
      • u, v — velocity fields (x/y components) used by the simulation to simulate currents (array).
      • wind_speed — wind speed value or field used in the model (array(2)).

Notes:

  • For exact signatures and default values check src/utils/pywrap/pywrap.cpp.
  • Exposed structures (for example Eigen matrices) are converted to/from NumPy arrays via pybind11/eigen.h.

Tests

There is a small test script used by CI in src/tests/test.py (also referenced in pyproject.toml) accesible from github. Run it with:

python src/tests/test.py

Contributing

Contributions and bug reports are welcome. Please open issues or pull requests on the GitHub repository: https://github.com/AloePacci/cpp_oil_simulator

Authors

Alejandro Casado Pérez — acasado4@us.es

Acknowledgements: Samuel Yanes Luis (help and guidance).

License

This project is provided under the terms in LICENSE.

Project details


Download files

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

Source Distribution

oilspillsim-0.0.3.tar.gz (11.2 kB view details)

Uploaded Source

Built Distributions

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

oilspillsim-0.0.3-cp314-cp314t-win_amd64.whl (134.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

oilspillsim-0.0.3-cp314-cp314t-win32.whl (122.5 kB view details)

Uploaded CPython 3.14tWindows x86

oilspillsim-0.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

oilspillsim-0.0.3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (148.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

oilspillsim-0.0.3-cp314-cp314t-macosx_10_15_x86_64.whl (147.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

oilspillsim-0.0.3-cp314-cp314t-macosx_10_15_universal2.whl (280.3 kB view details)

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

oilspillsim-0.0.3-cp314-cp314-win_amd64.whl (125.9 kB view details)

Uploaded CPython 3.14Windows x86-64

oilspillsim-0.0.3-cp314-cp314-win32.whl (115.4 kB view details)

Uploaded CPython 3.14Windows x86

oilspillsim-0.0.3-cp314-cp314-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

oilspillsim-0.0.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (146.7 kB view details)

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

oilspillsim-0.0.3-cp314-cp314-macosx_10_15_x86_64.whl (142.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

oilspillsim-0.0.3-cp314-cp314-macosx_10_15_universal2.whl (268.5 kB view details)

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

oilspillsim-0.0.3-cp313-cp313-win_amd64.whl (122.8 kB view details)

Uploaded CPython 3.13Windows x86-64

oilspillsim-0.0.3-cp313-cp313-win32.whl (112.9 kB view details)

Uploaded CPython 3.13Windows x86

oilspillsim-0.0.3-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

oilspillsim-0.0.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (146.6 kB view details)

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

oilspillsim-0.0.3-cp313-cp313-macosx_10_13_x86_64.whl (142.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

oilspillsim-0.0.3-cp313-cp313-macosx_10_13_universal2.whl (267.9 kB view details)

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

oilspillsim-0.0.3-cp312-cp312-win_amd64.whl (122.8 kB view details)

Uploaded CPython 3.12Windows x86-64

oilspillsim-0.0.3-cp312-cp312-win32.whl (112.9 kB view details)

Uploaded CPython 3.12Windows x86

oilspillsim-0.0.3-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

oilspillsim-0.0.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (146.5 kB view details)

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

oilspillsim-0.0.3-cp312-cp312-macosx_10_13_x86_64.whl (142.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

oilspillsim-0.0.3-cp312-cp312-macosx_10_13_universal2.whl (267.9 kB view details)

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

oilspillsim-0.0.3-cp311-cp311-win_amd64.whl (122.1 kB view details)

Uploaded CPython 3.11Windows x86-64

oilspillsim-0.0.3-cp311-cp311-win32.whl (112.4 kB view details)

Uploaded CPython 3.11Windows x86

oilspillsim-0.0.3-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

oilspillsim-0.0.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (144.7 kB view details)

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

oilspillsim-0.0.3-cp311-cp311-macosx_10_9_x86_64.whl (140.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

oilspillsim-0.0.3-cp311-cp311-macosx_10_9_universal2.whl (265.3 kB view details)

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

oilspillsim-0.0.3-cp310-cp310-win_amd64.whl (121.3 kB view details)

Uploaded CPython 3.10Windows x86-64

oilspillsim-0.0.3-cp310-cp310-win32.whl (111.6 kB view details)

Uploaded CPython 3.10Windows x86

oilspillsim-0.0.3-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

oilspillsim-0.0.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (143.7 kB view details)

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

oilspillsim-0.0.3-cp310-cp310-macosx_10_9_x86_64.whl (138.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

oilspillsim-0.0.3-cp310-cp310-macosx_10_9_universal2.whl (262.8 kB view details)

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

oilspillsim-0.0.3-cp39-cp39-win_amd64.whl (122.4 kB view details)

Uploaded CPython 3.9Windows x86-64

oilspillsim-0.0.3-cp39-cp39-win32.whl (111.7 kB view details)

Uploaded CPython 3.9Windows x86

oilspillsim-0.0.3-cp39-cp39-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

oilspillsim-0.0.3-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (143.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

oilspillsim-0.0.3-cp39-cp39-macosx_10_9_x86_64.whl (139.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

oilspillsim-0.0.3-cp39-cp39-macosx_10_9_universal2.whl (263.1 kB view details)

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

oilspillsim-0.0.3-cp38-cp38-win_amd64.whl (121.2 kB view details)

Uploaded CPython 3.8Windows x86-64

oilspillsim-0.0.3-cp38-cp38-win32.whl (111.5 kB view details)

Uploaded CPython 3.8Windows x86

oilspillsim-0.0.3-cp38-cp38-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

oilspillsim-0.0.3-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (143.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

oilspillsim-0.0.3-cp38-cp38-macosx_10_9_x86_64.whl (138.5 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

oilspillsim-0.0.3-cp38-cp38-macosx_10_9_universal2.whl (262.3 kB view details)

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

File details

Details for the file oilspillsim-0.0.3.tar.gz.

File metadata

  • Download URL: oilspillsim-0.0.3.tar.gz
  • Upload date:
  • Size: 11.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for oilspillsim-0.0.3.tar.gz
Algorithm Hash digest
SHA256 ef2a51c3c34da1bf2ca5801eaad3668d01d187ed20a727a899d2a1b87773cde4
MD5 4b614ee1da12f848c7357a7e4ff90a06
BLAKE2b-256 26da35e06a50aa82cb95d5bf65734ff6077715fb3e0209ddb7f6db3310bad68f

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3.tar.gz:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for oilspillsim-0.0.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 b5e2bddb76a93928b4b1a600a88fd36f4063c3e086d10c1f7651751d3505df3b
MD5 5da9f9a1646e1ad7a0b1c1d3c8726e40
BLAKE2b-256 4948a23de791f338985de4b2a591e65915777a627114b659a17c0f93e23982eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp314-cp314t-win_amd64.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp314-cp314t-win32.whl.

File metadata

  • Download URL: oilspillsim-0.0.3-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 122.5 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for oilspillsim-0.0.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 661c1b95fb9b614f4e413edc83ea63b1d0c34d4314dcf9b537179f2f6f35ffc8
MD5 86abfcb96feb75a8fe0e11048f4345e2
BLAKE2b-256 84b16d3f1948789778fae50c2a26381a4717b019164df02c3ba46a06bb6b35be

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp314-cp314t-win32.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oilspillsim-0.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c01f5a27c9a6e6379975b3856d49ab4aa6ae13410bfa7f91774a14d9ba824c3d
MD5 17d0b83f597acddc87148a3156ea8a17
BLAKE2b-256 4ef4f963217197425d7cee9a2b5601f8dc6f2af32ff92ec485491521f1f0d13f

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for oilspillsim-0.0.3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 82e7e47439656a2a1f3eb572d9787a6490cae7cd0a697edfcdf22316fb173340
MD5 cb9c2a90781afc7912815593532e433b
BLAKE2b-256 c2194c82fadc7912189ad1a21b62fa7940b2fa3362b8c0f7cc427af251b4b835

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for oilspillsim-0.0.3-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5e08230bf0a4625173b6cea0eca85d8dd7d69a22370710723fba06c748f7e2e1
MD5 54ab9afe21ffcba547c47546a65902d1
BLAKE2b-256 244d8b969bec82847c7bf668b5b64fbf4cbb24122333b623de0f198be1ee78aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for oilspillsim-0.0.3-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 c3f5e875e6f4122f78d86fef1a50bdcd9a04811ea658427873a49f516efe30f6
MD5 fadd883d1969bc753f5d1472f8cef7e6
BLAKE2b-256 de9229cbb841a12f2214cbf13d0871e68a89eb8588b230d36e4a206a9f261cb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp314-cp314t-macosx_10_15_universal2.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: oilspillsim-0.0.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 125.9 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for oilspillsim-0.0.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f46c3cf3c34131b9259dea7cdcf1329ee9011a90479c95f75d4ec8ef393bb717
MD5 d5c9b27299720378b74243ad51029005
BLAKE2b-256 49c6d8cf07d1b60351402fca7f68c1e31db90dad1cbdd277b6fce24bfa39f3f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp314-cp314-win_amd64.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp314-cp314-win32.whl.

File metadata

  • Download URL: oilspillsim-0.0.3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 115.4 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for oilspillsim-0.0.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c2089303b00c2946a1672aed9230d83c6bd81279faf8ab9360a877340496406c
MD5 cc1e33c310af69b79fcb7c18e43b172d
BLAKE2b-256 ece201255695ae34709dd0d0c1d0ee4b1639f99a05e7a148dbd863a8fc285b47

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp314-cp314-win32.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oilspillsim-0.0.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed52810b4129432d3a60ea72ed0d5e51eebf0f6480ef2cfa1b27365a8ff13e0a
MD5 f46fc7e20d6164d192897da83add625e
BLAKE2b-256 db0c95355042cfffcc7603e8c25ddadd2e36738843b9dff057501c10e221b9fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for oilspillsim-0.0.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 796feacd6a2a347208dd1fb7e3684a45a1e9c642b6ff2d39495471cd84cf58b9
MD5 96e9f0ce84001f36a0c0422075ea4320
BLAKE2b-256 1ac16a99f2b00a3c6d6242c2785e8a06a084bd27ff74175f6f9a3c24d5e64961

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for oilspillsim-0.0.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4175748b50f16a5ca6906c00d33d4df4082c2eabe0d31fe2ee27796cdb301286
MD5 3fda021e24f0ef21984b9a9ccc8ea6a5
BLAKE2b-256 4f8958d6f406d6ada9893d11680f963fdbda907f47299b20de1304f172fdea85

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for oilspillsim-0.0.3-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 14f9af257f7d13c5b1eaf5f86dd4ded54edcdbb073f41ffce838bc0b2aaa5dae
MD5 58aa1a82de1c904c24759f3c65b931ee
BLAKE2b-256 bf9240040be7f2befe6d48321452ceb59e2c94133d2b9147c5ef5398be062558

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp314-cp314-macosx_10_15_universal2.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: oilspillsim-0.0.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 122.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for oilspillsim-0.0.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5476e7f0fea60ef86d7c1741c5d7f56ae5b0cb75a6c69b55c116acc06070f19c
MD5 da06246c87b20ceb51494f25b2c14070
BLAKE2b-256 75b868a1ae8d3c51fe4426cbb6ff1e4ff65933bbf56e2297b35eb7769a2df593

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp313-cp313-win32.whl.

File metadata

  • Download URL: oilspillsim-0.0.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 112.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for oilspillsim-0.0.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0f33d63a6aa2e1977a2544d8b0d2bb55b7bb42928a653e88b46f024c5aeabae0
MD5 730f3b2d4fea49ae17d9ea66e9004604
BLAKE2b-256 b6bd0fcc9a0984560e27465a8f68d708e18ac42fb4e77ba911fc8a97773bb6d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp313-cp313-win32.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oilspillsim-0.0.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 439bc1d222be8cb94f944c760beea92b3b380fcf36fd6401927bba95d274d224
MD5 19141b443c267f7f6c0e6f3e8b41e642
BLAKE2b-256 5130a67c43b2a28ccb23fb7476dd510ec86f28403c857c68fc78e565dc4416b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for oilspillsim-0.0.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6928b2f8026ac9dbc79f2795d8a39a65451c65763596a451ed8ae218c899f414
MD5 bce4ffccc9d1535ba1efe954fec610ec
BLAKE2b-256 91912242d1f639bf2f8d7a7c7ee6cacfcde291eec6ce09a92374ac908b13c9a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for oilspillsim-0.0.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 98bddba987c7a29170cede87ee5dc547aa792433b56b01b99e5fe19dd26d8c83
MD5 a0e12b9ce80f7bc73efe28ab2a064cd3
BLAKE2b-256 8262b0afc94875332f14ba7b0f44628843a7cd2e49bb46b9ef19245c1b5857d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for oilspillsim-0.0.3-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 b9f019af85736448b38336b1c022e0ec983858afb212e4558b0e34d400df6470
MD5 fc614e838af4aa5f63dfda8ae17a11c1
BLAKE2b-256 cec12d94db6f437d7ec92c5f25cb5188c598057df4ac57614b1ebec705576e51

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: oilspillsim-0.0.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 122.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for oilspillsim-0.0.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a7a3f7fe38094a48ceceeb035b80b4cc5033ddf044a2a72939676669009192fc
MD5 68bde96ed8a34138a27579d465a178ca
BLAKE2b-256 74aefa01207b76dc1def059cb7c6fb64a99c4575931653907f03b61cb5664f58

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp312-cp312-win32.whl.

File metadata

  • Download URL: oilspillsim-0.0.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 112.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for oilspillsim-0.0.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3f80a942618af92ed72b60c2d4f8fe603298627b267dfba1ca1c103028b2866f
MD5 b4d974cace25262ad4e0b787ed580b0c
BLAKE2b-256 c38452f0c56b1c642f7aed7550dc63ddcb3bb6d0cd52a3740a0ff17724a28175

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp312-cp312-win32.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oilspillsim-0.0.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 40953e1cc6d28b11e84637336f79b270a27cca7ae688cae8216ed3ba31986225
MD5 89cfc3212e09cbd275fa6c0d2d1c4769
BLAKE2b-256 b8ce6aaf0f6a002b125b43ca0d2575ebb2239b5593e68e151d51fa63b5b16585

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for oilspillsim-0.0.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 418315c189ec416eeca0959df805e334b613db7af48f19340f4274b0cf452889
MD5 a9f66a5dc4f9fdb4b813908380119a0c
BLAKE2b-256 bb3ec82e556c92677743a42e5fa44d1ccd50a8846a5d18b1679677dc86a67132

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for oilspillsim-0.0.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 513e316d2e38609d652797af383290ca7e7ee6c47b86359e744a61e4def9a510
MD5 2d778e41c057bd998671bc859342fc80
BLAKE2b-256 f39f79f7a0c1d766b7a9c2c8da62dadd6ba55b3caad036508596dc3148759cb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for oilspillsim-0.0.3-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 e4d27a8823131cf5c2fc4ac141818cdcd8fe7d7a75c6894c65d9d28f40309b6d
MD5 e615e4d32dec3ba33f53d61ae1002af2
BLAKE2b-256 1e9ba99ffac9808e0e04f0b898404c3386da6ab832c728d01a5ab0ad00c747f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: oilspillsim-0.0.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 122.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for oilspillsim-0.0.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 964d670ffe95a46c2eec034dbb495a62eb85731ee0d8bdadc064e4ee91588d50
MD5 ad80c58fa4ebb4af11826124d2d8663e
BLAKE2b-256 a59b61600dbc6ea30c93b5613b7867a5123a7f1f8d04c15f0457fbfa213e86e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp311-cp311-win32.whl.

File metadata

  • Download URL: oilspillsim-0.0.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 112.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for oilspillsim-0.0.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 93cba16d39d3d7d99ff3375895f32c743588ec3cdb35b61cd6762bf206c18c14
MD5 082e2693e3ee1e644e6f1de526897a9b
BLAKE2b-256 9350b6b0cff8aa36c2be8c8090373fcfff9b8bd29e99a30047f0ffd466b208f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp311-cp311-win32.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oilspillsim-0.0.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a342f5328a83b2227a34e1a04975d76d17ed3b4491204ae438fa2941d065a47
MD5 c19503495f70a12a93ae20860b04b9aa
BLAKE2b-256 ebd543de4b82c7bed1492e8a24a99a07e6aab099667f7d3df5f9c4d6e0c6fa32

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for oilspillsim-0.0.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d4349cddb3800a815f6065537742a3a99dd1b391060690b779ebcb99889e4a7d
MD5 8217e5b8b47c8222ca4d9f59cbecd9eb
BLAKE2b-256 16fb3d81dd65a3398cff69398728f7849a94ea11736eca94c919751af1244021

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for oilspillsim-0.0.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 99472bc194540b54485dbb424172dde495588d12874883b6ef50db2f4540b6d1
MD5 caf81c8434fd9aa1293d28e75c7ac653
BLAKE2b-256 365b52d94af435937b17b8ac868e31199008193284936b6d916017ba70b87c38

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for oilspillsim-0.0.3-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bd2e3bde94bd95a8b7fc66643489f9d3df26cfd4598edde120683b94ce4e0464
MD5 a74b3bcb173bdef201a0cf87c2ad1d40
BLAKE2b-256 4e32223ea46d154116d71584b7772755a551a534065ac4ea33bfefb90491f5a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: oilspillsim-0.0.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 121.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for oilspillsim-0.0.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9b7af578f773f8ea03f7c45499bd84dfe0dd2c02834ef02fcb8814a0df49c521
MD5 a5817cefb2a52b1cb85308bb3cce6ee3
BLAKE2b-256 2453db13f20f8959e4a991a7c91931e3d7579fc2d65f53200f6176487ffbe870

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp310-cp310-win32.whl.

File metadata

  • Download URL: oilspillsim-0.0.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 111.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for oilspillsim-0.0.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b79eafdddd76b5a9f6d837176f8ffc0a09543dec845facab435f995ad9070c93
MD5 cc2b63f50e9e19d20a357cc3d8b9ab1f
BLAKE2b-256 2643341f0c1df29e93a24dbd145ce7f7eb687025d39cff0232597e92f67e65aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp310-cp310-win32.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oilspillsim-0.0.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 80c7384fbb710cd92d7b6d3953c6387cb9cd4d6ceee20e3b9bcc29b3ded24a6a
MD5 a0088c46f606e7136ec51602b0d11516
BLAKE2b-256 14561898325ff763321cd494fe8b507f3eb343fe466aa3938139f2026eaf18d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for oilspillsim-0.0.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1811c2a7e9894546d11694c29bc77e42dcd09f50dcc1a65d57deaf1788911301
MD5 b768332d8bfc7884e01ea82fac3da2f8
BLAKE2b-256 d7b559cc2f87e47ae65a528b118b9053e452dd8ee00f560f6c600f472f4ac467

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for oilspillsim-0.0.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 34b202ea580dde3bc57603f5ab3edaff16baa7eb875388853812414042216cd7
MD5 fd75924461742e9f017d66c8b8f3e312
BLAKE2b-256 5478477eecc2ff73a71ac86633eda8ed13db56381f034b16484a920e7bdebf79

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for oilspillsim-0.0.3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ef9b88e71a421270703d29f23cbd154696d5ee244099b1dee48560f3afec574f
MD5 8d8733f827ab043cd0a4edd1d1bcc2d2
BLAKE2b-256 f0d4d6c8e6d6835b2e2af1fcd35e0fec166f4da1660873318a6c93a04ddc9545

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: oilspillsim-0.0.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 122.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for oilspillsim-0.0.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c98ce9e62dba01933e37d3d8f06b77b66a02b6b5666bbfa57237526ad5d34919
MD5 d7c83f3d20d8dd3377e2b28576a7f17f
BLAKE2b-256 d1af9b1a3fe3922f1e89c891db98f7da8a0b6fd0b83b8a32daf171cda838d26f

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp39-cp39-win_amd64.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp39-cp39-win32.whl.

File metadata

  • Download URL: oilspillsim-0.0.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 111.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for oilspillsim-0.0.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 90bcb84f7b072c211dc280ce2680bf34ff2b66982653255669d6c727b9e5c183
MD5 90c2e55d74e02181377636a43f4554d5
BLAKE2b-256 30da170287ea6976b2cf46ebd020b285f4d1a9d49ff60bafe92e5472a8b97cef

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp39-cp39-win32.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oilspillsim-0.0.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f3d1ffaaa6852ec2373f2f792c664b3f07691003bdca6b889579465041d7359
MD5 9f1cb127ea8fb03bde5c1fe24f48b998
BLAKE2b-256 bf1f8178744ef633d2d524ec32bb5fd7fd063cdeaff244906c9d1d4a2cd87d1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for oilspillsim-0.0.3-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 abc2d09157f1e9600008628982bf8991bf917bd7ead79aa6d969627edc201606
MD5 fc1436730d3cea2d7770722e0160d46e
BLAKE2b-256 3ae8523075987295a5fa225625910fdbbb2fae77be46d6052fd1f3c4dc3d91cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for oilspillsim-0.0.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 72aa27f393ca327e2245ce637cc4b2d3f063a4c0f26a37999e6e13358195f751
MD5 b089ccf2c22bb668ce634f71f5d2ce0e
BLAKE2b-256 973da262ff8ce65ebdeb85bf1a63a9b26dbdb39e0978ecf7ed274c1c84332534

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for oilspillsim-0.0.3-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b5fc2ed9217caa5d41e1bc128c2ba149f340ccd5f1613ff27602e51ff22f340a
MD5 dfd0cba66b022722843b2ba780dbccb5
BLAKE2b-256 308c2dcf4f6306643807744ed99c37744f7580aee69098e73800eb920c569234

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp39-cp39-macosx_10_9_universal2.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: oilspillsim-0.0.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 121.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for oilspillsim-0.0.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d2a5aeca95b5a784fae5891917dae81ede9aa5fb588ee1e18c200127d5b2a242
MD5 b425c3b5f47cf0e15599f11da8a6efe3
BLAKE2b-256 4e9ebf7175868b6a9501eb28a8cd9ef51c132145db266ea46cfa78de2e8ac361

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp38-cp38-win_amd64.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp38-cp38-win32.whl.

File metadata

  • Download URL: oilspillsim-0.0.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 111.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for oilspillsim-0.0.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 16a792a941f2d396401a126d9aadfe311d9783ea9be96a5c9a5e5bd241d4a6ac
MD5 2962db14c51bf91723555f789e97a2cb
BLAKE2b-256 3a13c53fc3fe28b1057949a72cf27db55d5ccaf36b21cdac7c9f45f98f880f24

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp38-cp38-win32.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for oilspillsim-0.0.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9320f2a18f353086643a7fb2cde1e1f195281a148313126f2b42eae54dac5169
MD5 ee3dad3585d76f1f39a75ea28e1a66ad
BLAKE2b-256 5fbb002066b55a546fa71ae57d2ff313bafaa2cdedb6fa8093edf02fc5de0d1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for oilspillsim-0.0.3-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 755659a3f44028dc48c3b953944e107dd17643eca61048ba469b3156de2f40c9
MD5 940d1603045e52ea53102cc45a15a848
BLAKE2b-256 d4bd71877ef34c599ae65cd4163764b2d19eaf6357fc88de55bf0fc7094cee64

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for oilspillsim-0.0.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ea436f5348f78e3d7285cc8809e1c3f6b244e612a14fd010e290c80149a31060
MD5 faef44570023aed23ed135ae5c47c976
BLAKE2b-256 79160643a4bfd9336f2ce0f0e6a2f01095a3be0d27f5536238ed973eaadfb979

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

File details

Details for the file oilspillsim-0.0.3-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for oilspillsim-0.0.3-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 fdd55e36af86844fef326c0345cc686ea7b8661aa902ae9330b1fb5ae2ff0f9c
MD5 782e417c16caa1c193bc502ba1a931d2
BLAKE2b-256 1977315004adfc54d2296e05c31da05fc55255541e13ac11b0cc20baf6ae3a3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for oilspillsim-0.0.3-cp38-cp38-macosx_10_9_universal2.whl:

Publisher: wheels.yml on AloePacci/cpp_oil_simulator

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page