Skip to main content

StratigraPy

StratigraPy is a Python package for stratigraphic modeling based on Landlab. Similarly to Landlab, StratigraPy favors flexibility for prototyping and teaching rather than speed.

StratigraPy is still experimental and under heavy development.

Basin simulation

Installation

You can directly install StratigraPy from pip:

pip install stratigrapy

Or from GitHub using pip:

pip install git+https://github.com/grongier/stratigrapy.git

To run the Jupyter notebook in examples you will also need tqdm, cmocean, pyvista, trame, trame-vtk, trame-vuetify, and jupyter, which you can install from pip too:

pip install tqdm cmocean pyvista trame trame-vtk trame-vuetify jupyter

You can also install everything using conda and the environment.yml file included in this repository:

conda env create -f environment.yml

Usage

StratigraPy follows Landlab's API and you can check Landlab's extensive documentation to get an idea of its features. Here's a very basic example of setting up and running a model:

import numpy as np
import matplotlib.pyplot as plt
from stratigrapy import RasterModelGrid
from stratigrapy.components import GravityDrivenRouter

# Create the grid with two sediment classes
grid = RasterModelGrid((50, 50),
                       xy_spacing=(500., 500.),
                       number_of_classes=2,
                       number_of_layers_to_fuse=20,
                       number_of_top_layers=20)
grid.set_closed_boundaries_at_grid_edges(True, True, True, False)

# Define the initial topography
elevation = grid.add_zeros('topographic__elevation', at='node', clobber=True)
elevation[grid.y_of_node > 15000.] = 100.

# Define the bathymetry
bathymetry = grid.add_zeros('bathymetric__depth', at='node', clobber=True)

# Define a diffusion component
gdr = GravityDrivenRouter(grid, diffusivity_cont=[2e-1, 2e-2])

# Run the simulation
for i in range(1000):
    gdr.run_one_step(100.)
    grid.stacked_layers.fuse(time=np.mean)
grid.stacked_layers.fuse(finalize=True, time=np.mean)

# Plot a slice through the domain with sediments and bedrock
fig, ax = plt.subplots(figsize=(8, 4))
pc = grid.plot_layers(ax, 'composition', i_class=1, mask_wedges=True, cmap='pink', zorder=2)
fig.colorbar(pc, ax=ax, label='Fraction of the second sediment class')
raster_y = grid.y_of_node[grid.core_nodes].reshape(grid.cell_grid_shape)[:, 24]
raster_z = grid.at_node['topographic__elevation'][grid.core_nodes].reshape(grid.cell_grid_shape)[:, 24]
ymin, ymax = ax.get_ylim()
ax.fill_between(raster_y, raster_z, ymin, color='#d9d9d9', zorder=1)
ax.set(xlabel='y (m)', ylabel='z (m)', ylim=(ymin, ymax));

You can find more complete examples in the folder examples.

Citation

If you use StratigraPy in your research, please cite the original article(s) describing the method(s) you used (see the docstrings for the references). An acknowledgment of StratigraPy's use is always appreciated.

Credits

This software was written by:

Guillaume Rongier
ORCID Badge

License

Copyright notice: Technische Universiteit Delft hereby disclaims all copyright interest in the program StratigraPy written by the Author(s). Prof.dr.ir. S.G.J. Aarninkhof, Dean of the Faculty of Civil Engineering and Geosciences

© 2025-2026, Guillaume Rongier

This work is licensed under a MIT OSS licence, see LICENSE for more information.

Release files for stratigrapy 0.0.4

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for stratigrapy 0.0.4
File Size Uploaded
stratigrapy-0.0.4.tar.gz 72.7 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for stratigrapy 0.0.4
File
stratigrapy-0.0.4-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
stratigrapy-0.0.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
stratigrapy-0.0.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
stratigrapy-0.0.4-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
stratigrapy-0.0.4-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
stratigrapy-0.0.4-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
stratigrapy-0.0.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
stratigrapy-0.0.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
stratigrapy-0.0.4-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
stratigrapy-0.0.4-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
stratigrapy-0.0.4-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
stratigrapy-0.0.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
stratigrapy-0.0.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
stratigrapy-0.0.4-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
stratigrapy-0.0.4-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
stratigrapy-0.0.4-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
stratigrapy-0.0.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
stratigrapy-0.0.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
stratigrapy-0.0.4-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
stratigrapy-0.0.4-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details

Total release size: 49.4 MB

Release files / stratigrapy-0.0.4.tar.gz

