Oversee your lakehouse
Project description
๐ผ Laketower
Oversee your lakehouse
Utility application to explore and manage tables in your data lakehouse, especially tailored for data pipelines local development.
Features
- Delta Lake table format support
- Remote tables support (S3, ADLS)
- Inspect table metadata
- Inspect table schema
- Inspect table history
- Get table statistics
- Import data into a table from CSV files
- View table content with a simple query builder
- Query all registered tables with DuckDB SQL dialect
- Execute saved queries
- Export query results to CSV files
- Static and versionable YAML configuration
- Web application
- CLI application
Installation
Using pip (or any other Python package manager):
pip install laketower
Using uvx:
uvx laketower
Usage
Configuration
Laketower configuration is based on a static YAML configuration file allowing to:
- List all tables to be registered
Format:
settings:
max_query_rows: 1000
web:
hide_tables: false
tables:
- name: <table_name>
uri: <local path to table>
format: {delta}
queries:
- name: <query_name>
title: <Query name>
description: <Query description>
totals_row: true
parameters:
<param_name_1>:
default: <default_value>
sql: <sql expression>
Current limitations:
tables.uri:- Local paths are supported (
./path/to/table,/abs/path/to/table,file:///abs/path/to/table) - Remote paths to S3 (
s3://<bucket>/<path>) and ADLS (abfss://<container>/<path>)
- Local paths are supported (
tables.format: onlydeltais allowed
Example from the provided demo:
tables:
- name: sample_table
uri: demo/sample_table
format: delta
- name: weather
uri: demo/weather
format: delta
queries:
- name: all_data
title: All data
sql: |
select
sample_table.*,
weather.*
from
sample_table,
weather
limit 10
- name: daily_avg_temperature
title: Daily average temperature
sql: |
select
date_trunc('day', time) as day,
round(avg(temperature_2m)) as avg_temperature
from
weather
group by
day
order by
day asc
Support for environment variables substitution is also supported within the YAML
configuration using a object containing a single key env with the name of the
environment variable to be injected. The value of the variable can contain JSON
and will be decoded in a best effort manner (default to string value). For instance:
# export TABLE_URI=path/to/table
tables:
- name: sample_table
uri:
env: TABLE_URI
format: delta
Remote S3 Tables
Configuring S3 tables (AWS, MinIO, Cloudflare R2):
tables:
- name: delta_table_s3
uri: s3://<bucket>/path/to/table
format: delta
connection:
s3:
s3_access_key_id: access-key-id
s3_secret_access_key: secret-access-key
s3_region: s3-region
s3_endpoint_url: http://s3.domain.com
s3_allow_http: false
Depending on your object storage location and configuration, one might have to
set part or all the available connection.s3 parameters. The only required ones
are s3_access_key_id and s3_secret_access_key.
Also as a security best practice, it is best not to write secrets directly in static configuration files, so one can use environment variables to all dynamic substitution, e.g.
tables:
- name: delta_table_s3
uri: s3://<bucket>/path/to/table
format: delta
connection:
s3:
s3_access_key_id: access-key-id
s3_secret_access_key:
env: S3_SECRET_ACCESS_KEY
s3_region: s3-region
s3_endpoint_url: http://s3.domain.com
s3_allow_http: false
Remote ADLS Tables
Configuring Azure ADLS tables:
tables:
- name: delta_table_adls
uri: abfss://<container>/path/to/table
format: delta
connection:
adls:
adls_account_name: adls-account-name
adls_access_key: adls-access-key
adls_sas_key: adls-sas-key
adls_tenant_id: adls-tenant-id
adls_client_id: adls-client-id
adls_client_secret: adls-client-secret
azure_msi_endpoint: https://msi.azure.com
use_azure_cli: false
Depending on your object storage location and configuration, one might have to
set part or all the available connection.adls parameters. The only required one
is adls_account_name.
Also as a security best practice, it is best not to write secrets directly in static configuration files, so one can use environment variables to all dynamic substitution, e.g.
tables:
- name: delta_table_adls
uri: abfss://<container>/path/to/table
format: delta
connection:
adls:
adls_account_name: adls-account-name
adls_access_key:
env: ADLS_ACCESS_KEY
Web Application
The easiest way to get started is to launch the Laketower web application:
$ laketower -c demo/laketower.yml web
By default, the web application will run on host 127.0.0.1 and port 8000.
If some custom setup is required (especially for cloud deployment), this configuration
can be customized at runtime:
$ laketower -c demo/laketower.yml web --host 0.0.0.0 --port 5000
Screenshots
CLI
Laketower provides a CLI interface:
$ laketower --help
usage: laketower [-h] [--version] [--config CONFIG] {web,config,tables,queries} ...
options:
-h, --help show this help message and exit
--version show program's version number and exit
--config, -c CONFIG Path to the Laketower YAML configuration file (default: laketower.yml)
commands:
{web,config,tables,queries}
web Launch the web application
config Work with configuration
tables Work with tables
queries Work with queries
By default, a YAML configuration file named laketower.yml will be looked for.
A custom path can be specified with the -c / --config argument.
Validate YAML configuration
$ laketower -c demo/laketower.yml config validate
โญโโโโโโโโโโโโโโโโโโโโโโโโโฎ
โ Configuration is valid โ
โฐโโโโโโโโโโโโโโโโโโโโโโโโโฏ
Config(
tables=[
ConfigTable(name='sample_table', uri='demo/sample_table', table_format=<TableFormats.delta: 'delta'>),
ConfigTable(name='weather', uri='demo/weather', table_format=<TableFormats.delta: 'delta'>)
]
)
List all registered tables
$ laketower -c demo/laketower.yml tables list
tables
โโโ sample_table
โ โโโ format: delta
โ โโโ uri: demo/sample_table
โโโ weather
โโโ format: delta
โโโ uri: demo/weather
Display a given table metadata
$ laketower -c demo/laketower.yml tables metadata sample_table
sample_table
โโโ name: Demo table
โโโ description: A sample demo Delta table
โโโ format: delta
โโโ uri: /Users/romain/Documents/dev/datalpia/laketower/demo/sample_table/
โโโ id: c1cb1cf0-1f3f-47b5-a660-3cc800edd341
โโโ version: 3
โโโ created at: 2025-02-05 22:27:39.579000+00:00
โโโ partitions:
โโโ configuration: {}
Display a given table schema
$ laketower -c demo/laketower.yml tables schema weather
weather
โโโ time: timestamp[us, tz=UTC]
โโโ city: string
โโโ temperature_2m: float
โโโ relative_humidity_2m: float
โโโ wind_speed_10m: float
Display a given table history
$ uv run laketower -c demo/laketower.yml tables history weather
weather
โโโ version: 2
โ โโโ timestamp: 2025-02-05 22:27:46.425000+00:00
โ โโโ client version: delta-rs.0.23.1
โ โโโ operation: WRITE
โ โโโ operation parameters
โ โ โโโ mode: Append
โ โโโ operation metrics
โ โโโ execution_time_ms: 4
โ โโโ num_added_files: 1
โ โโโ num_added_rows: 168
โ โโโ num_partitions: 0
โ โโโ num_removed_files: 0
โโโ version: 1
โ โโโ timestamp: 2025-02-05 22:27:45.666000+00:00
โ โโโ client version: delta-rs.0.23.1
โ โโโ operation: WRITE
โ โโโ operation parameters
โ โ โโโ mode: Append
โ โโโ operation metrics
โ โโโ execution_time_ms: 4
โ โโโ num_added_files: 1
โ โโโ num_added_rows: 408
โ โโโ num_partitions: 0
โ โโโ num_removed_files: 0
โโโ version: 0
โโโ timestamp: 2025-02-05 22:27:39.722000+00:00
โโโ client version: delta-rs.0.23.1
โโโ operation: CREATE TABLE
โโโ operation parameters
โ โโโ metadata: {"configuration":{},"createdTime":1738794459722,"description":"Historical and forecast weather data from
โ โ open-meteo.com","format":{"options":{},"provider":"parquet"},"id":"a9615fb1-25cc-4546-a0fe-1cb534c514b2","name":"Weather","partitionCol
โ โ umns":[],"schemaString":"{\"type\":\"struct\",\"fields\":[{\"name\":\"time\",\"type\":\"timestamp\",\"nullable\":true,\"metadata\":{}},
โ โ {\"name\":\"city\",\"type\":\"string\",\"nullable\":true,\"metadata\":{}},{\"name\":\"temperature_2m\",\"type\":\"float\",\"nullable\":
โ โ true,\"metadata\":{}},{\"name\":\"relative_humidity_2m\",\"type\":\"float\",\"nullable\":true,\"metadata\":{}},{\"name\":\"wind_speed_1
โ โ 0m\",\"type\":\"float\",\"nullable\":true,\"metadata\":{}}]}"}
โ โโโ protocol: {"minReaderVersion":1,"minWriterVersion":2}
โ โโโ mode: ErrorIfExists
โ โโโ location: file:///Users/romain/Documents/dev/datalpia/laketower/demo/weather
โโโ operation metrics
Get statistics of a given table
Get basic statistics on all columns of a given table:
$ laketower -c demo/laketower.yml tables statistics weather
โโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโโโโโ
โ column_name โ count โ avg โ std โ min โ max โ
โกโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฉ
โ time โ 576 โ None โ None โ 2025-01-26 01:00:00+01 โ 2025-02-12 00:00:00+01 โ
โ city โ 576 โ None โ None โ Grenoble โ Grenoble โ
โ temperature_2m โ 576 โ 5.2623263956047595 โ 3.326529069892729 โ 0.0 โ 15.1 โ
โ relative_humidity_2m โ 576 โ 78.76909722222223 โ 15.701802163559918 โ 29.0 โ 100.0 โ
โ wind_speed_10m โ 576 โ 7.535763886032833 โ 10.00898058743763 โ 0.0 โ 42.4 โ
โโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโ
Specifying a table version yields according results:
$ laketower -c demo/laketower.yml tables statistics --version 0 weather
โโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโณโโโโโโโณโโโโโโโณโโโโโโโณโโโโโโโ
โ column_name โ count โ avg โ std โ min โ max โ
โกโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฉ
โ time โ 0 โ None โ None โ None โ None โ
โ city โ 0 โ None โ None โ None โ None โ
โ temperature_2m โ 0 โ None โ None โ None โ None โ
โ relative_humidity_2m โ 0 โ None โ None โ None โ None โ
โ wind_speed_10m โ 0 โ None โ None โ None โ None โ
โโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโดโโโโโโโดโโโโโโโดโโโโโโโดโโโโโโโ
Import data into a given table
Import a CSV dataset into a table in append mode:
$ laketower -c demo/laketower.yml tables import weather --file data.csv --mode append --format csv --delimiter ',' --encoding 'utf-8'
--mode argument can be one of:
append: append rows to the table (default)overwrite: replace all rows with the ones from the input file
--format argument can be one of:
csv: CSV file format (default)
--delimiter argument can be:
- Any single character (only valid for CSV file format)
- Default is comma (
',')
--encoding argument can be:
- Any standard Python encoding,
- Default is
'utf-8'
View a given table
Using a simple query builder, the content of a table can be displayed. Optional arguments:
--cols <col1> <col2>: select which columns to display--sort-asc <col>: sort by a column name in ascending order--sort-desc <col>: sort by a column name in descending order--limit <num>(default 10): limit the number of rows--version: time-travel to table revision number
$ laketower -c demo/laketower.yml tables view weather
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโ
โ time โ city โ temperature_2m โ relative_humidity_2m โ wind_speed_10m โ
โกโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฉ
โ 2025-02-05 01:00:00+01:00 โ Grenoble โ 2.0 โ 84.0 โ 4.0 โ
โ 2025-02-05 02:00:00+01:00 โ Grenoble โ 2.0999999046325684 โ 83.0 โ 1.5 โ
โ 2025-02-05 03:00:00+01:00 โ Grenoble โ 1.600000023841858 โ 86.0 โ 1.100000023841858 โ
โ 2025-02-05 04:00:00+01:00 โ Grenoble โ 1.899999976158142 โ 80.0 โ 4.199999809265137 โ
โ 2025-02-05 05:00:00+01:00 โ Grenoble โ 1.899999976158142 โ 81.0 โ 3.299999952316284 โ
โ 2025-02-05 06:00:00+01:00 โ Grenoble โ 1.399999976158142 โ 88.0 โ 4.300000190734863 โ
โ 2025-02-05 07:00:00+01:00 โ Grenoble โ 1.7000000476837158 โ 87.0 โ 5.5 โ
โ 2025-02-05 08:00:00+01:00 โ Grenoble โ 1.5 โ 82.0 โ 4.699999809265137 โ
โ 2025-02-05 09:00:00+01:00 โ Grenoble โ 1.899999976158142 โ 80.0 โ 2.200000047683716 โ
โ 2025-02-05 10:00:00+01:00 โ Grenoble โ 2.9000000953674316 โ 80.0 โ 0.800000011920929 โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโ
$ laketower -c demo/laketower.yml tables view weather --cols time city temperature_2m --limit 5 --sort-desc time
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโ
โ time โ city โ temperature_2m โ
โกโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฉ
โ 2025-02-12 00:00:00+01:00 โ Grenoble โ 5.099999904632568 โ
โ 2025-02-12 00:00:00+01:00 โ Grenoble โ 5.099999904632568 โ
โ 2025-02-11 23:00:00+01:00 โ Grenoble โ 4.900000095367432 โ
โ 2025-02-11 23:00:00+01:00 โ Grenoble โ 4.900000095367432 โ
โ 2025-02-11 22:00:00+01:00 โ Grenoble โ 4.900000095367432 โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโ
$ laketower -c demo/laketower.yml tables view weather --version 1
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโ
โ time โ city โ temperature_2m โ relative_humidity_2m โ wind_speed_10m โ
โกโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฉ
โ 2025-01-26 01:00:00+01:00 โ Grenoble โ 7.0 โ 87.0 โ 8.899999618530273 โ
โ 2025-01-26 02:00:00+01:00 โ Grenoble โ 6.099999904632568 โ 87.0 โ 6.199999809265137 โ
โ 2025-01-26 03:00:00+01:00 โ Grenoble โ 6.0 โ 86.0 โ 2.700000047683716 โ
โ 2025-01-26 04:00:00+01:00 โ Grenoble โ 6.099999904632568 โ 82.0 โ 3.0999999046325684 โ
โ 2025-01-26 05:00:00+01:00 โ Grenoble โ 5.5 โ 87.0 โ 3.299999952316284 โ
โ 2025-01-26 06:00:00+01:00 โ Grenoble โ 5.199999809265137 โ 91.0 โ 2.200000047683716 โ
โ 2025-01-26 07:00:00+01:00 โ Grenoble โ 4.800000190734863 โ 86.0 โ 3.0 โ
โ 2025-01-26 08:00:00+01:00 โ Grenoble โ 4.900000095367432 โ 83.0 โ 1.100000023841858 โ
โ 2025-01-26 09:00:00+01:00 โ Grenoble โ 4.0 โ 92.0 โ 3.0999999046325684 โ
โ 2025-01-26 10:00:00+01:00 โ Grenoble โ 5.0 โ 86.0 โ 6.400000095367432 โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโ
Query all registered tables
Query any registered tables using DuckDB SQL dialect!
$ laketower -c demo/laketower.yml tables query "select date_trunc('day', time) as day, avg(temperature_2m) as mean_temperature from weather group by day order by day desc limit 3"
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโ
โ day โ mean_temperature โ
โกโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฉ
โ 2025-02-12 00:00:00+01:00 โ 5.099999904632568 โ
โ 2025-02-11 00:00:00+01:00 โ 4.833333373069763 โ
โ 2025-02-10 00:00:00+01:00 โ 2.1083333243926368 โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโ
3 rows returned
Execution time: 33.72ms
Use named parameters within a giving query (note: escape $ prefixes properly!):
$ laketower -c demo/laketower.yml tables query "select date_trunc('day', time) as day, avg(temperature_2m) as mean_temperature from weather where day between \$start_date and \$end_date group by day order by day desc" -p start_date 2025-01-29 -p end_date 2025-01-31
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโ
โ day โ mean_temperature โ
โกโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฉ
โ 2025-01-31 00:00:00+01:00 โ 5.683333257834117 โ
โ 2025-01-30 00:00:00+01:00 โ 8.900000015894571 โ
โ 2025-01-29 00:00:00+01:00 โ 7.770833313465118 โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโ
4 rows returned
Execution time: 30.59ms
Export query results to CSV:
$ laketower -c demo/laketower.yml tables query --output results.csv "select date_trunc('day', time) as day, avg(temperature_2m) as mean_temperature from weather group by day order by day desc limit 3"
Query results written to: results.csv
List saved queries
$ laketower -c demo/laketower.yml queries list
queries
โโโ all_data
โโโ daily_avg_temperature
Execute saved queries
$ laketower -c demo/laketower.yml queries view daily_avg_temperature
โโโโโโโโโณโโโโโโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโ
โ # โ day โ avg_temperature โ
โกโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฉ
โ 1 โ 2025-01-26 00:00:00+01:00 โ 8.0 โ
โ 2 โ 2025-01-27 00:00:00+01:00 โ 13.0 โ
โ 3 โ 2025-01-28 00:00:00+01:00 โ 7.0 โ
โ 4 โ 2025-01-29 00:00:00+01:00 โ 8.0 โ
โ 5 โ 2025-01-30 00:00:00+01:00 โ 9.0 โ
โ 6 โ 2025-01-31 00:00:00+01:00 โ 6.0 โ
โ 7 โ 2025-02-01 00:00:00+01:00 โ 4.0 โ
โ 8 โ 2025-02-02 00:00:00+01:00 โ 4.0 โ
โ 9 โ 2025-02-03 00:00:00+01:00 โ 4.0 โ
โ 10 โ 2025-02-04 00:00:00+01:00 โ 3.0 โ
โ 11 โ 2025-02-05 00:00:00+01:00 โ 3.0 โ
โ 12 โ 2025-02-06 00:00:00+01:00 โ 2.0 โ
โ 13 โ 2025-02-07 00:00:00+01:00 โ 6.0 โ
โ 14 โ 2025-02-08 00:00:00+01:00 โ 7.0 โ
โ 15 โ 2025-02-09 00:00:00+01:00 โ 5.0 โ
โ 16 โ 2025-02-10 00:00:00+01:00 โ 2.0 โ
โ 17 โ 2025-02-11 00:00:00+01:00 โ 5.0 โ
โ 18 โ 2025-02-12 00:00:00+01:00 โ 5.0 โ
โโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโค
โ Total โ - โ 101.0 โ
โโโโโโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโ
18 rows returned
Execution time: 27.02ms
Executing a predefined query with parameters (here start_date and end_date):
$ laketower -c demo/laketower.yml queries view daily_avg_temperature_params -p start_date 2025-02-01 -p end_date 2025-02-05
โโโโโณโโโโโโโโโโโโโโโโโโโโโโโโโโโโณโโโโโโโโโโโโโโโโโโ
โ # โ day โ avg_temperature โ
โกโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฉ
โ 1 โ 2025-02-01 00:00:00+01:00 โ 4.0 โ
โ 2 โ 2025-02-02 00:00:00+01:00 โ 4.0 โ
โ 3 โ 2025-02-03 00:00:00+01:00 โ 4.0 โ
โ 4 โ 2025-02-04 00:00:00+01:00 โ 3.0 โ
โ 5 โ 2025-02-05 00:00:00+01:00 โ 3.0 โ
โ 6 โ 2025-02-06 00:00:00+01:00 โ 2.0 โ
โโโโโดโโโโโโโโโโโโโโโโโโโโโโโโโโโโดโโโโโโโโโโโโโโโโโโ
6 rows returned
Execution time: 29.70ms
License
Licensed under Apache License 2.0
Copyright (c) 2025 - present Romain Clement / Datalpia
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file laketower-0.6.11.tar.gz.
File metadata
- Download URL: laketower-0.6.11.tar.gz
- Upload date:
- Size: 2.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b677348d7a57ff7d6b6571971cb2285a7c9911d7513e9334d928e637e69f74e
|
|
| MD5 |
0bfdd827d4a5fb73ccf7e67fd96b4bde
|
|
| BLAKE2b-256 |
5127789f9bf7ec2e131dfb89a6b2db78ea2b37b0c0e1c33d67a3bd309b411282
|
Provenance
The following attestation bundles were made for laketower-0.6.11.tar.gz:
Publisher:
ci-cd.yml on datalpia/laketower
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
laketower-0.6.11.tar.gz -
Subject digest:
9b677348d7a57ff7d6b6571971cb2285a7c9911d7513e9334d928e637e69f74e - Sigstore transparency entry: 953621037
- Sigstore integration time:
-
Permalink:
datalpia/laketower@63b47083aef579b424fd9be1a7e2993ab12521f4 -
Branch / Tag:
refs/tags/0.6.11 - Owner: https://github.com/datalpia
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@63b47083aef579b424fd9be1a7e2993ab12521f4 -
Trigger Event:
push
-
Statement type:
File details
Details for the file laketower-0.6.11-py3-none-any.whl.
File metadata
- Download URL: laketower-0.6.11-py3-none-any.whl
- Upload date:
- Size: 934.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c608a43691fd41eb17983658b810c6d8fe439769106e010769379783de6ce4a3
|
|
| MD5 |
ff4c6b2d50d8ad9dc1078f336ef6702e
|
|
| BLAKE2b-256 |
82b87e23c8410599fca594c2a7338d2aae4b70cfc29212b9b4d179c36de4ab1a
|
Provenance
The following attestation bundles were made for laketower-0.6.11-py3-none-any.whl:
Publisher:
ci-cd.yml on datalpia/laketower
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
laketower-0.6.11-py3-none-any.whl -
Subject digest:
c608a43691fd41eb17983658b810c6d8fe439769106e010769379783de6ce4a3 - Sigstore transparency entry: 953621038
- Sigstore integration time:
-
Permalink:
datalpia/laketower@63b47083aef579b424fd9be1a7e2993ab12521f4 -
Branch / Tag:
refs/tags/0.6.11 - Owner: https://github.com/datalpia
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-cd.yml@63b47083aef579b424fd9be1a7e2993ab12521f4 -
Trigger Event:
push
-
Statement type: