Skip to main content

Declarative, typed query language that compiles to SQL.

Project description

Trilogy

SQL with superpowers for analytics

Website Discord PyPI version

The Trilogy language is an experiment in better SQL for analytics - a streamlined version that replaces tables/joins with a lightweight semantic binding layer and provides easy reuse and composability. It compiles to SQL - making it easy to debug or integrate into existing workflows - and can be run against any supported SQL backend.

It shines when used with AI agents, but is built for people first.

pytrilogy is the reference implementation, written in Python.

What Trilogy Gives You

  • Speed - write less, faster. Concise but powerful syntax
  • Efficiency - easily reuse and compose functions and models, modeled after python
  • Easy refactoring - change and update tables without breaking queries, and easy testing snd static analysis
  • Testability - built-in testing patterns with query fixtures
  • Straightforward - for humans and LLMs alike

Trilogy is especially powerful for data consumption, providing a rich metadata layer that makes creating, interpreting, and visualizing queries easy and expressive.

We recommend starting with the studio to explore Trilogy. For integration, pytrilogy can be run locally to parse and execute trilogy model [.preql] files using the trilogy CLI tool, or can be run in python by importing the trilogy package.

Quick Start

[!TIP] Try it now: Open-source studio | Interactive demo | Documentation

Install

pip install pytrilogy

Save in hello.preql

const prime <- unnest([2, 3, 5, 7, 11, 13, 17, 19, 23, 29]);

def cube_plus_one(x) -> (x * x * x + 1);

WHERE 
    prime_cubed_plus_one % 7 = 0
SELECT
    prime,
    @cube_plus_one(prime) as prime_cubed_plus_one
ORDER BY
    prime asc
LIMIT 10;

Run it in DuckDB

trilogy run hello.preql duckdb

Trilogy is Easy to Write

For humans and AI. Enjoy flexible, one-shot query generation without any DB access or security risks.

(full code in the python API section.)

query = text_to_query(
    executor.environment,
    "number of flights by month in 2005",
    Provider.OPENAI,
    "gpt-5-chat-latest",
    api_key,
)

# get a ready to run query
print(query)
# typical output
'''where local.dep_time.year = 2020  
select
    local.dep_time.month,
    count(local.id2) as number_of_flights
order by
    local.dep_time.month asc;'''

Goals

Versus SQL, Trilogy aims to:

Keep:

  • Correctness
  • Accessibility

Improve:

  • Simplicity
  • Refactoring/maintainability
  • Reusability/composability
  • Expressivness

Maintain:

  • Acceptable performance

Backend Support

Backend Status Notes
BigQuery Core Full support
DuckDB Core Full support
Snowflake Core Full support
Sqlite Core Full support
SQL Server Experimental Limited testing
Presto Experimental Limited testing

Examples

Hello World

Save the following code in a file named hello.preql

# semantic model is abstract from data

type word string; # types can be used to provide expressive metadata tags that propagate through dataflow

key sentence_id int;
property sentence_id.word_one string::word; # comments after a definition 
property sentence_id.word_two string::word; # are syntactic sugar for adding
property sentence_id.word_three string::word; # a description to it

# comments in other places are just comments

# define our datasource to bind the model to data
# for most work, you can import something already defined
# testing using query fixtures is a common pattern
datasource word_one(
    sentence: sentence_id,
    word:word_one
)
grain(sentence_id)
query '''
select 1 as sentence, 'Hello' as word
union all
select 2, 'Bonjour'
''';

datasource word_two(
    sentence: sentence_id,
    word:word_two
)
grain(sentence_id)
query '''
select 1 as sentence, 'World' as word
union all
select 2 as sentence, 'World'
''';

datasource word_three(
    sentence: sentence_id,
    word:word_three
)
grain(sentence_id)
query '''
select 1 as sentence, '!' as word
union all
select 2 as sentence, '!'
''';

def concat_with_space(x,y) -> x || ' ' || y;

# an actual select statement
# joins are automatically resolved between the 3 sources
with sentences as
select sentence_id, @concat_with_space(word_one, word_two) || word_three as text;

WHERE 
    sentences.sentence_id in (1,2)
SELECT
    sentences.text
;

Run it:

trilogy run hello.preql duckdb

UI Preview

Python SDK Usage

Trilogy can be run directly in python through the core SDK. Trilogy code can be defined and parsed inline or parsed out of files.

A BigQuery example, similar to the BigQuery quickstart:

from trilogy import Dialects, Environment

environment = Environment()

environment.parse('''
key name string;
key gender string;
key state string;
key year int;
key yearly_name_count int; int;

datasource usa_names(
    name:name,
    number:yearly_name_count,
    year:year,
    gender:gender,
    state:state
)
address `bigquery-public-data.usa_names.usa_1910_2013`;
''')

executor = Dialects.BIGQUERY.default_executor(environment=environment)

results = executor.execute_text('''
WHERE
    name = 'Elvis'
SELECT
    name,
    sum(yearly_name_count) -> name_count 
ORDER BY
    name_count desc
LIMIT 10;
''')

# multiple queries can result from one text batch
for row in results:
    # get results for first query
    answers = row.fetchall()
    for x in answers:
        print(x)

LLM Usage

Connect to your favorite provider and generate queries with confidence and high accuracy.

from trilogy import Environment, Dialects
from trilogy.ai import Provider, text_to_query
import os

executor = Dialects.DUCK_DB.default_executor(
    environment=Environment(working_path=Path(__file__).parent)
)

api_key = os.environ.get(OPENAI_API_KEY)
if not api_key:
    raise ValueError("OPENAI_API_KEY required for gpt generation")
# load a model
executor.parse_file("flight.preql")
# create tables in the DB if needed
executor.execute_file("setup.sql")
# generate a query
query = text_to_query(
    executor.environment,
    "number of flights by month in 2005",
    Provider.OPENAI,
    "gpt-5-chat-latest",
    api_key,
)

# print the generated trilogy query
print(query)
# run it
results = executor.execute_text(query)[-1].fetchall()
assert len(results) == 12

for row in results:
    # all monthly flights are between 5000 and 7000
    assert row[1] > 5000 and row[1] < 7000, row

CLI Usage

Trilogy can be run through a CLI tool, also named 'trilogy'.

Basic syntax:

trilogy run <cmd or path to trilogy file> <dialect>

With backend options:

trilogy run "key x int; datasource test_source(i:x) grain(x) address test; select x;" duckdb --path <path/to/database>

Format code:

trilogy fmt <path to trilogy file>

Backend Configuration

BigQuery:

  • Uses applicationdefault authentication (TODO: support arbitrary credential paths)
  • In Python, you can pass a custom client

DuckDB:

  • --path - Optional database file path

Postgres:

  • --host - Database host
  • --port - Database port
  • --username - Username
  • --password - Password
  • --database - Database name

Snowflake:

  • --account - Snowflake account
  • --username - Username
  • --password - Password

Config Files

The CLI can pick up default configuration from a config file in the toml format. Detection will be recursive form parent directories of the current working directory, including the current working directory.

This can be used to set

  • default engine and arguments
  • parallelism for execute for the CLI
  • any startup commands to run whenever creating an executor.
# Trilogy Configuration File
# Learn more at: https://github.com/trilogy-data/pytrilogy

[engine]
# Default dialect for execution
dialect = "duck_db"

# Parallelism level for directory execution
# parallelism = 2

# Startup scripts to run before execution
[setup]
# startup_trilogy = []
sql = ['setup/setup_dev.sql']

More Resources

Python API Integration

Root Imports

Are stable and should be sufficient for executing code from Trilogy as text.

from pytrilogy import Executor, Dialect

Authoring Imports

Are also stable, and should be used for cases which programatically generate Trilogy statements without text inputs or need to process/transform parsed code in more complicated ways.

from pytrilogy.authoring import Concept, Function, ...

Other Imports

Are likely to be unstable. Open an issue if you need to take dependencies on other modules outside those two paths.

MCP/Server

Trilogy is straightforward to run as a server/MCP server; the former to generate SQL on demand and integrate into other tools, and MCP for full interactive query loops.

