An experimental, blazingly fast, and intuitive asynchronous ORM for Python, written in Rust.
Project description
fust-orm 🚀
An experimental, blazingly fast, and intuitive asynchronous ORM for Python, written in Rust.
⚠️ Disclaimer
fust-orm is currently in an early, experimental stage. The API is subject to change, and it is not yet recommended for production use.
Core Ideas
The goal of fust-orm is to provide a Python ORM that combines two key ideas:
- Performance: By leveraging Rust and the excellent
sqlxlibrary,fust-ormaims to deliver performance that significantly surpasses traditional Python ORMs. - Simplicity: The syntax is designed to be clean, expressive, and feel like native Python, allowing you to focus on your application logic instead of wrestling with the ORM.
Features
- Rust-Powered Core: All logic is implemented in Rust for maximum speed.
- Intuitive Query Building: Use standard Python comparison operators (
==,>,!=, etc.) to buildWHEREclauses. - Asynchronous from the Ground Up: Built with
async/awaitin mind. - Type-Safe Models: Define your models using standard Python type annotations.
- Raw SQL Fallback: Drop down to raw SQL for complex queries whenever you need to.
- Multi-Database Support: Thanks to
sqlx, it's designed to work with various databases like SQLite, PostgreSQL, and MySQL.
Installation
pip install fust-orm
Quickstart
Here is a brief overview of how to define models and build queries with fust-orm.
1. Define Your Models
Create a class that inherits from Model. The table name is either inferred from the class name (converted to snake_case) or explicitly set with __table_name__. Define columns using ColumnField and standard Python type hints.
from fust_orm import Model, ColumnField
class User(Model):
__table_name__ = "users"
id: ColumnField[int]
name: ColumnField[str]
age: ColumnField[int]
is_active: ColumnField[bool]
2. Connect to the Database
Create an asynchronous connection to your database. fust-orm uses a connection URL to determine the driver.
import asyncio
from fust_orm import Database
async def main():
# Connect to an in-memory SQLite database
db = await Database.connect("sqlite::memory:")
# ... execute queries
3. Build and Execute Queries
The select() function is the main entry point for building queries.
Selecting Specific Columns
Pass ColumnField attributes to select() to choose which columns to retrieve.
from fust_orm import select
# SELECT name, age FROM users;
query = select(User.name, User.age)
results = await db.execute(query)
# [{'name': 'Alice', 'age': 30}, ...]
Filtering Data with WHERE clauses
Use standard Python operators on ColumnField attributes to create WHERE conditions.
# SELECT name FROM users WHERE age > 25;
query = select(User.name, User.age > 25)
users = await db.execute(query)
Combining Selection and Filtering with +
You can use a unary + on a condition to automatically include that column in the SELECT statement. This avoids repetition.
# SELECT age FROM users WHERE age < 35;
query = select(+(User.age < 35))
results = await db.execute(query)
# [{'age': 30}, {'age': 25}]
This can be combined with other columns:
# SELECT name, age FROM users WHERE age < 35;
query = select(User.name, +(User.age < 35))
Using IN and LIKE
More complex conditions are also available as methods.
# SELECT name FROM users WHERE id IN (1, 3);
query = select(User.name, User.id.in_([1, 3]))
# SELECT name FROM users WHERE surname LIKE 'A%';
query = select(User.name, User.surname.like("A%"))
Raw SQL
For complex scenarios, you can always fall back to raw SQL with safe, parameterized queries.
query = select("SELECT name FROM users WHERE age > ? AND is_active = ?", 30, True)
active_users = await db.execute(query)
Roadmap
fust-orm is actively developing towards a more complete and powerful feature set. The goal is to enable highly expressive queries like this:
# Dream Syntax
results = await db.execute(
select(
User.name,
+(User.age < 35),
Users.posts(Post.id, Post.likes >= 0), # Eager-load related posts
limit=50,
offset=100
)
)
Here are the features that are planned to be implemented next:
- Query Modifiers: limit, offset, and order_by.
- Data Manipulation: insert and update operations.
- Aggregations: group_by and having clauses.
- Column Metadata: Define primary_key, foreign_key, index, etc., directly in ColumnField.
- Model Relationships: Define relations (e.g., one-to-many, many-to-many) directly on models.
- Automatic Joins: A resolver that uses relationship info to automatically perform JOIN or SELECT IN queries.
- Migration Tool: A simple, powerful tool for automatically creating and managing database migrations.
License
This project is licensed under the MIT License.
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 Distributions
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 fust_orm-0.1.1.tar.gz.
File metadata
- Download URL: fust_orm-0.1.1.tar.gz
- Upload date:
- Size: 59.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7556edc64609b294066362de1c74c3708b411b20cb8798d853fe2def56cb35f6
|
|
| MD5 |
27fd3b0f5fb5cc2d460dff7ffdaa9088
|
|
| BLAKE2b-256 |
0b3bdd6703e933a1996319b682e6b783c403769a5f98d519527566f0477e2e00
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1.tar.gz:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1.tar.gz -
Subject digest:
7556edc64609b294066362de1c74c3708b411b20cb8798d853fe2def56cb35f6 - Sigstore transparency entry: 587857851
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fust_orm-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 4.3 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a2897ecbfbccadbb62ddfa92ef8f287642cbb887d907ce9d897b56f62107b84
|
|
| MD5 |
8c52eb81615f33c0a1878f862d8602c4
|
|
| BLAKE2b-256 |
4ac7b173cb31cf94f34278cbb0f7d26cc2b95c2e146812b76a3ce5de41287e1b
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl -
Subject digest:
5a2897ecbfbccadbb62ddfa92ef8f287642cbb887d907ce9d897b56f62107b84 - Sigstore transparency entry: 587862057
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: fust_orm-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 4.2 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e0d6c4f6be4f44564cf0421a69e97f673542f519df256c3a5169a2b1f7c5f1f4
|
|
| MD5 |
058d4a22abaf087877435a63e1ffb09d
|
|
| BLAKE2b-256 |
b21dd0361027f914df68e7ecb188a8ede1453952337452190a0fb34fab0c05fa
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl -
Subject digest:
e0d6c4f6be4f44564cf0421a69e97f673542f519df256c3a5169a2b1f7c5f1f4 - Sigstore transparency entry: 587861195
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fust_orm-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 4.0 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
038d1185e0e7d79ff4154ede7a6e6453423492c9507db18a0a98b6e86666b1b5
|
|
| MD5 |
6b481c042abdb171a0300a67af1be085
|
|
| BLAKE2b-256 |
15835abd6dd95cb7822ae8fe47205bb66f7e9e4075e2304b8bbdbc1b5b2d7e96
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl -
Subject digest:
038d1185e0e7d79ff4154ede7a6e6453423492c9507db18a0a98b6e86666b1b5 - Sigstore transparency entry: 587858403
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fust_orm-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 4.2 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
059207bdb37b4ca7b1aa0da562bebd8939c2070210f95a13be39316abd8d1952
|
|
| MD5 |
77dda1419f0343646504b6a64f918552
|
|
| BLAKE2b-256 |
6e339c9a62f2fe6b4a4e398c607d99c273246f119cf7bb931a651ebc3290ce6b
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl -
Subject digest:
059207bdb37b4ca7b1aa0da562bebd8939c2070210f95a13be39316abd8d1952 - Sigstore transparency entry: 587859543
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-pp311-pypy311_pp73-manylinux_2_24_aarch64.whl.
File metadata
- Download URL: fust_orm-0.1.1-pp311-pypy311_pp73-manylinux_2_24_aarch64.whl
- Upload date:
- Size: 3.9 MB
- Tags: PyPy, manylinux: glibc 2.24+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2763b2f673e32cd05f86ed84f5bee717c4e70299b7a06b8fdf52f95d32a94a17
|
|
| MD5 |
0167d2c8d0f53fab99113bf693730773
|
|
| BLAKE2b-256 |
12757cd6e8e3d641357df933d4b60c590dfddace4736c3e2555edcc334bd9550
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-pp311-pypy311_pp73-manylinux_2_24_aarch64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-pp311-pypy311_pp73-manylinux_2_24_aarch64.whl -
Subject digest:
2763b2f673e32cd05f86ed84f5bee717c4e70299b7a06b8fdf52f95d32a94a17 - Sigstore transparency entry: 587859458
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fust_orm-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b085b5a6b3351dea0745d7f9f02dec609fcb62d68da554b947dbd4c02578cdff
|
|
| MD5 |
f33f988bb1772d7fa4e8544b6e9cbc89
|
|
| BLAKE2b-256 |
6eaa02624ecf2a21dac4dba17d42fe60a715a9e5c07f5f966fcd4f8c3efe3329
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
b085b5a6b3351dea0745d7f9f02dec609fcb62d68da554b947dbd4c02578cdff - Sigstore transparency entry: 587860701
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fust_orm-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 4.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c37a4860ab3c441089ce9367a912c2d5c03d4d56ce87806e8124303ffae7185
|
|
| MD5 |
b06cd6af0982eedcfc05a5f881d66796
|
|
| BLAKE2b-256 |
7c16e07050a475b079e386bcfffc792fa5c974bf905f37105cf7a3fa7ac31392
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
1c37a4860ab3c441089ce9367a912c2d5c03d4d56ce87806e8124303ffae7185 - Sigstore transparency entry: 587859360
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fust_orm-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 4.8 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8cd9adbb345d158ca1521878418bb602874e41f2380e282c0eef386425829414
|
|
| MD5 |
7bcddcd4778aac150798088105c0ced1
|
|
| BLAKE2b-256 |
a7e6eb9ce8e55adfa053fb29f95d3fe9a9230435ac9b493b7791f9ad02747d16
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
8cd9adbb345d158ca1521878418bb602874e41f2380e282c0eef386425829414 - Sigstore transparency entry: 587863696
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: fust_orm-0.1.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 4.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5328f1f2fe9dbdeaa0cb36ccf28dec4b45a30335d6c32fc330dabf99168365fa
|
|
| MD5 |
96554e7b6658e25d00c1ec339b387ae1
|
|
| BLAKE2b-256 |
1dddd9d24a7675299403f620cb67bb9f3fb7227ce38286248354ba74f1791fcc
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
5328f1f2fe9dbdeaa0cb36ccf28dec4b45a30335d6c32fc330dabf99168365fa - Sigstore transparency entry: 587862741
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fust_orm-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 3.7 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2f0c03c8413f54f0a121077d53530d45db790c60a6dd1ff34374b9f67da17ac
|
|
| MD5 |
8a250029bb15ac787032f9d723c24241
|
|
| BLAKE2b-256 |
c4a86dd0e3cb395463088385f89ca1201e3c853880bd49f3831c51245171e5a6
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
e2f0c03c8413f54f0a121077d53530d45db790c60a6dd1ff34374b9f67da17ac - Sigstore transparency entry: 587862187
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fust_orm-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 4.3 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e8d7628b2d8070c1db89af71d7a9e3c40c369b1115759965d59a072e39804f6
|
|
| MD5 |
1a10dfb8e78d2e9046981ea3e9eec539
|
|
| BLAKE2b-256 |
7c1b4b7e62cd8f9565dd4a20f8452ba4fa82cddd08ad60f5f474798e64bf0771
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl -
Subject digest:
3e8d7628b2d8070c1db89af71d7a9e3c40c369b1115759965d59a072e39804f6 - Sigstore transparency entry: 587863997
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: fust_orm-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 4.2 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eac08e68e94cc602d25a00368dd78b289fa1b423ccec93a95a0894350b8f0d5c
|
|
| MD5 |
944b22910573072e3c3950c14374e2c8
|
|
| BLAKE2b-256 |
4a677897a7d3d5683711ee8e6891889fbacbfee36404abe40bf1d289e5ac7773
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl -
Subject digest:
eac08e68e94cc602d25a00368dd78b289fa1b423ccec93a95a0894350b8f0d5c - Sigstore transparency entry: 587861009
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fust_orm-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 4.0 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
baef6a9197720cbf6c4d3c0ad8d6fd81104a7cdc088ab0f3979b11f350c11605
|
|
| MD5 |
3504ecd4e6f409e04a5a4fa1ad0922f3
|
|
| BLAKE2b-256 |
4dba88aeaf9822aefe8ab4537ec73aa4233bcfc8ce639be6bee8ae3d7ed5a2b3
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl -
Subject digest:
baef6a9197720cbf6c4d3c0ad8d6fd81104a7cdc088ab0f3979b11f350c11605 - Sigstore transparency entry: 587863846
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fust_orm-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 4.2 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7ff27137d35eef731ec8b0351e8494dd1844ab1f9ac8943689db243b78d80a0
|
|
| MD5 |
d19120fd6755af33a7715d44984a137c
|
|
| BLAKE2b-256 |
b312355e1d7b451c801646f1d4c953c313d2b174c95d18ead1f320466ff9c958
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl -
Subject digest:
f7ff27137d35eef731ec8b0351e8494dd1844ab1f9ac8943689db243b78d80a0 - Sigstore transparency entry: 587860400
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-pp310-pypy310_pp73-manylinux_2_24_aarch64.whl.
File metadata
- Download URL: fust_orm-0.1.1-pp310-pypy310_pp73-manylinux_2_24_aarch64.whl
- Upload date:
- Size: 3.9 MB
- Tags: PyPy, manylinux: glibc 2.24+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af5e16106ac41b9dfd53b4bddc00a9489a203061300626b220e22ea56a012f0a
|
|
| MD5 |
0096bfd356ddba9eb13f9b39b8072860
|
|
| BLAKE2b-256 |
a83330184a6794aa591c378b5a598b14420057a9e96f6c08cbb5a9e4eb9ac045
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-pp310-pypy310_pp73-manylinux_2_24_aarch64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-pp310-pypy310_pp73-manylinux_2_24_aarch64.whl -
Subject digest:
af5e16106ac41b9dfd53b4bddc00a9489a203061300626b220e22ea56a012f0a - Sigstore transparency entry: 587860001
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fust_orm-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 4.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4221c79ff3f2ef172d9e2c3615147f8f07f9913384a26f167faa582faa61ece2
|
|
| MD5 |
8e3b8c87634aa32698247c219c947883
|
|
| BLAKE2b-256 |
8c25e0036a7d77f1e4d9390db9212a2f5abe5ca588a6044f1568ab9ad6f4cc34
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
4221c79ff3f2ef172d9e2c3615147f8f07f9913384a26f167faa582faa61ece2 - Sigstore transparency entry: 587858317
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fust_orm-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 4.8 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb3fafa1b6b86c5ff94b1cd32e213de0cbcfcb726c55eff38d578789ce7a792b
|
|
| MD5 |
d6914311e8190f6d666b0089f5f43b2e
|
|
| BLAKE2b-256 |
8ed430af3529bacd113e7d53e547c2648fea967f58f3f7fea1f5ee9e8d8cf461
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
bb3fafa1b6b86c5ff94b1cd32e213de0cbcfcb726c55eff38d578789ce7a792b - Sigstore transparency entry: 587860934
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fust_orm-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 3.7 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39bcbb4cf90c246316ff1ec9626e2cd29b92f0a850e64f7a81c1594090079597
|
|
| MD5 |
9ba8e31be284b5d905c249aac92e9c87
|
|
| BLAKE2b-256 |
56f34ba96adfed10e266507e19343ab031952393c33bb5576c6f267d20884c01
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
39bcbb4cf90c246316ff1ec9626e2cd29b92f0a850e64f7a81c1594090079597 - Sigstore transparency entry: 587862352
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fust_orm-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 4.3 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
91927a36e1d7a3af00da01a6519a29f8a0a2ae53176521d80c4ed34c687d01ec
|
|
| MD5 |
aa7bcce15019cdba95a687bbfdf431f1
|
|
| BLAKE2b-256 |
c1837f959690d70f51d836e30ec9848852849f02b87331743ff77d1f5d917ef1
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl -
Subject digest:
91927a36e1d7a3af00da01a6519a29f8a0a2ae53176521d80c4ed34c687d01ec - Sigstore transparency entry: 587861523
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: fust_orm-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 4.2 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
898a7061cd848be03e1d5c9b2cb661530a020bc0998808d374c8b8c4b3af829b
|
|
| MD5 |
db8eb58b3cfc09148fe3fbfb3b44909b
|
|
| BLAKE2b-256 |
3ca4492fa4f125c49bcdeb0228e72bd7c584404375b1ab21bc347979202dc476
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl -
Subject digest:
898a7061cd848be03e1d5c9b2cb661530a020bc0998808d374c8b8c4b3af829b - Sigstore transparency entry: 587863578
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fust_orm-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 4.0 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e370f37e2c7545564dfbe0abbca7a5cc4037475b789201120f4431dbcad0ab39
|
|
| MD5 |
801051347c03de87a3aca13384745d0d
|
|
| BLAKE2b-256 |
37efe8784a5e58766b888bd38747dd175d2abca6d6c6d3af877cc535f982b1e0
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl -
Subject digest:
e370f37e2c7545564dfbe0abbca7a5cc4037475b789201120f4431dbcad0ab39 - Sigstore transparency entry: 587858132
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fust_orm-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 4.2 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb6cd3933eaf9637c0e34ac4998750fb66dab9816e3d7c163227ad868fffc8b6
|
|
| MD5 |
978b031c1a3b925a18a6c814c186ebbe
|
|
| BLAKE2b-256 |
e8240943151522b70c52b93455ade2de8274196f2f35a587d078197b6de9fc26
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl -
Subject digest:
bb6cd3933eaf9637c0e34ac4998750fb66dab9816e3d7c163227ad868fffc8b6 - Sigstore transparency entry: 587862962
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-pp39-pypy39_pp73-manylinux_2_24_aarch64.whl.
File metadata
- Download URL: fust_orm-0.1.1-pp39-pypy39_pp73-manylinux_2_24_aarch64.whl
- Upload date:
- Size: 3.9 MB
- Tags: PyPy, manylinux: glibc 2.24+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
446711c0cf062348b7b76ed306d8984866e79002a24f6bca457f295ae5c6e5f0
|
|
| MD5 |
eea79e99a6980f7030762eca65586c7d
|
|
| BLAKE2b-256 |
7493f039a76910275e67d1edda4affd54bef7cf5c86be64aa2fa030061dfaeba
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-pp39-pypy39_pp73-manylinux_2_24_aarch64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-pp39-pypy39_pp73-manylinux_2_24_aarch64.whl -
Subject digest:
446711c0cf062348b7b76ed306d8984866e79002a24f6bca457f295ae5c6e5f0 - Sigstore transparency entry: 587861645
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fust_orm-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 4.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e789666f9821b15d7d5314cd2444133ed46f2a909eca4f1821cf0462404b4a67
|
|
| MD5 |
b0216605239943f8d230654812555a1c
|
|
| BLAKE2b-256 |
de01e77e9ed80404dd1661ccdf53a530c8678f87226b5bdfdfe3ec049e8935a0
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
e789666f9821b15d7d5314cd2444133ed46f2a909eca4f1821cf0462404b4a67 - Sigstore transparency entry: 587862859
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fust_orm-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 4.8 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b28cc51ea224b3d009f378c7452b946a12c8e82c4a31193eebd8d231dc578d6
|
|
| MD5 |
212bd3d79700f251f79a204012cca7d2
|
|
| BLAKE2b-256 |
0918cee0fdaead3c1452504697107a7e77130cd8ace61590b4994cb1ac64b515
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
4b28cc51ea224b3d009f378c7452b946a12c8e82c4a31193eebd8d231dc578d6 - Sigstore transparency entry: 587861311
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fust_orm-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 3.7 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba54ce941f74355a77671eaffef10a399d2492b461bd1168ba9c67d611fbe004
|
|
| MD5 |
65c923508528de9d31beb274d43861c7
|
|
| BLAKE2b-256 |
b25d0367d42e60d1972a7d4152e97c4fe0f557ac8fe86be9f86eba1fee907719
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
ba54ce941f74355a77671eaffef10a399d2492b461bd1168ba9c67d611fbe004 - Sigstore transparency entry: 587863226
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
34456d045693ac5c35c03e54a557c60bd3d688e1ca8a480e06ca4afa437db6dc
|
|
| MD5 |
32e564e0b36f9463b2e54881ae81ba24
|
|
| BLAKE2b-256 |
72ab12d9a582aaa5b86e22281aa631d73512f6a9c056d937ded6c52f8d18e68e
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
34456d045693ac5c35c03e54a557c60bd3d688e1ca8a480e06ca4afa437db6dc - Sigstore transparency entry: 587861383
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
87e855584cfcfcc030695f8e5f00e2248c1b46a10a71566640937f30b52848e1
|
|
| MD5 |
f0fad22b671ff23027109fb352fe6cf6
|
|
| BLAKE2b-256 |
03e2099812d9ca8f301e56cf7485165c374eaab98a76457fbf0d35c8c48f64cb
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
87e855584cfcfcc030695f8e5f00e2248c1b46a10a71566640937f30b52848e1 - Sigstore transparency entry: 587863761
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 4.3 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
100bd5f48be571fd85c1ac724cf8713ab6d8556a4a5cc8b0cdf0775eb3a0ad4a
|
|
| MD5 |
645c43d2acd3f145207dd89490574631
|
|
| BLAKE2b-256 |
114129768849b4c30f1e6a98918ebf2828bb0de41e4c8039dbdf20b31864f1a1
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl -
Subject digest:
100bd5f48be571fd85c1ac724cf8713ab6d8556a4a5cc8b0cdf0775eb3a0ad4a - Sigstore transparency entry: 587861076
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11d98bc3b70360f1dc7a3b77d34e4fa100e3267167cbde55c0d03f8866640ee1
|
|
| MD5 |
c41760c33fe8e736ce287799ab9e6ddf
|
|
| BLAKE2b-256 |
577a781d048ce5d33e2cfcadad5505c0b4ca28cf35efc59720d5b1d7ef4d3fd5
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl -
Subject digest:
11d98bc3b70360f1dc7a3b77d34e4fa100e3267167cbde55c0d03f8866640ee1 - Sigstore transparency entry: 587863471
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a29f0a787200e350e2e4b396778d5e9f01e9bc7a8d9f15f1b6e9bac1aa835cf3
|
|
| MD5 |
14aaa01deb79697fc55eb5c7424d4056
|
|
| BLAKE2b-256 |
23d60496d9c1d03bb20b13621e976ae3cc7059ad49561b0485675dc2d8d7fe76
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl -
Subject digest:
a29f0a787200e350e2e4b396778d5e9f01e9bc7a8d9f15f1b6e9bac1aa835cf3 - Sigstore transparency entry: 587861119
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e33db4ecda2818a317aa14b4d3024fa79346e54b7991d74c0009d8aee63796ae
|
|
| MD5 |
50157f46e4a023f515d7d3cc17a15243
|
|
| BLAKE2b-256 |
9ba6e75cc0da8a7cefd7fcde07d5e7c6adecd8cdf50ed4fe748ef7ecb078c073
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl -
Subject digest:
e33db4ecda2818a317aa14b4d3024fa79346e54b7991d74c0009d8aee63796ae - Sigstore transparency entry: 587863524
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp313-cp313t-manylinux_2_24_aarch64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp313-cp313t-manylinux_2_24_aarch64.whl
- Upload date:
- Size: 3.9 MB
- Tags: CPython 3.13t, manylinux: glibc 2.24+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f2ea9add340808653cf808e1f19e339d665d3ad5e60f19698c0e55aa7002ea8
|
|
| MD5 |
4780e2a522159b187bc73f40c303daef
|
|
| BLAKE2b-256 |
4c4454c15cd46a70b74837a91eb172b1297f099bb2458d91aca6a54da9a78219
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp313-cp313t-manylinux_2_24_aarch64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp313-cp313t-manylinux_2_24_aarch64.whl -
Subject digest:
1f2ea9add340808653cf808e1f19e339d665d3ad5e60f19698c0e55aa7002ea8 - Sigstore transparency entry: 587858587
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c59ec64eca3b3e99b9507b9d408ae421bca94ea7ddaca3977f4e54f1a9dc22c2
|
|
| MD5 |
e151b886b17321c912ff1faecd6ac664
|
|
| BLAKE2b-256 |
82679be7978c6d7e0dad112f3acd676b2baaf00a3ed167a79e5a1334bf3bc908
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
c59ec64eca3b3e99b9507b9d408ae421bca94ea7ddaca3977f4e54f1a9dc22c2 - Sigstore transparency entry: 587862795
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c5d3a1c5801f4b1aeb8b7253e65702ee5d514d1393e71dde353962ac5f4dc30
|
|
| MD5 |
4f070c61b7f2991b290d2f380e11fbbf
|
|
| BLAKE2b-256 |
37195d776c1b5323b03f113b4653028119a88d0e9b086ef66282fbbd03991835
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
6c5d3a1c5801f4b1aeb8b7253e65702ee5d514d1393e71dde353962ac5f4dc30 - Sigstore transparency entry: 587863378
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 3.7 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a24869972f34401b357a10600b50ece4ee3c76fd92514e7d02cb0fa346c7bdb4
|
|
| MD5 |
ecb46aa78c836ace22b4a146463031ec
|
|
| BLAKE2b-256 |
90a4ee2d63a397cb0f144d7e01fbe43d2480b470eacb5e60f6ada1c3fe7ce55e
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
a24869972f34401b357a10600b50ece4ee3c76fd92514e7d02cb0fa346c7bdb4 - Sigstore transparency entry: 587863938
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ba9929a8d051408250b3fb3bdb19593fadc798a4ad24eec644f2ca023a92b8a
|
|
| MD5 |
93ffe1df0d06056a8e271b59fa37395b
|
|
| BLAKE2b-256 |
f554b16b58ddc62835fa93abfbd9904daef9c3fb6394f465d0cb5ecda020a721
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp313-cp313-win_amd64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp313-cp313-win_amd64.whl -
Subject digest:
8ba9929a8d051408250b3fb3bdb19593fadc798a4ad24eec644f2ca023a92b8a - Sigstore transparency entry: 587859122
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 4.3 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00df3173ad076cde0c94401cc9cdc3cbcc1b627e78e6ee8687d7ac8110239c05
|
|
| MD5 |
5061b459bcf035edda8da03af62b7431
|
|
| BLAKE2b-256 |
ba18dce44052bd6e49a916c3aab80348a465c955a28f267ff85f126057aa177a
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
00df3173ad076cde0c94401cc9cdc3cbcc1b627e78e6ee8687d7ac8110239c05 - Sigstore transparency entry: 587860484
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
796aa240243048d50deec7712619b53705196ccfd044d8c87cf4eade9f10d2c6
|
|
| MD5 |
c207e5055a89637c02caf7e5615dea0a
|
|
| BLAKE2b-256 |
76b7aa6c0d3fc73509da373a4eeb49c31debd4af291ef65c54cfb51ee84c89ea
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp313-cp313-musllinux_1_2_i686.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp313-cp313-musllinux_1_2_i686.whl -
Subject digest:
796aa240243048d50deec7712619b53705196ccfd044d8c87cf4eade9f10d2c6 - Sigstore transparency entry: 587862493
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b7468595016938d4cb3d7a237d0bf3b89db8f1513e5c3115529760ad1692a23
|
|
| MD5 |
411a4b8d98896388c16282981a093036
|
|
| BLAKE2b-256 |
1665191d8023bd64dab46093055486f14037401f8383790f7c001360368f2ca5
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl -
Subject digest:
8b7468595016938d4cb3d7a237d0bf3b89db8f1513e5c3115529760ad1692a23 - Sigstore transparency entry: 587858775
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92be333086491e70aa4efa116b893ebae4c5be71afb779165e138a182d0150cc
|
|
| MD5 |
0eed0fe72dfd639418a5e847e35808e3
|
|
| BLAKE2b-256 |
b729467eaf55a78f6f19719647586db37b259a100482e12afff6d133729ed0bf
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
92be333086491e70aa4efa116b893ebae4c5be71afb779165e138a182d0150cc - Sigstore transparency entry: 587858981
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp313-cp313-manylinux_2_24_aarch64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp313-cp313-manylinux_2_24_aarch64.whl
- Upload date:
- Size: 3.9 MB
- Tags: CPython 3.13, manylinux: glibc 2.24+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8738bc942909922d0540226ad24dd7eaaf381ab992f79d4aaf2e8a87089e633d
|
|
| MD5 |
e7f76128fb83883d609ce1ec1caa1a9d
|
|
| BLAKE2b-256 |
5756c68c59e675a3cb48356f7ab2b61f1f87e1d9d2897f6e0be4b00352d09f2c
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp313-cp313-manylinux_2_24_aarch64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp313-cp313-manylinux_2_24_aarch64.whl -
Subject digest:
8738bc942909922d0540226ad24dd7eaaf381ab992f79d4aaf2e8a87089e633d - Sigstore transparency entry: 587858641
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21926de1095b86cd3e7e4c0217a8ec93ae8f9e024ada5c3a2a39ff7608c9e6be
|
|
| MD5 |
a4027bfc96258a11e2518b94d31f48bd
|
|
| BLAKE2b-256 |
f601b3437b3392fb4992afb3d3a850fed3256a21138ec9568e71bc39c734769e
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
21926de1095b86cd3e7e4c0217a8ec93ae8f9e024ada5c3a2a39ff7608c9e6be - Sigstore transparency entry: 587858863
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
630cb90ec2c09f3b553bd4ba9cdfc505d09a041845fb80f6994840983f830a8e
|
|
| MD5 |
9144b62c0905636291b8b294a45965cb
|
|
| BLAKE2b-256 |
b1fafe39d2a298c7349f59132c2ea234dfc46dcefb4eda95aecc6138358f1262
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
630cb90ec2c09f3b553bd4ba9cdfc505d09a041845fb80f6994840983f830a8e - Sigstore transparency entry: 587859234
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e88fa296dabf23b9f6a43fc670b89c2868bcb46ce7f78fc5b0d5742d0331122
|
|
| MD5 |
c0ff9baa2cdfa557122e3021466ae12f
|
|
| BLAKE2b-256 |
a98c363a37d936aeb4b5651c0b4dbee05897c060e3f8bfedeace9025f69ecdfd
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
2e88fa296dabf23b9f6a43fc670b89c2868bcb46ce7f78fc5b0d5742d0331122 - Sigstore transparency entry: 587858178
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc473c090a690d1d414725a50807a0a5d6de304321aac10323e68137303954e2
|
|
| MD5 |
b0e416e0e53d715baf0aa3ca0f6764b0
|
|
| BLAKE2b-256 |
11be6e29346edd39cd40df648871d84accb10f31e5f2a1078f5403d1b940aa9c
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
bc473c090a690d1d414725a50807a0a5d6de304321aac10323e68137303954e2 - Sigstore transparency entry: 587861749
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 3.7 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
604aa8cf1a19f60c38ef0925971937e18a8bac79c879cbcdf1f745bceb61b807
|
|
| MD5 |
fe5fccbee1277b7777860b1e6c1097b7
|
|
| BLAKE2b-256 |
48588b3ce2b825e3f3b4869e3c0fc09f02534d10e6bee4685ec9020f4332f312
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
604aa8cf1a19f60c38ef0925971937e18a8bac79c879cbcdf1f745bceb61b807 - Sigstore transparency entry: 587859922
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1ee36c86cdd1c0aa0df3376479098296ab7e625adcc86ba1ab37e74cd5fd5649
|
|
| MD5 |
393b805413b6010af9fbef8dee3f9f58
|
|
| BLAKE2b-256 |
dc1fc0270d1e60e7295657aa1cc6e2953082fafd07980a8605986772ba64ae93
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
1ee36c86cdd1c0aa0df3376479098296ab7e625adcc86ba1ab37e74cd5fd5649 - Sigstore transparency entry: 587862447
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 3.8 MB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
473cf9a350b252863a9e36ee3eda806dedba52407b018e5e3bccceb5b0416c8e
|
|
| MD5 |
7218a6ea177668dfbbc2158b4b31395f
|
|
| BLAKE2b-256 |
571954255ca4b6356bce14c8c9bab589eae5f3cc1736b19afcecad4825c5042a
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl -
Subject digest:
473cf9a350b252863a9e36ee3eda806dedba52407b018e5e3bccceb5b0416c8e - Sigstore transparency entry: 587863315
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b7e1b88b3a654547b71d537c3436fa4b8127f4b87cba2af17b04cd52ae3956e
|
|
| MD5 |
420599a46c910832fc22c29545958b7b
|
|
| BLAKE2b-256 |
72f8f486c636a405d19a168a8369a3ac2332b91302e0b82e8cf870e026721f27
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp312-cp312-win_amd64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp312-cp312-win_amd64.whl -
Subject digest:
7b7e1b88b3a654547b71d537c3436fa4b8127f4b87cba2af17b04cd52ae3956e - Sigstore transparency entry: 587859798
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 4.3 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a0936bac9815da6a64f57c56e52eddd2511b47dc383e86e7bfebbb7974a4f5e8
|
|
| MD5 |
1443d1ae57797f2005684c6c37731182
|
|
| BLAKE2b-256 |
46290fa82f4673f951eb41af7b32f32ec249d1a4d0049dc534f1cd814bc354c5
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
a0936bac9815da6a64f57c56e52eddd2511b47dc383e86e7bfebbb7974a4f5e8 - Sigstore transparency entry: 587859065
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b19a831d27ddb7b319733dedcea46057e04109299dbd4ae63e05df53beee8573
|
|
| MD5 |
ab19c7472e2c7f1bc62a1aad70d4e4e4
|
|
| BLAKE2b-256 |
1c3417963ac5a0e76aed9f7d09743df5109d8a35309cf9d7d11106b566f291e1
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp312-cp312-musllinux_1_2_i686.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp312-cp312-musllinux_1_2_i686.whl -
Subject digest:
b19a831d27ddb7b319733dedcea46057e04109299dbd4ae63e05df53beee8573 - Sigstore transparency entry: 587862671
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0516a46fc9166b1cba5ea423a480fefe4dfc421d7677435fda293e72630f95cb
|
|
| MD5 |
b277ef9d618d7524abcb0605fde50e66
|
|
| BLAKE2b-256 |
7d9082a70748f40ba7c70983294a96dc08054a51d12cb1a5f46f95bab6a4dc4f
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl -
Subject digest:
0516a46fc9166b1cba5ea423a480fefe4dfc421d7677435fda293e72630f95cb - Sigstore transparency entry: 587858256
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a7a3fbe69afbd72bd81e3a4be23d6ce315d78e2b51c5413c6a891a66aaec20b
|
|
| MD5 |
ad2665e4eaebc64fef6fdd6fc641ee73
|
|
| BLAKE2b-256 |
50cb2b7d294f461b85711c0e5176e6c2655680aadb21211d2f3e333ea53c8648
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
6a7a3fbe69afbd72bd81e3a4be23d6ce315d78e2b51c5413c6a891a66aaec20b - Sigstore transparency entry: 587860206
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp312-cp312-manylinux_2_24_aarch64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp312-cp312-manylinux_2_24_aarch64.whl
- Upload date:
- Size: 3.9 MB
- Tags: CPython 3.12, manylinux: glibc 2.24+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d2d63823bc02cc6d65daa71c04ef2371d442e19c289754ab67712b9cd9a0fbd
|
|
| MD5 |
652e4a0d0b7848086feb699bf1428d58
|
|
| BLAKE2b-256 |
2ec3cc6c1fb369f24e624dee8f0447167c0ac17de5214ad07d5f86b6312adb1c
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp312-cp312-manylinux_2_24_aarch64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp312-cp312-manylinux_2_24_aarch64.whl -
Subject digest:
6d2d63823bc02cc6d65daa71c04ef2371d442e19c289754ab67712b9cd9a0fbd - Sigstore transparency entry: 587860064
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3528008c463d8c70744821c731ea54bff828b9da47e338782e8c890eee3a77b1
|
|
| MD5 |
734a9359fd6ec90fc33dd8a807375686
|
|
| BLAKE2b-256 |
cfe512f9b91b1ef850190caa702cb2d528b535adf0143cc821bfcd90bc478cd2
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
3528008c463d8c70744821c731ea54bff828b9da47e338782e8c890eee3a77b1 - Sigstore transparency entry: 587863642
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1464c299a59ec78f885135b7c79785ba870c9928716dc0c547cd46474b84b3ba
|
|
| MD5 |
2d673dff5bff3b8fad36d6f1fe24de7d
|
|
| BLAKE2b-256 |
31bf099e85cdfc7f61655d04f3b2b7be5df980d12882462a8bc10ab50f3b0ce5
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
1464c299a59ec78f885135b7c79785ba870c9928716dc0c547cd46474b84b3ba - Sigstore transparency entry: 587859176
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e908d7794f40ab50e6a402b067675408cbcb11584619cbad7c552ebe1a991a2
|
|
| MD5 |
950128085e91ee7108f079ba1861b2f1
|
|
| BLAKE2b-256 |
bc020fad297e7c59f01b56d4220202eaa796286a27de8d3bfc1a34745bfd37ba
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
9e908d7794f40ab50e6a402b067675408cbcb11584619cbad7c552ebe1a991a2 - Sigstore transparency entry: 587861810
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21d0644860a5488e6b4a3e5c4e4ff56012fa07e5c3420a5aff617d755c2b644e
|
|
| MD5 |
152e4ed5239e48bdd32423e4f229f9a7
|
|
| BLAKE2b-256 |
9abf1816d56cda91b261e5e905a7480cb61e41989a62b084105b750b37ce111c
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
21d0644860a5488e6b4a3e5c4e4ff56012fa07e5c3420a5aff617d755c2b644e - Sigstore transparency entry: 587863036
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 3.7 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53c670743ed971334462f1df84e5fb1940b0b2eff37f0c79d5154530da4280e2
|
|
| MD5 |
9147ab82cbaff7c40b4de5adc8940d27
|
|
| BLAKE2b-256 |
d208e95c4b28cc4be81e672f7254d2e9f4404f6e4a959972e082aafbe1c5309a
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
53c670743ed971334462f1df84e5fb1940b0b2eff37f0c79d5154530da4280e2 - Sigstore transparency entry: 587859640
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5173d92f6ee9740c39bbd113b6384b8cb8eec3bebdcc32780e6fc9ef70c0d732
|
|
| MD5 |
8c9204c6f14000e46d140c876735b8a4
|
|
| BLAKE2b-256 |
e3a39bdfb9d1c0a337d23341d71a4ed0ed8f7df08d5fcc3820c65911a6d09761
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
5173d92f6ee9740c39bbd113b6384b8cb8eec3bebdcc32780e6fc9ef70c0d732 - Sigstore transparency entry: 587860744
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 3.8 MB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9122de11aef40734a4c05694c15d307dba9dc9d218c3ab98ac8a1c242e115bb
|
|
| MD5 |
16aebe749773e4834b1770d5e9bc77f7
|
|
| BLAKE2b-256 |
344d0c68a2acf6ad8d5104f86013dd2e31b88c849e3263ba1946ef8099d2729a
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl -
Subject digest:
b9122de11aef40734a4c05694c15d307dba9dc9d218c3ab98ac8a1c242e115bb - Sigstore transparency entry: 587862610
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dce0e14ac14589c6c2993424dcd5857acd216b00ee1c39f8612be7738d7d4086
|
|
| MD5 |
1548d9aef8899afd283f8e4fcdc3a770
|
|
| BLAKE2b-256 |
51562a877939991bf0f427264dc073ae3847eaab3be8ed7bcfc5c06c53383ad8
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp311-cp311-win_amd64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp311-cp311-win_amd64.whl -
Subject digest:
dce0e14ac14589c6c2993424dcd5857acd216b00ee1c39f8612be7738d7d4086 - Sigstore transparency entry: 587863804
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 4.3 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f12f1d4150d3bb60ab70dbc85de250bb8a8e803b5dee5f41fe7f6886363d9e1
|
|
| MD5 |
adae89031e67439d68266447193543b4
|
|
| BLAKE2b-256 |
228a662af4a36efc50ca516a5e1a00a31f123652763a55a7f90b651ba7e46a0c
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
1f12f1d4150d3bb60ab70dbc85de250bb8a8e803b5dee5f41fe7f6886363d9e1 - Sigstore transparency entry: 587858919
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52a5cd2274780df5d4202dce796c9bcf982331d7b37bf30ec24f714acb0b4091
|
|
| MD5 |
5b513df4fd4af9dedebe3744e571be66
|
|
| BLAKE2b-256 |
667b8f3954e512c66878fa47fe11977f2a2a5df2eac1b5d08673114c6b6474c3
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp311-cp311-musllinux_1_2_i686.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp311-cp311-musllinux_1_2_i686.whl -
Subject digest:
52a5cd2274780df5d4202dce796c9bcf982331d7b37bf30ec24f714acb0b4091 - Sigstore transparency entry: 587860853
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c3e114cbff99de5b1784e5a1f6921506fe91f24a066f6050dfe01e1b3848837
|
|
| MD5 |
4819d5a3b62eeba3c793ed079c73ddd2
|
|
| BLAKE2b-256 |
8711666be84dd2c7b672d5341a6fdefa73e850dd5641957280f92d9dc65a5269
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl -
Subject digest:
1c3e114cbff99de5b1784e5a1f6921506fe91f24a066f6050dfe01e1b3848837 - Sigstore transparency entry: 587862000
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da4158f075cc23def1b0a14fc52184fbe1467b1fb787ee1a84168648787eb7b3
|
|
| MD5 |
f3e31fa95f01e0fab5f775296f1e19ba
|
|
| BLAKE2b-256 |
c7499624bd364394f88f343e7c0b04f6187ff95ed7bb36e7339fa59f10821b91
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
da4158f075cc23def1b0a14fc52184fbe1467b1fb787ee1a84168648787eb7b3 - Sigstore transparency entry: 587859307
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp311-cp311-manylinux_2_24_aarch64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp311-cp311-manylinux_2_24_aarch64.whl
- Upload date:
- Size: 3.9 MB
- Tags: CPython 3.11, manylinux: glibc 2.24+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f044953dc9d5431ed2f72899bfb24429a7f549df0b1fb056d4e1b1478075a0e
|
|
| MD5 |
4d9f57a348e4a1efdb5a6970fcf433a3
|
|
| BLAKE2b-256 |
80161ab7cf9811b690043bfcfec96925b983f298755dcefb4df5d9a3855c98df
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp311-cp311-manylinux_2_24_aarch64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp311-cp311-manylinux_2_24_aarch64.whl -
Subject digest:
3f044953dc9d5431ed2f72899bfb24429a7f549df0b1fb056d4e1b1478075a0e - Sigstore transparency entry: 587860803
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e0c3ce7633f6c996ea61b07a44a2f23ece2f4167501542f7de9ee376704d83ef
|
|
| MD5 |
b838ed9d3accaa61e749521200001116
|
|
| BLAKE2b-256 |
4d6959a571c8db8ddd9d93aa420165eb8c2d9cc163d57f51eb179078bb8336d4
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
e0c3ce7633f6c996ea61b07a44a2f23ece2f4167501542f7de9ee376704d83ef - Sigstore transparency entry: 587863887
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b1bd1d656c0b02fdb3bdf053229e6c6666f5ad0a3084c416648cfc018fb1b9aa
|
|
| MD5 |
293884c09a07fa4441de74973aa7a176
|
|
| BLAKE2b-256 |
0773e53fe9ac3c493a65c6dd49feccf238b2380792ce73669bcd0e44ad1e7aea
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
b1bd1d656c0b02fdb3bdf053229e6c6666f5ad0a3084c416648cfc018fb1b9aa - Sigstore transparency entry: 587863098
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a30ec393f4405f3c5982e56b71fd5e216c0849ea286de4b2a4b740932c5efc6a
|
|
| MD5 |
66d980dbbac81041eca39950e3e8a8f8
|
|
| BLAKE2b-256 |
3a860c1bac13232820f51b6dd4bfd8fc64660a5917155388d196cc26b2b1d513
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
a30ec393f4405f3c5982e56b71fd5e216c0849ea286de4b2a4b740932c5efc6a - Sigstore transparency entry: 587858723
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ac6ddc976527de49602deee3a4c93961e3de49d49b46082f80cc900e15658df3
|
|
| MD5 |
4c6245c4ba9e260c71aa3fba1bdfbd61
|
|
| BLAKE2b-256 |
1d3fc8590819cc3b68c902da578dfc36d433da576680305cc924ee9368f8e0ab
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
ac6ddc976527de49602deee3a4c93961e3de49d49b46082f80cc900e15658df3 - Sigstore transparency entry: 587861420
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 3.7 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf611e5cf428bfb380a900ed268880c7b4cafe051152988cb9687bde7d5be2cc
|
|
| MD5 |
8c1cc201aff883fea398bf51b8bb9987
|
|
| BLAKE2b-256 |
97e649bdcdc4c7e18da7ff3aaff2c8cb880a668a7f70ee0220987d4f9148d47f
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
cf611e5cf428bfb380a900ed268880c7b4cafe051152988cb9687bde7d5be2cc - Sigstore transparency entry: 587860149
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e205ae9c4657d011a0213e14380dba0fe92ec4f820b4cd0a98c96477c3cdde54
|
|
| MD5 |
b2f02779b87e9e6160a9b0eafb19d114
|
|
| BLAKE2b-256 |
6574c0a2bad3e3912536aa588ae3b4b929a070d3a250e34e4a10ff5c79774688
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
e205ae9c4657d011a0213e14380dba0fe92ec4f820b4cd0a98c96477c3cdde54 - Sigstore transparency entry: 587860548
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 3.8 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c024aebd5c66c7b7ecf6b2a277f5bfdfac724706f785b91c857f1af11ff4a153
|
|
| MD5 |
a79be2fe65c081190a8ee3d0fc516bc9
|
|
| BLAKE2b-256 |
5e8529a54549eab069e025905f95a7e85ef2d9f09a1a6c7d584dbca43d462ec1
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl -
Subject digest:
c024aebd5c66c7b7ecf6b2a277f5bfdfac724706f785b91c857f1af11ff4a153 - Sigstore transparency entry: 587861699
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3feb88a32b8af58fc953c39dcac484cea1b391f27683fcf015edd23182f39555
|
|
| MD5 |
71dd64b8dce6cc87db07904c95ba6ff2
|
|
| BLAKE2b-256 |
271e40d13619ba525367f070cc1e3428ed42a519b4aad740ff7bd53c914dead4
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp310-cp310-win_amd64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp310-cp310-win_amd64.whl -
Subject digest:
3feb88a32b8af58fc953c39dcac484cea1b391f27683fcf015edd23182f39555 - Sigstore transparency entry: 587860439
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 4.3 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18b0ea70230a6f5c9ffd79e1a9106c14860f90cb17529bd0475dda670e9db0fe
|
|
| MD5 |
0ccf8e9e2a237ce2fb19ee690b919b6d
|
|
| BLAKE2b-256 |
6980c31a8067f160f3a3768fa835924c807bd5b800bcdd3ffcb953aa0cc00057
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
18b0ea70230a6f5c9ffd79e1a9106c14860f90cb17529bd0475dda670e9db0fe - Sigstore transparency entry: 587862907
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96d988fc986f41ce15701581e5a7e4463cd5909060820825c81e48a76149346b
|
|
| MD5 |
73201e84e454692a252f9cb4b9b19f0c
|
|
| BLAKE2b-256 |
6c4652c974889489b6100a66a9407196dddb833b312a0abc07f9b867f5cc819a
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp310-cp310-musllinux_1_2_i686.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp310-cp310-musllinux_1_2_i686.whl -
Subject digest:
96d988fc986f41ce15701581e5a7e4463cd5909060820825c81e48a76149346b - Sigstore transparency entry: 587863179
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3aa2b2171f560ed7dc0e2ad17111ee16d7c0c08e4924c69dc9d301ffafad49ff
|
|
| MD5 |
6796fff4e6229af18f918d6b0e3c9e35
|
|
| BLAKE2b-256 |
c35a34ea265ef01089ccf4c49046b839f250ae1903fc9ce588af302a83b84ef4
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl -
Subject digest:
3aa2b2171f560ed7dc0e2ad17111ee16d7c0c08e4924c69dc9d301ffafad49ff - Sigstore transparency entry: 587858480
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b1cad58fd24198bdf04f79d53cee0405532574a8a1b6458c58767eb0abd53aa2
|
|
| MD5 |
a1f298b3e72800985956055c32148d83
|
|
| BLAKE2b-256 |
834d0a18dfc09a53c3dc8ebe555d837d75be566f23a997ce935683d49910cead
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl -
Subject digest:
b1cad58fd24198bdf04f79d53cee0405532574a8a1b6458c58767eb0abd53aa2 - Sigstore transparency entry: 587862395
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp310-cp310-manylinux_2_24_aarch64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp310-cp310-manylinux_2_24_aarch64.whl
- Upload date:
- Size: 3.9 MB
- Tags: CPython 3.10, manylinux: glibc 2.24+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d8ebe0aae95fe05a3ea0288e582d9ffa53a0a8237791196862cda0d18c14b2f7
|
|
| MD5 |
a394996491c72e3d6c5ffcc3ca82cd06
|
|
| BLAKE2b-256 |
96063e85098eaecfb536e484c996d2a233c85362918f0945fb797b5f38996ec1
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp310-cp310-manylinux_2_24_aarch64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp310-cp310-manylinux_2_24_aarch64.whl -
Subject digest:
d8ebe0aae95fe05a3ea0288e582d9ffa53a0a8237791196862cda0d18c14b2f7 - Sigstore transparency entry: 587861465
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2a152c17828675d8a4d15b834e99606e5a159849532f3fc7ea25d51ef3f0c28
|
|
| MD5 |
c7b8f94e5dbf1470e42e6ea3ea598eca
|
|
| BLAKE2b-256 |
ea7ed29c1e2112b0724b6b66a2cc470895223dd4d743da37801afb4e8b63aa29
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
b2a152c17828675d8a4d15b834e99606e5a159849532f3fc7ea25d51ef3f0c28 - Sigstore transparency entry: 587857959
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4f13367883a811fac2b59b92f3011a0fc92f83b252b4bbd4884190072a2c4e6
|
|
| MD5 |
91ce1397f3f138ad3a8a97e0c68a1373
|
|
| BLAKE2b-256 |
2c9c982178f62abc6d69f32c5e6ed80d3b40990366003e9f2fd37d7fc1d8016c
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
a4f13367883a811fac2b59b92f3011a0fc92f83b252b4bbd4884190072a2c4e6 - Sigstore transparency entry: 587862294
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
750f1e75c3a2a77022402651f6c0138e9b85e98f1ead8b8d50bc0e091f956af2
|
|
| MD5 |
0ba1d834e75519849a9daebf2863cc01
|
|
| BLAKE2b-256 |
6729932854dee2041f2b5aa220d05bc4af6adc0a45041f86c503f8d0f7699616
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
750f1e75c3a2a77022402651f6c0138e9b85e98f1ead8b8d50bc0e091f956af2 - Sigstore transparency entry: 587861913
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8bb3dae3c83176adf748a68651cbaa92f1a5f6b1f19b2848779f0290dbd13d0
|
|
| MD5 |
4f86456a08c5fc3bd59bd391f4f5ca6a
|
|
| BLAKE2b-256 |
f31e0634137753e0ddb801848f520c410cbcabee3ecd753046297f60843f74e2
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
e8bb3dae3c83176adf748a68651cbaa92f1a5f6b1f19b2848779f0290dbd13d0 - Sigstore transparency entry: 587862562
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 3.7 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b0e363cfe2e7c76e48bcb24004088ff7f3a5547c1dcc7f78575eadb19b400b6
|
|
| MD5 |
07914d3eef6bc0c4d429a7647309f008
|
|
| BLAKE2b-256 |
94a75805628a51244133ec94af3dff133ef666a506b8815befa79b9932138bc6
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
1b0e363cfe2e7c76e48bcb24004088ff7f3a5547c1dcc7f78575eadb19b400b6 - Sigstore transparency entry: 587861860
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df3797bfb24b2b56eadde8832f59c908d2577c61658f83e01b124abd58c1c467
|
|
| MD5 |
7ded1b6928edf0fb722cab7a3e02081a
|
|
| BLAKE2b-256 |
597e541358623ef52d71b95e81f1ff0405fcb45461adf7fd4a203215f7ea447b
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp39-cp39-win_amd64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp39-cp39-win_amd64.whl -
Subject digest:
df3797bfb24b2b56eadde8832f59c908d2577c61658f83e01b124abd58c1c467 - Sigstore transparency entry: 587861945
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 4.3 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0a01e3c3f014c9dfb72ca94803abff83921145e4cc3f0c3646437db763776b2
|
|
| MD5 |
748c1000fa29f88d678a47562d6c31bf
|
|
| BLAKE2b-256 |
94198fc71d8c3b4dcf7dd73c37bb92d992b6b245244cd8b69ea34571299b2698
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl -
Subject digest:
c0a01e3c3f014c9dfb72ca94803abff83921145e4cc3f0c3646437db763776b2 - Sigstore transparency entry: 587858033
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd2403051462c8fafa9d7f351252eaa1fc49e5cd762b273d53e1eb5da06c4eb6
|
|
| MD5 |
e7017615abffe4f5fde7d6f33b641b9c
|
|
| BLAKE2b-256 |
6ea5ada670834c78535adbca0dc988a8b507f6a037ff2497c761327c87bffa4a
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp39-cp39-musllinux_1_2_i686.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp39-cp39-musllinux_1_2_i686.whl -
Subject digest:
bd2403051462c8fafa9d7f351252eaa1fc49e5cd762b273d53e1eb5da06c4eb6 - Sigstore transparency entry: 587861255
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee9f9a4afb7e32f0c50dbe535dbd34fd4002c452786a1627460495a8737fb14f
|
|
| MD5 |
c371fdc1cf115f2f62e9e24fbfcbb060
|
|
| BLAKE2b-256 |
1a2a2a20007fe0d6aa198ae57c5244fee414167aa55a6a536a63db8c3352c3ce
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl -
Subject digest:
ee9f9a4afb7e32f0c50dbe535dbd34fd4002c452786a1627460495a8737fb14f - Sigstore transparency entry: 587859721
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
980dbc17539917fddbeaaa4a6028c22bc6393e0d3c3bb171e3488b35376d6fc4
|
|
| MD5 |
310e63eb6ee39f60649e6af122e9497d
|
|
| BLAKE2b-256 |
319f95fc4aa4355b6e39203db49acb80f3ce37478abe108d35c5c292e8f5fa6b
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl -
Subject digest:
980dbc17539917fddbeaaa4a6028c22bc6393e0d3c3bb171e3488b35376d6fc4 - Sigstore transparency entry: 587862131
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp39-cp39-manylinux_2_24_aarch64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp39-cp39-manylinux_2_24_aarch64.whl
- Upload date:
- Size: 3.9 MB
- Tags: CPython 3.9, manylinux: glibc 2.24+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c17d83d58f42aa9bff04649d5e8d2356b0d75c026f22eb9264d7d3c62e011ed
|
|
| MD5 |
c11d256e7adb29dbd2075b6dabb5a248
|
|
| BLAKE2b-256 |
8f7352c95d76037ede46666ec82b299f7ffe70715720ded7a075894b0fc27a93
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp39-cp39-manylinux_2_24_aarch64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp39-cp39-manylinux_2_24_aarch64.whl -
Subject digest:
1c17d83d58f42aa9bff04649d5e8d2356b0d75c026f22eb9264d7d3c62e011ed - Sigstore transparency entry: 587861582
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4667bd02f8c93c244e6509622d5f82968d4c1d5c6b24d471a1531e42441079c5
|
|
| MD5 |
ed1503ec2f9d35fc1b3fd4fac2f17ab6
|
|
| BLAKE2b-256 |
79f3442126ee86a1188b7917b59a47b98d555a6a9346037f1317b90a4a8045b9
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
4667bd02f8c93c244e6509622d5f82968d4c1d5c6b24d471a1531e42441079c5 - Sigstore transparency entry: 587860265
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97a70b4cc7413c7acd1c1bf3aedc2f574a8aedf1be5526e21e5474d6fb90fc41
|
|
| MD5 |
1e99ebe845c19408e89ec3704198e0d2
|
|
| BLAKE2b-256 |
03dc0e2fafde4f3e5aa6d42b0bdae569e9392b6efa2f748da32ed6ac464e8e71
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
97a70b4cc7413c7acd1c1bf3aedc2f574a8aedf1be5526e21e5474d6fb90fc41 - Sigstore transparency entry: 587860625
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe037ae8fc75a1f4b48a9189d8ed848a0adb214b88263c38f6f20a0548317224
|
|
| MD5 |
3be59537ef63e8d8433f4c6ea6227e61
|
|
| BLAKE2b-256 |
815d99b163de56c5d8724e1a6867cd8011639a0f3b2ba8568720f44e152dec2f
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
fe037ae8fc75a1f4b48a9189d8ed848a0adb214b88263c38f6f20a0548317224 - Sigstore transparency entry: 587859855
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bdbb93a0964c70fe92d39b7c5a914f0e6b8143398ce1499bb24550aa4bf37d45
|
|
| MD5 |
3d4dc74c4927b49cb0a00d7b7acb0977
|
|
| BLAKE2b-256 |
7ce92e3993956c897a225b93a6e26efbffde0d448ed7438280380a046ce5f738
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
bdbb93a0964c70fe92d39b7c5a914f0e6b8143398ce1499bb24550aa4bf37d45 - Sigstore transparency entry: 587860320
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file fust_orm-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: fust_orm-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 3.7 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e5445bfa52d7a60e21313129b54cca08c03f837de6788a0a011dd734c508e510
|
|
| MD5 |
261bfdcd765a27d7743c6d9228e19347
|
|
| BLAKE2b-256 |
ccb616b8f43cb673e9851bcb6e2c3f7febf2660f85bbacde32a4c70d482a7c5d
|
Provenance
The following attestation bundles were made for fust_orm-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
publish.yml on dobrotacreator/fust-orm
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fust_orm-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
e5445bfa52d7a60e21313129b54cca08c03f837de6788a0a011dd734c508e510 - Sigstore transparency entry: 587862238
- Sigstore integration time:
-
Permalink:
dobrotacreator/fust-orm@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/dobrotacreator
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9bbc13dda0704299760e65fc1c5aa5ed7a8ef128 -
Trigger Event:
push
-
Statement type: