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.192.tar.gz (346.1 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.192-cp313-cp313-win_amd64.whl (709.0 kB view details)

Uploaded CPython 3.13Windows x86-64

pytrilogy-0.3.192-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (804.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pytrilogy-0.3.192-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (787.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pytrilogy-0.3.192-cp313-cp313-macosx_11_0_arm64.whl (765.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pytrilogy-0.3.192-cp313-cp313-macosx_10_12_x86_64.whl (786.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pytrilogy-0.3.192-cp312-cp312-win_amd64.whl (709.6 kB view details)

Uploaded CPython 3.12Windows x86-64

pytrilogy-0.3.192-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (804.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pytrilogy-0.3.192-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (787.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pytrilogy-0.3.192-cp312-cp312-macosx_11_0_arm64.whl (766.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pytrilogy-0.3.192-cp312-cp312-macosx_10_12_x86_64.whl (786.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pytrilogy-0.3.192-cp311-cp311-win_amd64.whl (708.5 kB view details)

Uploaded CPython 3.11Windows x86-64

pytrilogy-0.3.192-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (804.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pytrilogy-0.3.192-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (788.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pytrilogy-0.3.192-cp311-cp311-macosx_11_0_arm64.whl (765.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pytrilogy-0.3.192-cp311-cp311-macosx_10_12_x86_64.whl (786.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: pytrilogy-0.3.192.tar.gz
  • Upload date:
  • Size: 346.1 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.192.tar.gz
Algorithm Hash digest
SHA256 746bdf720294e91cd8c853f225ec9e31aea9356cf4a1546af55057152d73bf51
MD5 007c3a1620b3331031fd3eb5ca34973b
BLAKE2b-256 a1327dc2c1b4946318088c98d7ad765f2067670f1c067a518d9d7be6d9902213

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrilogy-0.3.192.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.192-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pytrilogy-0.3.192-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 709.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pytrilogy-0.3.192-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c431e5577bc0becbb8b4153af0475cfe2878b49f2581d45a1a88474acd34f993
MD5 08b46c3fad9090b7979c1b1a97b52589
BLAKE2b-256 51a42b6062678bfd3b22edfa7e4a8b772cef0558efae5c70c5f7029528397c80

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrilogy-0.3.192-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.192-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytrilogy-0.3.192-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72fb83ddcaa05ed9c4174924bb7efc3a43c8f99d8440f2a21400ac3c0fbff342
MD5 86ee1c8250c0f19ec479b5936b765075
BLAKE2b-256 348317a7ce42fc833f7486c38788f066d40ac058c8e7eb2763850c7aa136df6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrilogy-0.3.192-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.192-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pytrilogy-0.3.192-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a3d2dfaa5727c31e581c2205b0b11f559eb8b5b25841a1bf02e280ebedfbeadd
MD5 ef3aedab653ab422cf67f1ad477ee049
BLAKE2b-256 ef47a4bf598514f53d4e0660eda6ab33ef7116c5f9ac75d39b50de58829184aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrilogy-0.3.192-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.192-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytrilogy-0.3.192-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b160443dd5c6d77f8c1ce1453de263e3e8d56be43aa797dd066e266bbabcc82
MD5 c416938ec01c3bedc83632c5a6ac7ca6
BLAKE2b-256 28c567056a688e8e31cc570af43dbbf3c87fb6153109b7add6d676574236e81e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrilogy-0.3.192-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.192-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pytrilogy-0.3.192-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 884d02f172827d2d614cf5e9b5e6d006d42c5b3b6963b00a0fe1351baddfdf4b
MD5 9b08ec8305586fcfd5c5c3f2b53296f1
BLAKE2b-256 a5993f49230b612dbdd0ac9d2a264d289e90e3b0a8a0d4c1404f6c777648069b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrilogy-0.3.192-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.192-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pytrilogy-0.3.192-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 709.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pytrilogy-0.3.192-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a6047c4d8bf53b5fab8453343e49d958840bbaac77195e2fdad2aa266c16ed4c
MD5 427c3718476b9741605e3368fb349430
BLAKE2b-256 be84519b1e48a85467fb1f4928ad1e21011db131ee9c8ef79177c5b1629f291f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrilogy-0.3.192-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.192-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytrilogy-0.3.192-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7aa1986f391924488d0ff690112503ab1dc899858ab92a4951b2c7f08303ed0
MD5 ef071ebd9ea6cc3884a6b48ffc832910
BLAKE2b-256 392fd35b75843d4646e4913cafc95e1bfaeab9d483da26c348d054b6da58ec9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrilogy-0.3.192-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.192-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pytrilogy-0.3.192-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ed1d2a45eeecb74702ef09977e720bbe5c3c51ae751348dc2134b06b3424f83
MD5 af2d24fd505604fd7568c3eba9903150
BLAKE2b-256 c53f30fb4c8aae7cc8d0617dce82edc111b02cde4e249e945ba15f0507b6d6a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrilogy-0.3.192-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.192-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytrilogy-0.3.192-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b02638158630ea02c3e7e74c58700104643655639917c5d8b132eb3770fbea2
MD5 2dc587a1a360ca5a215989b2fdefa5fe
BLAKE2b-256 ecb087324fc08f204cf64d2888095cbcdb6b454084c9d6c7cf52bfe2d6c91083

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrilogy-0.3.192-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.192-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pytrilogy-0.3.192-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5d0c8c5d6c3b790fd78e8456af6b08e75e72aa2cf2ee923477007b61a3bb73cb
MD5 91e9f9db4c0c1dd4fc169e45fa74c6a2
BLAKE2b-256 1af7875464d9bac267bf7352178d95190b3f646c3db90a39986e545580edb36d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrilogy-0.3.192-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.192-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pytrilogy-0.3.192-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 708.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pytrilogy-0.3.192-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 11806f8db148374adb2b311eb852f55843eafc2c4e07653cb143c1d5e77349ba
MD5 7642c63870389620149573c556f934da
BLAKE2b-256 a742533f15de0b4f8c194eed912c491f09da0f1e29a0b558932d01b048da81b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrilogy-0.3.192-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.192-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytrilogy-0.3.192-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44eb400bd0c8a3c2899b2b1a8d5ac8d544f9f71ec32f5fab56e64675b5d1df81
MD5 383dd5f72c857e63af7a6c8c697ce98b
BLAKE2b-256 4a5e216e3064b9cb1a83974afe7b0c65b823dfb3746b6c6e2dcd2a3e00ffee0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrilogy-0.3.192-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.192-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pytrilogy-0.3.192-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0dfe12157e13a4640e400052b317116bcc9b404cfee87c2f9a8170d08cc74820
MD5 b83e2a1392950e2511436a6032d13f02
BLAKE2b-256 33489d9dfe76360094aa881221569ef9740c7bb938f2352461d545810469e4a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrilogy-0.3.192-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.192-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytrilogy-0.3.192-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c217411faebec3f2c7dde2c127bf17bf8b8b6f188fc8293c26f3fd6ed6121825
MD5 bcee72dc2b40382ad2c6376cf3f0ef70
BLAKE2b-256 3241b3a9cad3cea44a116047b936f0d322540874daa4acc176e666412701ff73

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrilogy-0.3.192-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.192-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pytrilogy-0.3.192-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b3f0cf4845cc83a80f3e9701b72ec44c2ca275aa5f77895fb3151d88868cd910
MD5 b146450263e1d92dcf6ad4aa2fdf23d0
BLAKE2b-256 694463970b71e70b80cc596aaf985f401bd9a88b02d15f0fd2442254e019c83b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytrilogy-0.3.192-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