This makes it easy to integrate Trilogy into existing tools or workflows.

You can see examples of both use cases in the trilogy-studio codebase here and install and run an MCP server directly with that codebase.

If you're interested in a more fleshed out standalone server or MCP server, please open an issue and we'll prioritize it!

Trilogy Syntax Reference

Not exhaustive - see documentation for more details.

Import

import [path] as [alias];

Concepts

Types: string | int | float | bool | date | datetime | time | numeric(scale, precision) | timestamp | interval | array<[type]> | map<[type], [type]> | struct<name:[type], name:[type]>

Key:

key [name] [type];

Property:

property [key].[name] [type];
property x.y int;

# or multi-key
property <[key],[key]>.[name] [type];
property <x,y>.z int;

Transformation:

auto [name] <- [expression];
auto x <- y + 1;

Datasource

datasource <name>(
    <column_and_concept_with_same_name>,
    # or a mapping from column to concept
    <column>:<concept>,
    <column>:<concept>,
)
grain(<concept>, <concept>)
address <table>;

datasource orders(
    order_id,
    order_date,
    total_rev: point_of_sale_rev,
    customomer_id: customer.id
)
grain orders
address orders;

Queries

Basic SELECT:

WHERE
    <concept> = <value>
SELECT
    <concept>,
    <concept>+1 -> <alias>,
    ...
HAVING
    <alias> = <value2>
ORDER BY
    <concept> asc|desc
;

CTEs/Rowsets:

with <alias> as
WHERE
    <concept> = <value>
select
    <concept>,
    <concept>+1 -> <alias>,
    ...

select <alias>.<concept>;

Data Operations

Persist to table:

persist <alias> as <table_name> from
<select>;

Export to file:

COPY INTO <TARGET_TYPE> '<target_path>' FROM SELECT
    <concept>, ...
ORDER BY
    <concept>, ...
;

Show generated SQL:

show <select>;

Validate Model

validate all
validate concepts abc,def...
validate datasources abc,def...

Contributing

Clone repository and install requirements.txt and requirements-test.txt.

Please open an issue first to discuss what you would like to change, and then create a PR against that issue.

Similar Projects

Trilogy combines two aspects: a semantic layer and a query language. Examples of both are linked below:

Semantic layers - tools for defining a metadata layer above SQL/warehouse to enable higher level abstractions:

Better SQL has been a popular space. We believe Trilogy takes a different approach than the following, but all are worth checking out. Please open PRs/comment for anything missed!

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

pytrilogy-0.3.183.tar.gz (334.4 kB view details)

Uploaded Source

Built Distributions

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

pytrilogy-0.3.183-cp313-cp313-win_amd64.whl (696.7 kB view details)

Uploaded CPython 3.13Windows x86-64

pytrilogy-0.3.183-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (789.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pytrilogy-0.3.183-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (773.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pytrilogy-0.3.183-cp313-cp313-macosx_11_0_arm64.whl (753.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pytrilogy-0.3.183-cp313-cp313-macosx_10_12_x86_64.whl (774.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pytrilogy-0.3.183-cp312-cp312-win_amd64.whl (697.3 kB view details)

Uploaded CPython 3.12Windows x86-64

pytrilogy-0.3.183-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (790.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pytrilogy-0.3.183-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (773.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pytrilogy-0.3.183-cp312-cp312-macosx_11_0_arm64.whl (754.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pytrilogy-0.3.183-cp312-cp312-macosx_10_12_x86_64.whl (774.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pytrilogy-0.3.183-cp311-cp311-win_amd64.whl (696.2 kB view details)

Uploaded CPython 3.11Windows x86-64

pytrilogy-0.3.183-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (790.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pytrilogy-0.3.183-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (773.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pytrilogy-0.3.183-cp311-cp311-macosx_11_0_arm64.whl (753.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pytrilogy-0.3.183-cp311-cp311-macosx_10_12_x86_64.whl (774.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

Details for the file pytrilogy-0.3.183.tar.gz.

File metadata

  • Download URL: pytrilogy-0.3.183.tar.gz
  • Upload date:
  • Size: 334.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pytrilogy-0.3.183.tar.gz
Algorithm Hash digest
SHA256 ca84b41e459bdf6062bb3f121ea4f090f84b0d4794dece82cb24f551dd7120b6
MD5 af4a81f7e3978b9bd8c9f26d6b7f5d55
BLAKE2b-256 381c50fc9b5afcb80da9b72e32880c0e8e8762a9ae527ea12e6b27d6e739ca1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrilogy-0.3.183.tar.gz:

Publisher: pythonpublish.yml on trilogy-data/pytrilogy

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

File details

Details for the file pytrilogy-0.3.183-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pytrilogy-0.3.183-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8301c2bebb055afb7dbedac09cb68273489ec34af57b8b01fb71921b19b9c9dc
MD5 0aeb778f94a7bf55602bdc1da8583c18
BLAKE2b-256 3acc3a3634fea17caa2e637ee6f2e997e537af721e5bcf6cbcfa4002332bc679

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrilogy-0.3.183-cp313-cp313-win_amd64.whl:

Publisher: pythonpublish.yml on trilogy-data/pytrilogy

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

File details

Details for the file pytrilogy-0.3.183-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytrilogy-0.3.183-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f44fc8f022eed09f8a1e2330c447b0f8cffb770cac6b3467942e1b7f9a237387
MD5 7a0d4989adc642c41814b9e61c350158
BLAKE2b-256 509f4e101bcbcce81e71ff76bbed44052b88ac2d49ca9b9dba384058baa416f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrilogy-0.3.183-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pythonpublish.yml on trilogy-data/pytrilogy

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

File details

Details for the file pytrilogy-0.3.183-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pytrilogy-0.3.183-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a76b6211dc37d2be58bc0ac2e8148074bec9900ecd6916bb27918e56215cbcd0
MD5 c659e892cf40380508525721c29a5548
BLAKE2b-256 53e88e168d306f5e727f45d8c073f33b32677384a9dae76d98a74ad9c7e990e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrilogy-0.3.183-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pythonpublish.yml on trilogy-data/pytrilogy

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

File details

Details for the file pytrilogy-0.3.183-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytrilogy-0.3.183-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a68c794c115dfcb9e55a6da862bb06f9d5e80e15c1aff558deb0844d9ca07e0e
MD5 4adc12406ae09cf531aec690305a5627
BLAKE2b-256 6a7a00b4a86d167e7758f019639d24a933d824b8c175725ea45b1d367ee0663d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrilogy-0.3.183-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: pythonpublish.yml on trilogy-data/pytrilogy

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

File details

Details for the file pytrilogy-0.3.183-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pytrilogy-0.3.183-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 afb7e30b2e16ecdd9aff5c83d0bf1e1c44d9d5fbbcb300f4381c6a0461740915
MD5 5680790ae947d040e0ae1056206d8ec7
BLAKE2b-256 e8abede64b17cf746ba8f6a3d020beb4515f330579e98cbbbfe84c18bab498a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrilogy-0.3.183-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: pythonpublish.yml on trilogy-data/pytrilogy

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

File details

Details for the file pytrilogy-0.3.183-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pytrilogy-0.3.183-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 783cb5e2cf95244a2b940cd2e4f967014b65306d446cd2d12e1110cedecce953
MD5 ec29fc36a063048ea9e282ca1acf6bf5
BLAKE2b-256 d8d9bd80208764fabe56b6d66fb15a51d2250bfc413ade55f983244c07c05906

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrilogy-0.3.183-cp312-cp312-win_amd64.whl:

Publisher: pythonpublish.yml on trilogy-data/pytrilogy

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

File details

Details for the file pytrilogy-0.3.183-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytrilogy-0.3.183-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b2e967a850180f27376e7521fd2af4fe6d08b4915f08f9f7d2cf3922464eb7f
MD5 5e13e9df575cb351b9b2a3ee14e2502d
BLAKE2b-256 4ede6a3c0e685a48d667f5d1258cb6f0d5b2fdf7c8b6054736b3efb17ff4163c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrilogy-0.3.183-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pythonpublish.yml on trilogy-data/pytrilogy

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

File details

Details for the file pytrilogy-0.3.183-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pytrilogy-0.3.183-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 59964061487046037c571135c411160042155e73f11fb147a8051210e9b2a211
MD5 44c61fb21a2bfd04c8df0d032d90b21f
BLAKE2b-256 09ea90219aa2fa2af9f67f08983b85bbd3f55e77041fef97ba7c6f9f5a522417

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrilogy-0.3.183-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pythonpublish.yml on trilogy-data/pytrilogy

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

File details

Details for the file pytrilogy-0.3.183-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytrilogy-0.3.183-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eafbbc5c21cb97a7ff54054eab7c37f019dc701b02d909b2925ac0b13f3fc4f8
MD5 4939137616aa6690484ed6077132b4e8
BLAKE2b-256 c5d9df02dfe76e29ffe33d20eddb7c2bf1a6bda2c9c53b912103fd9d303517bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrilogy-0.3.183-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: pythonpublish.yml on trilogy-data/pytrilogy

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

File details

Details for the file pytrilogy-0.3.183-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pytrilogy-0.3.183-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1d497117b9e745edc624cbb6a1871d34da04fbf329e46441d548c6148e9039e6
MD5 64a84495d43189e10504651dee0391b5
BLAKE2b-256 f190d9486703d1acfd70744af09d66847aabf11b607767ac2942f56af6f8ddd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrilogy-0.3.183-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: pythonpublish.yml on trilogy-data/pytrilogy

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

File details

Details for the file pytrilogy-0.3.183-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pytrilogy-0.3.183-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a36ec0554a66f4b05550fac8b9441f553efb2bdcceaaabc2bcb8de14819641df
MD5 001e282785283ccfddb5b005f9bbb54e
BLAKE2b-256 7b3151406cb2fa042f662d3da5b930a457f24e0a875a2c7f629ecbadb20e69ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrilogy-0.3.183-cp311-cp311-win_amd64.whl:

Publisher: pythonpublish.yml on trilogy-data/pytrilogy

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

File details

Details for the file pytrilogy-0.3.183-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytrilogy-0.3.183-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be604de55df27a210351948db186cf76174120a1bf7bc30460923c41dce38ad8
MD5 b949ca6786d30469b54a291f26cf37a3
BLAKE2b-256 f8655e3fe446745f4ec0a1893a60570dc2627bb2b7bed3433fe9735129c84d62

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrilogy-0.3.183-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pythonpublish.yml on trilogy-data/pytrilogy

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

File details

Details for the file pytrilogy-0.3.183-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pytrilogy-0.3.183-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da5e039e96640fce7d064eb5e7a202990a15f1a4d7f90308d1dd8cfd8609bc8e
MD5 371e7a80f0f8aec23726e20a80d4c2ac
BLAKE2b-256 f30c555082bf3940369a0abdcbf7abd79d02cae1352224a06beb506fb1cd6c3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrilogy-0.3.183-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pythonpublish.yml on trilogy-data/pytrilogy

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

File details

Details for the file pytrilogy-0.3.183-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytrilogy-0.3.183-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d724a71f6288bb24fead4f7c0175a8a4e9cb99c540fa43a0afb49dfca4b8e174
MD5 71434890883c32b336f12c6da13d46fc
BLAKE2b-256 925063b2146ee44e61a18dd09cb130ab06c05363a8703b67cf3d7ef0c9d9eeae

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrilogy-0.3.183-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: pythonpublish.yml on trilogy-data/pytrilogy

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

File details

Details for the file pytrilogy-0.3.183-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pytrilogy-0.3.183-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9b52f81a31ee3b3ec0dbd4c419c47b73804c1929ec9ea1386ee2ae3f58953dd7
MD5 396ccb7f5411644f5f9d816607d35c1f
BLAKE2b-256 ea7adadd83e85346d474fa6d0c1e8dfd6fe8c60be280e08934c8d96aded7259b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrilogy-0.3.183-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: pythonpublish.yml on trilogy-data/pytrilogy

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