Download URL stratigrapy-0.0.4.tar.gz
Size 72.7 kB
Tags Source
SHA-256 checksum
How to use checksums
2d70f644493435fc66d557a983f6e0062147a03d7bc1c9ec22691de2cb289fb2
BLAKE2b-256 checksum
How to use checksums
f4a768898ff40144dac0938a02f4f2fb46f4f060274c83bc7fe8ae460cd72f2f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / stratigrapy-0.0.4-cp314-cp314-win_amd64.whl

Download URL stratigrapy-0.0.4-cp314-cp314-win_amd64.whl
Size 780.1 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
fb331d219a85205d0797296738b1c564c832cbe56e59e9d0bc391a47ddc9f8b6
BLAKE2b-256 checksum
How to use checksums
606a6a0418fe9e92996b1b1633fd0a6e7bef2777b5d95c90b39afb062e2af7df
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / stratigrapy-0.0.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL stratigrapy-0.0.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 4.9 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
95940f72c1efceb42b424dcfe5b0ab77920e19b25d04d75e2ac5fb21a84d25d2
BLAKE2b-256 checksum
How to use checksums
44d8b1804bfec7a942cf29b486f1c2c12a0ec27d953fc8add73ae9e4af44def3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / stratigrapy-0.0.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL stratigrapy-0.0.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 4.9 MB
Tags CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
bf0a571cada0ab5a5832f8f4b5e8c546d9ace9c4d66d86f891a908a9c6bbf524
BLAKE2b-256 checksum
How to use checksums
cfed971eb5e4ce2ddcdcfb5951b42cdb43fa6f4729f8eb171ed8341cc95f3856
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / stratigrapy-0.0.4-cp314-cp314-macosx_11_0_arm64.whl

Download URL stratigrapy-0.0.4-cp314-cp314-macosx_11_0_arm64.whl
Size 764.8 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
7f7ab8d64a406b40ebf10dd7db27ba1b7e25dca30ca9c3fe3eb3dac0cdb1090d
BLAKE2b-256 checksum
How to use checksums
6c1197a0ab62149c33ae49e766721fe16d9cb634875d85860c80f35923dbb2e6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / stratigrapy-0.0.4-cp314-cp314-macosx_10_15_x86_64.whl

Download URL stratigrapy-0.0.4-cp314-cp314-macosx_10_15_x86_64.whl
Size 881.5 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
2af4c483fb16ce20eb691fe3f8c594d8761dbc2b977ac7b93ad970e43dc8682c
BLAKE2b-256 checksum
How to use checksums
1c1c5b298810a400e66c9c53fc4cbe111c3a216d54e4151553df0728f1012371
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / stratigrapy-0.0.4-cp313-cp313-win_amd64.whl

Download URL stratigrapy-0.0.4-cp313-cp313-win_amd64.whl
Size 758.2 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
f1a4c06dcddebb943a569bc9b1545726437adfd8f4199af2fde7add6043a7d34
BLAKE2b-256 checksum
How to use checksums
f17419b0abe2e033b79aaee763b49daa5156e20eadf4dd7a479ecfe740c2f467
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / stratigrapy-0.0.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL stratigrapy-0.0.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 5.0 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
6ee4ddd9f0127ec548b6625996d6ec52a46c34df6cfd3b96f89c4281b751891e
BLAKE2b-256 checksum
How to use checksums
0a5b5184ba7a0a96f0358e045412273a2bf8fafdb22d66ace3118d8c837cb02a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / stratigrapy-0.0.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL stratigrapy-0.0.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 5.0 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
4c63d1ec2099a49646e0bb44593265a337edbc13f8385bd609ef3f61992447b7
BLAKE2b-256 checksum
How to use checksums
64f287409fdd8111215baec55cb35525c3feb9ded4a17e2245283f746e253dc5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / stratigrapy-0.0.4-cp313-cp313-macosx_11_0_arm64.whl

Download URL stratigrapy-0.0.4-cp313-cp313-macosx_11_0_arm64.whl
Size 759.1 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ecc752fcf58b301be1fd32943fcac11a1649fa2cb4ffc227662ff2031844f4b5
BLAKE2b-256 checksum
How to use checksums
53f6caa17633f03cdcfaa65f67e19b5d416145c812946556daa6e5da5a176d54
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / stratigrapy-0.0.4-cp313-cp313-macosx_10_13_x86_64.whl

Download URL stratigrapy-0.0.4-cp313-cp313-macosx_10_13_x86_64.whl
Size 880.2 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
3dd8ccee8f660d7a3997f759b7758fa6fd9b98089ed4144ca1ea5def67a78123
BLAKE2b-256 checksum
How to use checksums
1d663bf8b311e2e5b2ce274419d9d71dcc5318ebd34e63e51e462b07ac34d5f1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / stratigrapy-0.0.4-cp312-cp312-win_amd64.whl

Download URL stratigrapy-0.0.4-cp312-cp312-win_amd64.whl
Size 760.7 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
69626ddb0f5db97a3435c2e6a0eaf1c5fadc316013bceace61b91137c5df2e27
BLAKE2b-256 checksum
How to use checksums
22bcd8590ca2fe6081dc5a3f5ee03adf97eacd8c1b021ddb3d99914887af53be
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / stratigrapy-0.0.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL stratigrapy-0.0.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 5.1 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
64015fe356e570a6a29cb96d4c79c70074ee4917b2f6a9314ec7148be2633554
BLAKE2b-256 checksum
How to use checksums
c903560a1e223e10a0d5b07a78c03edda4d96e763628db4a4b4482d675f77029
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / stratigrapy-0.0.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL stratigrapy-0.0.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 5.0 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
346a9194e4388326858c0b075a613e8ae076a5da57a66c993893e09287e13f7b
BLAKE2b-256 checksum
How to use checksums
cac9eb3ca6fec83b3e558f022f3f4e2d293a2b897c3eb0726b733d16ffbd65d7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / stratigrapy-0.0.4-cp312-cp312-macosx_11_0_arm64.whl

Download URL stratigrapy-0.0.4-cp312-cp312-macosx_11_0_arm64.whl
Size 763.8 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
8b8d6f28c443132969973ae22d03a49e066d1dc2390fcdfde089b94387cdefdf
BLAKE2b-256 checksum
How to use checksums
61b47bd9ac19ec6f773d378a1faacb4c8ff169fa03ea4e878e846a583688939c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / stratigrapy-0.0.4-cp312-cp312-macosx_10_13_x86_64.whl

Download URL stratigrapy-0.0.4-cp312-cp312-macosx_10_13_x86_64.whl
Size 884.8 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
fa656e9293153ff2d19fb0dc3a34a516fa0baad973f32379681d53f4e9eeca28
BLAKE2b-256 checksum
How to use checksums
442b80d126ce2bf2ba634e9842979645818ee4d3c6e94fad3e799f77210bda47
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / stratigrapy-0.0.4-cp311-cp311-win_amd64.whl

Download URL stratigrapy-0.0.4-cp311-cp311-win_amd64.whl
Size 745.4 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
37d531054859f875a829983b8ddbadedd77f5de76fe4fe90d4b497e683e30f77
BLAKE2b-256 checksum
How to use checksums
643140a0ce6ae6cf851b4a3dac366ac82410241f57b80e4837dd70486a7fc4bb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / stratigrapy-0.0.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL stratigrapy-0.0.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 4.9 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
31cd3e583436a3ec541b8db492816ea322ab0ca0028dff331d1c298b72b07562
BLAKE2b-256 checksum
How to use checksums
bff222abb23eefb5124dabf1efe20e891cf23243c9cc7b8ec63f4e4a9d472c06
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / stratigrapy-0.0.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL stratigrapy-0.0.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 4.9 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
75ce3cb6dbbc17525652ac74ccef7cbff8cb3366b7f2473393678d92bfb20249
BLAKE2b-256 checksum
How to use checksums
74b9b6de1b208e8689587b025d6cf77d37880c98839b715393065fe9c2e71923
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / stratigrapy-0.0.4-cp311-cp311-macosx_11_0_arm64.whl

Download URL stratigrapy-0.0.4-cp311-cp311-macosx_11_0_arm64.whl
Size 756.1 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
faf9d16d64f7e369401ab8b254c1a5d3b49a6e830e2dc6f7be99c1f68e1714b6
BLAKE2b-256 checksum
How to use checksums
71f6c61f4461fd34c4712a860b465ef9b1e8929cbb0139294edb5045eaf9f1e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / stratigrapy-0.0.4-cp311-cp311-macosx_10_9_x86_64.whl

Download URL stratigrapy-0.0.4-cp311-cp311-macosx_10_9_x86_64.whl
Size 865.5 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
be73b3c77357c73fd8ef2d78ede63c90dc463578aa3ae8ad1eea13cb51eeb814
BLAKE2b-256 checksum
How to use checksums
53867c487df354cc0fdaff4205154a0298b37491c1ef4ab2ecfb7d3f8a58284c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.0.4 This release

21 release files

0.0.3

21 release 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