sekejap
sekejap is a graph-first, embedded multimodel database that stores your data in several forms at once: plain records, graph relationships, geographic shapes, vectors, and full text. You can query and combine them in a single SQL statement.
It runs inside your application, like SQLite, with no separate server to install or manage. Store your database on local disk for lightweight and offline use, or use S3-compatible object storage for datasets that grow beyond a single machine.
(“sekejap” is Indonesian for “a brief moment”, reflecting how quickly you can set it up and start working with your multimodel data.)
It's available as a Rust/Python/Dart/Kotlin/Swift/Java/Node.js/Go library, and a command-line tool.
📖 Documentation: docs/ — a user guide
(the query language, including the SELECT … FROM MATCH
graph reference) and engine internals.
Why you might want it
Applications often need more than one kind of database at the same time:
- a relational store for structured records,
- a graph database for relationships ("who is connected to what"),
- a spatial index for location queries ("what's near me"),
- a vector store for similarity search over embeddings,
- a full-text search engine for matching words in text.
Running and keeping all of those in sync is a lot of moving parts. sekejap puts them in one embedded engine behind one query language, so a single query can use several of them together.
It's a good fit for:
- Local and mobile apps — runs in-process with no server and a small footprint, so it works offline on phones and edge devices.
- Hybrid search and RAG — rank results by combining vector similarity, geographic location, and text relevance in a single query, then follow the graph to pull in related records as context for a model.
- On-device memory for AI — an agent or robot records what it observes (place, time, a note, a perception vector) as it happens, and later recalls it by any mix of location, similarity, and relationships — a private, queryable memory with no network round-trip.
Install
Python — PyPI
pip install sekejap # includes S3 support
Rust — crates.io
cargo add sekejap # library
cargo add sekejap --features s3 # library, with S3 support
cargo install sekejap-cli # command-line tool
Node.js — npm
npm install sekejap # prebuilt native binaries, no toolchain needed
Dart / Flutter — pub.dev
flutter pub add sekejap # or: dart pub add sekejap
Kotlin / Java — Maven Central
// build.gradle.kts
implementation("com.zebflow:sekejap:0.13.3")
A first look
The examples below all use the same small dataset: some tourists, the flights they arrived on, and places, restaurants, and dishes to visit and eat.
1. Create some tables
A table needs a _key column as its primary key. Other columns can be ordinary
types (TEXT, INTEGER, REAL, TIMESTAMPTZ) or one of the special ones:
GEO for geography, VECTOR for embeddings.
from sekejap import DB
db = DB("./bali") # a directory on disk; created if it doesn't exist
db.execute("""
CREATE TABLE tourists (
_key TEXT PRIMARY KEY,
name TEXT,
home_city TEXT,
arrival TIMESTAMPTZ,
taste VECTOR -- an embedding of what this person likes
)
""")
db.execute("CREATE TABLE flights (_key TEXT PRIMARY KEY, airline TEXT, duration_hours INTEGER)")
db.execute("CREATE TABLE restaurants (_key TEXT PRIMARY KEY, name TEXT, area TEXT, geometry GEO)")
db.execute("""
CREATE TABLE dishes (
_key TEXT PRIMARY KEY, name TEXT, price INTEGER, protein_g INTEGER,
description TEXT, geometry GEO, open_now BOOLEAN, embedding VECTOR
)
""")
2. Add indexes for the query types you'll use
An index makes a certain kind of lookup fast. You only need the ones your queries actually use.
db.execute("CREATE INDEX ON dishes USING spatial (geometry)") # location queries
db.execute("CREATE INDEX ON dishes USING bm25 (description)") # text relevance
db.execute("CREATE INDEX ON tourists USING hnsw (taste)") # vector similarity
3. Insert data
db.execute("INSERT INTO tourists (_key, name, home_city, arrival) VALUES ('chloe', 'Chloe', 'Melbourne', '2024-06-01')")
db.execute("INSERT INTO tourists (_key, name, home_city, arrival) VALUES ('aiym', 'Aiym', 'Almaty', '2024-06-02')")
# A relationship (edge): tourist "chloe" flew on flight "qf-mel".
db.execute("INSERT ('tourists/chloe')-[:flew_on]->('flights/qf-mel')")
4. Run a query
Ordinary SQL works as you'd expect:
db.query("SELECT name, home_city FROM tourists WHERE home_city = 'Melbourne'")
# → { name: "Chloe", home_city: "Melbourne" }
That's the whole loop: create tables, add the indexes you need, insert rows and relationships, and query. The rest of this README shows what each data model can do, then how to combine them.
The five data models
Each section is a short, self-contained example. They build toward the last one, where several models are used in a single query.
Records and filters (SQL)
Standard SQL — SELECT, WHERE, ORDER BY, GROUP BY, aggregates.
db.query("""
SELECT area, COUNT(*) AS n
FROM restaurants
GROUP BY area
ORDER BY n DESC
""")
Relationships (graph)
A relationship between two rows is called an edge. You query edges with a
MATCH pattern inside FROM. Everything around the MATCH is ordinary SQL.
# Follow one edge: which flight did Chloe arrive on?
db.query("""
SELECT f.airline AS airline, f.duration_hours AS hours
FROM MATCH (t:tourists)-[:flew_on]->(f:flights)
WHERE t._key = 'chloe'
""")
The pattern reads left to right: start at a tourists row (t), follow a
flew_on edge, arrive at a flights row (f). The arrow direction matters —
-[:e]-> follows edges forward, <-[:e]- follows them backward.
You can follow a chain of several hops, and *1..3 means "between 1 and 3 hops":
# Places reachable within 2 "near" hops of somewhere Chloe visited.
# DISTINCT removes duplicates when a place can be reached more than one way.
db.query("""
SELECT DISTINCT p._key AS place
FROM MATCH (c:tourists)-[:visited]->(m:places)-[:near*1..2]->(p:places)
WHERE c._key = 'chloe'
""")
Location (spatial)
A GEO column holds a shape (a point, line, or polygon). With a spatial index
you can ask distance and containment questions.
# Restaurants within 5 km of a point (longitude, latitude).
db.query("""
SELECT name FROM restaurants
WHERE ST_DWithin(geometry, POINT(115.168 -8.690), 5.0)
""")
Similarity (vector)
A VECTOR column holds an embedding — a list of numbers that captures the
"meaning" of something. With an HNSW index you can find the rows whose vectors
are closest to a given one.
# The 5 tourists whose taste is most similar to a given taste vector.
db.query("""
SELECT name FROM tourists
WHERE VECTOR_NEAR(taste, [0.9, 0.1, 0.0, 0.0], 5)
""")
Text (full-text)
For matching words in text, sekejap offers three tools:
ILIKE '%word%'— simple substring match (fast with aginindex).BM25(field, 'query')— relevance scoring, like a classic search engine.SEARCH('query')— a positional search index with typo tolerance.
# Dishes whose description is relevant to "grilled chicken", best first.
db.query("""
SELECT name FROM dishes
WHERE BM25(description, 'grilled chicken') > 0.0
ORDER BY BM25(description, 'grilled chicken') DESC
""")
Time
Timestamps are ordinary columns; a few helper functions work on them.
db.query("""
SELECT name, AGE_DAYS(arrival) AS days_here, NOW() AS current_time
FROM tourists WHERE _key = 'chloe'
""")
# → { name: "Chloe", days_here: 5, current_time: "2024-06-06T09:00:00Z" }
Combining models in one query
This is the point of a multi-model database: asking one question that would otherwise need several systems.
"What should Chloe order for delivery right now?" — a dish that is near her, still open, in her price range, has enough protein, matches a craving, and is ranked by how well it fits both the words she typed and her taste.
db.query("""
SELECT r.name AS restaurant, d.name AS dish, d.price AS price
FROM MATCH (r:restaurants)-[:serves]->(d:dishes)
WHERE d.open_now = true
AND d.price BETWEEN 40000 AND 90000 -- price range (IDR)
AND d.protein_g >= 25 -- enough protein
AND ST_DWithin(d.geometry, POINT(115.168 -8.690), 5.0) -- within 5 km
AND BM25(d.description, 'grilled chicken healthy') > 0.0 -- matches the craving
ORDER BY BM25(d.description, 'grilled healthy') * 0.6 -- text relevance
+ VECTOR_COSINE(d.embedding, [0.7,0.3,0.0,0.0]) * 0.4 -- taste similarity
DESC
LIMIT 10
""")
The WHERE clause narrows the results using the graph, spatial, scalar, and
text models. The ORDER BY combines a text score and a vector score into one
ranking. The whole thing is one statement.
A second example — a personal journal where each entry records a place, a time, some text, and a "mood" vector. Because the entries are just rows (and can be linked into the graph), you can search them by text, by similarity, or by time:
db.execute("""
CREATE TABLE diary (
_key TEXT PRIMARY KEY, author TEXT, place TEXT,
logged_at TIMESTAMPTZ, reflection TEXT, mood VECTOR
)
""")
db.execute("CREATE INDEX ON diary USING search (reflection)") # search the text
db.execute("CREATE INDEX ON diary USING hnsw (mood)") # find similar moods
# "Where did I write about feeling small?" — text search over the entries.
db.query("""
SELECT place, logged_at FROM diary
WHERE author = 'chloe' AND SEARCH('small still')
ORDER BY logged_at
""")
# "Find an earlier moment that felt like tonight." — nearest mood vector.
db.query("""
SELECT place, reflection FROM diary
WHERE author = 'chloe'
ORDER BY mood <=> [0.2, 0.7, 0.1, 0.0] ASC
LIMIT 1
""")
Data types
| Type | SQL keyword | Stored as | Use for |
|---|---|---|---|
| Text | TEXT |
UTF-8 string | names, categories, keys |
| Integer | INTEGER |
64-bit integer | prices, durations, counts |
| Float | REAL |
64-bit float | scores, ratings, weights |
| Boolean | BOOLEAN |
true / false |
flags, toggles (e.g. open_now) |
| Timestamp | TIMESTAMPTZ |
ISO-8601 date/time | arrivals, log times |
| Geometry | GEO |
GeoJSON shape | points, areas, routes |
| Vector | VECTOR |
list of floats | embeddings (taste, mood, images) |
| JSON | JSON |
arbitrary JSON | nested / unstructured data |
- GEO accepts any GeoJSON geometry —
Point,Polygon,LineString,MultiPolygon. - VECTOR is written as an array literal:
[0.12, -0.03, 0.87, ...].
Indexes
An index speeds up one kind of query. Create only the ones you need.
| Index | USING keyword |
Makes this fast |
|---|---|---|
| Hash | hash |
equality: field = 'x', IN (...) |
| B-tree | btree |
ranges and ordering: >, <, BETWEEN, ORDER BY |
| GIN | gin |
substring text match: ILIKE '%pattern%' |
| Spatial | spatial |
location: ST_DWithin, ST_Contains, ST_Within, ST_Intersects |
| HNSW | hnsw |
vector similarity: VECTOR_NEAR(...), <=> ordering |
| BM25 | bm25 |
ranked text search: BM25(field, 'query') |
| Search | search |
positional, typo-tolerant search: SEARCH('query') |
CREATE INDEX ON dishes USING spatial (geometry)
CREATE INDEX ON dishes USING bm25 (description)
CREATE INDEX ON diary USING search (reflection)
CREATE INDEX ON tourists USING hnsw (taste)
All index types survive a restart. After a large bulk load, run REINDEX (or
.compact in the CLI) so later startups are fast.
Interfaces
sekejap has three ways to use it. They query the same database.
SQL
The main interface. A quick tour of what the dialect supports:
-- Schema
CREATE TABLE places (_key TEXT PRIMARY KEY, name TEXT, category TEXT, geometry GEO)
ALTER TABLE places ADD COLUMN rating REAL
ALTER TABLE places RENAME COLUMN category TO kind
-- Rows
INSERT INTO places (_key, name, category) VALUES ('uluwatu', 'Uluwatu Temple', 'temple')
UPDATE places SET rating = 4.8 WHERE _key = 'uluwatu'
DELETE FROM places WHERE kind = 'closed'
-- Edges, optionally with properties
INSERT ('tourists/chloe')-[:visited {rating: 4.8, hours: 2}]->('places/uluwatu')
DELETE ('tourists/chloe')-[:visited]->('places/uluwatu')
-- Graph traversal: forward -[:e]-> and backward <-[:e]-
SELECT dest._key AS place
FROM MATCH (a:places)-[:near*1..3]->(dest:places)
WHERE a._key = 'seminyak-beach'
-- Aggregation over a pattern: COUNT / SUM / AVG / MIN / MAX, and COUNT(DISTINCT ...)
SELECT p._key AS place, COUNT(DISTINCT t.home_city) AS cities
FROM MATCH (p:places)<-[:visited]-(t:tourists)
GROUP BY p._key
ORDER BY cities DESC
-- Edge properties: a named edge (-[v:type]->) exposes its rating + metadata
SELECT t.name AS visitor, v.rating AS rating
FROM MATCH (p:places)<-[v:visited]-(t:tourists)
WHERE p._key = 'uluwatu'
ORDER BY v.rating DESC
-- Multi-stage traversal: carry a result into a follow-on MATCH with WITH
SELECT d.name AS dish, COUNT(*) AS orders
FROM MATCH (c:tourists)-[:similar_taste]->(peer:tourists)
WHERE c._key = 'chloe'
WITH peer
MATCH (peer)-[:ate]->(d:dishes)
GROUP BY d.name
-- Shortest path: 0 rows if unreachable, 1 row if a path exists
SELECT a.name AS from_n, b.name AS to_n, r.length AS hops
FROM MATCH SHORTEST (a:tourists)-[r*]->(b:dishes)
WHERE a._key = 'chloe' AND b._key = 'betutu-chicken'
-- Spatial, vector, and text
SELECT * FROM places WHERE ST_DWithin(geometry, POINT(115.168 -8.690), 5.0)
SELECT * FROM tourists WHERE VECTOR_NEAR(taste, [0.9, 0.1, 0.0, 0.0], 5)
SELECT * FROM places WHERE name ILIKE '%uluwatu%'
-- Transactions: all statements commit together, or none do
BEGIN
INSERT ('tourists/chloe')-[:booked]->('flights/qf-mel')
INSERT ('tourists/chloe')-[:stayed_at]->('villas/seminyak-01')
COMMIT
-- Inspect the database
SHOW TABLES
SHOW EDGES FROM tourists TO places
Rust
Besides raw SQL, the Rust library has a builder API for lower-level control:
use sekejap::CoreDB;
let mut db = CoreDB::open("./bali")?;
// Restaurants within 3 km of a point (latitude, longitude, km).
let nearby = db.collection("restaurants")
.st_dwithin(-8.690, 115.168, 3.0)
.collect();
// Filter and sort.
let picks = db.collection("dishes")
.where_gte("protein_g", 25.0)
.sort("price", true) // true = ascending
.take(10)
.collect();
// Add a plain edge.
db.link("tourists/chloe", "places/uluwatu", "visited");
// Add an edge with attributes (any names; primitives are stored efficiently).
db.link_meta("tourists/chloe", "places/uluwatu", "visited", r#"{"rating": 4.8, "hours": 2}"#)?;
Python (with pandas)
The Python library can load from and return pandas DataFrames:
import pandas as pd
from sekejap import DB
db = DB("./bali")
# Load a DataFrame as rows in a table.
df = pd.read_csv("tourists.csv")
db.df.load_nodes(df, "tourists", id_col="tourist_id",
mapping={"tourist_id": "_key", "full_name": "name"})
# Get query results back as a DataFrame.
result = db.df.query("SELECT * FROM dishes WHERE protein_g >= 25")
Data larger than local disk (S3)
sekejap can keep its data on S3-compatible storage and fetch pieces on demand, so you can query datasets bigger than the local disk. Works with AWS S3, MinIO, Cloudflare R2, and other S3-compatible stores.
from sekejap import DB
db = DB.open_s3("s3://my-bucket/bali",
access_key_id="AKID...", secret_access_key="secret...",
region="ap-southeast-1",
cache_budget_bytes=256 * 1024 * 1024) # in-memory cache size
db.query("SELECT * FROM places WHERE ST_DWithin(geometry, POINT(115.168 -8.690), 10.0)")
Command-line tool
sekejap # in-memory session
sekejap ./bali # open a database on disk
sekejap ./bali "SELECT * FROM places;" # run one statement and exit
echo "SELECT ...;" | sekejap ./bali # pipe in a script
Inside the interactive session:
sekejap> CREATE TABLE places (_key TEXT, name TEXT, geometry GEO);
sekejap> SELECT * FROM places WHERE ST_DWithin(geometry, POINT(115.168 -8.690), 5.0);
sekejap> .tables # list tables
sekejap> .schema places # show a table's columns
sekejap> .compact # compact the database after a big load
sekejap> .help
License
MIT
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 sekejap-0.13.4.tar.gz.
File metadata
- Download URL: sekejap-0.13.4.tar.gz
- Upload date:
- Size: 846.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b8dd44053c237f89859964685ad797e61dd83a5330dddd4f9035456dde2874d
|
|
| MD5 |
8daeff8d57d29047ecbdd09e7890c6f7
|
|
| BLAKE2b-256 |
59b93e14765dcc1481f3fbc2281ee6c0e326985b8e064305039c30cf1cef31a3
|
Provenance
The following attestation bundles were made for sekejap-0.13.4.tar.gz:
Publisher:
release.yml on sekejapdb/sekejap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sekejap-0.13.4.tar.gz -
Subject digest:
9b8dd44053c237f89859964685ad797e61dd83a5330dddd4f9035456dde2874d - Sigstore transparency entry: 2280894117
- Sigstore integration time:
-
Permalink:
sekejapdb/sekejap@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Branch / Tag:
refs/tags/v0.13.4 - Owner: https://github.com/sekejapdb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Trigger Event:
push
-
Statement type:
File details
Details for the file sekejap-0.13.4-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: sekejap-0.13.4-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab14584fb255a0f3e5f69a4be6e35ba95c3f48fb1e9ff5ceee0759230506ab4a
|
|
| MD5 |
ab36fbc455d1d446df9ebf8e17de4d9c
|
|
| BLAKE2b-256 |
3700e77a4c13c5b88c79eb6a3f93d5ad82d79349cec1a5a907c6ff1ac9b5a650
|
Provenance
The following attestation bundles were made for sekejap-0.13.4-cp313-cp313-win_amd64.whl:
Publisher:
release.yml on sekejapdb/sekejap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sekejap-0.13.4-cp313-cp313-win_amd64.whl -
Subject digest:
ab14584fb255a0f3e5f69a4be6e35ba95c3f48fb1e9ff5ceee0759230506ab4a - Sigstore transparency entry: 2280894199
- Sigstore integration time:
-
Permalink:
sekejapdb/sekejap@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Branch / Tag:
refs/tags/v0.13.4 - Owner: https://github.com/sekejapdb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Trigger Event:
push
-
Statement type:
File details
Details for the file sekejap-0.13.4-cp313-cp313-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: sekejap-0.13.4-cp313-cp313-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 4.6 MB
- Tags: CPython 3.13, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0688381925fcf7f7f22ab591eff071b168c2afd256153470efc6a8d83ea5c4f2
|
|
| MD5 |
a83eb05822324f1b4bff586aca680d9c
|
|
| BLAKE2b-256 |
526ab0d70cbf3e6ef1c2a17d32504c27a5ffcb16f925907240ad656be360df21
|
Provenance
The following attestation bundles were made for sekejap-0.13.4-cp313-cp313-manylinux_2_28_aarch64.whl:
Publisher:
release.yml on sekejapdb/sekejap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sekejap-0.13.4-cp313-cp313-manylinux_2_28_aarch64.whl -
Subject digest:
0688381925fcf7f7f22ab591eff071b168c2afd256153470efc6a8d83ea5c4f2 - Sigstore transparency entry: 2280894214
- Sigstore integration time:
-
Permalink:
sekejapdb/sekejap@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Branch / Tag:
refs/tags/v0.13.4 - Owner: https://github.com/sekejapdb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Trigger Event:
push
-
Statement type:
File details
Details for the file sekejap-0.13.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: sekejap-0.13.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.0 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.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd4bc9724acacd2cad19129b2e2d44552c02f464ce48b9e6d849033e9ba59da7
|
|
| MD5 |
2177df387089b68a02a67bebf50c88f3
|
|
| BLAKE2b-256 |
ad9f5d9b2b49a20051487ba145a83aba53495e77d029f264960631068dc1444a
|
Provenance
The following attestation bundles were made for sekejap-0.13.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on sekejapdb/sekejap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sekejap-0.13.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
bd4bc9724acacd2cad19129b2e2d44552c02f464ce48b9e6d849033e9ba59da7 - Sigstore transparency entry: 2280894284
- Sigstore integration time:
-
Permalink:
sekejapdb/sekejap@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Branch / Tag:
refs/tags/v0.13.4 - Owner: https://github.com/sekejapdb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Trigger Event:
push
-
Statement type:
File details
Details for the file sekejap-0.13.4-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: sekejap-0.13.4-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20124d3f05424c8efff696a02550b224a2206134aec398265262f6fc87897d0e
|
|
| MD5 |
ef5278450307f0212926cd64a381903f
|
|
| BLAKE2b-256 |
85c87da9f6f5b95f30eda0a35da1fcd4e4a35acc643235df9426c6e0a7344ab3
|
Provenance
The following attestation bundles were made for sekejap-0.13.4-cp312-cp312-win_amd64.whl:
Publisher:
release.yml on sekejapdb/sekejap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sekejap-0.13.4-cp312-cp312-win_amd64.whl -
Subject digest:
20124d3f05424c8efff696a02550b224a2206134aec398265262f6fc87897d0e - Sigstore transparency entry: 2280894162
- Sigstore integration time:
-
Permalink:
sekejapdb/sekejap@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Branch / Tag:
refs/tags/v0.13.4 - Owner: https://github.com/sekejapdb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Trigger Event:
push
-
Statement type:
File details
Details for the file sekejap-0.13.4-cp312-cp312-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: sekejap-0.13.4-cp312-cp312-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 4.6 MB
- Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8e3650a51f5dfc8c57030810ea615bcfd30141f7ac6131cadb3dce6f9692301
|
|
| MD5 |
7fbd88d536ccc70badcb9e0d3209919f
|
|
| BLAKE2b-256 |
4393ef4909123a12917f88a31fe220b21c58e5ddd8642fdb11591b8af76bfe52
|
Provenance
The following attestation bundles were made for sekejap-0.13.4-cp312-cp312-manylinux_2_28_aarch64.whl:
Publisher:
release.yml on sekejapdb/sekejap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sekejap-0.13.4-cp312-cp312-manylinux_2_28_aarch64.whl -
Subject digest:
e8e3650a51f5dfc8c57030810ea615bcfd30141f7ac6131cadb3dce6f9692301 - Sigstore transparency entry: 2280894256
- Sigstore integration time:
-
Permalink:
sekejapdb/sekejap@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Branch / Tag:
refs/tags/v0.13.4 - Owner: https://github.com/sekejapdb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Trigger Event:
push
-
Statement type:
File details
Details for the file sekejap-0.13.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: sekejap-0.13.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.0 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.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d38f4d4ba2c2477f135e3834a0ecad6a5629163d6f53407960596c1a230739fd
|
|
| MD5 |
1759206750b946298361354132ff96cd
|
|
| BLAKE2b-256 |
bf89777a998851452873efe85a442396f6a4821f6071b0d6b5a57091584033b2
|
Provenance
The following attestation bundles were made for sekejap-0.13.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on sekejapdb/sekejap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sekejap-0.13.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
d38f4d4ba2c2477f135e3834a0ecad6a5629163d6f53407960596c1a230739fd - Sigstore transparency entry: 2280894228
- Sigstore integration time:
-
Permalink:
sekejapdb/sekejap@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Branch / Tag:
refs/tags/v0.13.4 - Owner: https://github.com/sekejapdb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Trigger Event:
push
-
Statement type:
File details
Details for the file sekejap-0.13.4-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: sekejap-0.13.4-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56eb6d53e5761f8adfbb7a7349d21c59cbb0acb850499840c83df7468c41b363
|
|
| MD5 |
d78722422a3af38f6f0a3c87da9aac77
|
|
| BLAKE2b-256 |
4fad6cdefc31355e7154a146393569ffe45dc1e6667c51115ea8cde906c8cd23
|
Provenance
The following attestation bundles were made for sekejap-0.13.4-cp311-cp311-win_amd64.whl:
Publisher:
release.yml on sekejapdb/sekejap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sekejap-0.13.4-cp311-cp311-win_amd64.whl -
Subject digest:
56eb6d53e5761f8adfbb7a7349d21c59cbb0acb850499840c83df7468c41b363 - Sigstore transparency entry: 2280894181
- Sigstore integration time:
-
Permalink:
sekejapdb/sekejap@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Branch / Tag:
refs/tags/v0.13.4 - Owner: https://github.com/sekejapdb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Trigger Event:
push
-
Statement type:
File details
Details for the file sekejap-0.13.4-cp311-cp311-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: sekejap-0.13.4-cp311-cp311-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 4.6 MB
- Tags: CPython 3.11, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef2b64000368412d6016796ea441bcf4cf48b8d4de0b08b08643bc1d4aaa8b8b
|
|
| MD5 |
6a68dd9ec5768046c59f30c896fe0874
|
|
| BLAKE2b-256 |
69b746372125b036bfb691c7e779cadf645c103d5c44c68e8d1423fdddfd2ad8
|
Provenance
The following attestation bundles were made for sekejap-0.13.4-cp311-cp311-manylinux_2_28_aarch64.whl:
Publisher:
release.yml on sekejapdb/sekejap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sekejap-0.13.4-cp311-cp311-manylinux_2_28_aarch64.whl -
Subject digest:
ef2b64000368412d6016796ea441bcf4cf48b8d4de0b08b08643bc1d4aaa8b8b - Sigstore transparency entry: 2280894130
- Sigstore integration time:
-
Permalink:
sekejapdb/sekejap@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Branch / Tag:
refs/tags/v0.13.4 - Owner: https://github.com/sekejapdb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Trigger Event:
push
-
Statement type:
File details
Details for the file sekejap-0.13.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: sekejap-0.13.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.0 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.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
064fa8d5cab05c27a7e8491a6679c0b5f6a2e970d96d1b10c13e140f8d1330fa
|
|
| MD5 |
81c56275a47e199efba13b087baa3ba2
|
|
| BLAKE2b-256 |
48c5dddcc9799675b9bac58c8225d13ad70b937a5e184c0c17c3eb35b5d325aa
|
Provenance
The following attestation bundles were made for sekejap-0.13.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on sekejapdb/sekejap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sekejap-0.13.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
064fa8d5cab05c27a7e8491a6679c0b5f6a2e970d96d1b10c13e140f8d1330fa - Sigstore transparency entry: 2280894150
- Sigstore integration time:
-
Permalink:
sekejapdb/sekejap@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Branch / Tag:
refs/tags/v0.13.4 - Owner: https://github.com/sekejapdb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Trigger Event:
push
-
Statement type:
File details
Details for the file sekejap-0.13.4-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: sekejap-0.13.4-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
75432ce9132838815651e228f193c02b7ce0ceba312e0751f6aa5628e345cc1e
|
|
| MD5 |
c31a356f6587b6d4794b3d750966a6f8
|
|
| BLAKE2b-256 |
695e58884c4348336399fc15aa06b71d70b08f02898b8d8fcf2fba909668d879
|
Provenance
The following attestation bundles were made for sekejap-0.13.4-cp310-cp310-win_amd64.whl:
Publisher:
release.yml on sekejapdb/sekejap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sekejap-0.13.4-cp310-cp310-win_amd64.whl -
Subject digest:
75432ce9132838815651e228f193c02b7ce0ceba312e0751f6aa5628e345cc1e - Sigstore transparency entry: 2280894190
- Sigstore integration time:
-
Permalink:
sekejapdb/sekejap@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Branch / Tag:
refs/tags/v0.13.4 - Owner: https://github.com/sekejapdb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Trigger Event:
push
-
Statement type:
File details
Details for the file sekejap-0.13.4-cp310-cp310-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: sekejap-0.13.4-cp310-cp310-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 4.6 MB
- Tags: CPython 3.10, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a919619dd19a1034295a554d714e48e5b379c77d7cfdb59232f86f1b018bd22a
|
|
| MD5 |
118f836feee13d96234f2520c46f3c2d
|
|
| BLAKE2b-256 |
f6b513130831a00df519e4a5cb3b0c1f7f054b7efb0be5eaa721c69491112a9b
|
Provenance
The following attestation bundles were made for sekejap-0.13.4-cp310-cp310-manylinux_2_28_aarch64.whl:
Publisher:
release.yml on sekejapdb/sekejap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sekejap-0.13.4-cp310-cp310-manylinux_2_28_aarch64.whl -
Subject digest:
a919619dd19a1034295a554d714e48e5b379c77d7cfdb59232f86f1b018bd22a - Sigstore transparency entry: 2280894267
- Sigstore integration time:
-
Permalink:
sekejapdb/sekejap@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Branch / Tag:
refs/tags/v0.13.4 - Owner: https://github.com/sekejapdb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Trigger Event:
push
-
Statement type:
File details
Details for the file sekejap-0.13.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: sekejap-0.13.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.0 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.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b337471e9ed295c30a369d624ff9566c0b269fc103cc76057d5a009a9ac789c7
|
|
| MD5 |
5d2531a868adc3d1016253011c6166e0
|
|
| BLAKE2b-256 |
50155f0051c5bc8f6e3c366db2449f729422ed90fd913bfc452cc48acf2558e9
|
Provenance
The following attestation bundles were made for sekejap-0.13.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on sekejapdb/sekejap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sekejap-0.13.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
b337471e9ed295c30a369d624ff9566c0b269fc103cc76057d5a009a9ac789c7 - Sigstore transparency entry: 2280894140
- Sigstore integration time:
-
Permalink:
sekejapdb/sekejap@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Branch / Tag:
refs/tags/v0.13.4 - Owner: https://github.com/sekejapdb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Trigger Event:
push
-
Statement type:
File details
Details for the file sekejap-0.13.4-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: sekejap-0.13.4-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ea948aa4d22c3e7d2f82c9ccef782b84c9d1640c3e581e012679ea73da4d80f
|
|
| MD5 |
e156237d9e1d0be6053c392d0f73c40a
|
|
| BLAKE2b-256 |
b7af480dc68ff4a61a6332e0f56070d0fc5a7c09edf6a508d6799df85d7ed4b2
|
Provenance
The following attestation bundles were made for sekejap-0.13.4-cp39-cp39-win_amd64.whl:
Publisher:
release.yml on sekejapdb/sekejap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sekejap-0.13.4-cp39-cp39-win_amd64.whl -
Subject digest:
9ea948aa4d22c3e7d2f82c9ccef782b84c9d1640c3e581e012679ea73da4d80f - Sigstore transparency entry: 2280894221
- Sigstore integration time:
-
Permalink:
sekejapdb/sekejap@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Branch / Tag:
refs/tags/v0.13.4 - Owner: https://github.com/sekejapdb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Trigger Event:
push
-
Statement type:
File details
Details for the file sekejap-0.13.4-cp39-cp39-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: sekejap-0.13.4-cp39-cp39-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 4.6 MB
- Tags: CPython 3.9, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
896597534e0ece52ba0f0a044d7920762c75861d68f1132b332838916c92e141
|
|
| MD5 |
6a5e2b51cf06e6230116c4e2a501fc29
|
|
| BLAKE2b-256 |
3f9645c7137f3c1d555a3e17080f67c9b134b6779d703302be12d28b8c5f8966
|
Provenance
The following attestation bundles were made for sekejap-0.13.4-cp39-cp39-manylinux_2_28_aarch64.whl:
Publisher:
release.yml on sekejapdb/sekejap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sekejap-0.13.4-cp39-cp39-manylinux_2_28_aarch64.whl -
Subject digest:
896597534e0ece52ba0f0a044d7920762c75861d68f1132b332838916c92e141 - Sigstore transparency entry: 2280894278
- Sigstore integration time:
-
Permalink:
sekejapdb/sekejap@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Branch / Tag:
refs/tags/v0.13.4 - Owner: https://github.com/sekejapdb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Trigger Event:
push
-
Statement type:
File details
Details for the file sekejap-0.13.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: sekejap-0.13.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.0 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.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa6de77287db8a5c0adac04ff0d2850d6ed87c398bee39d5d65c8e57ea07d1be
|
|
| MD5 |
369e8d33956a046864ebe72640831d32
|
|
| BLAKE2b-256 |
2d3a830cb477333d54a5fdc298d6991a2f1d0d1369694e3b523c2ccf25588dc6
|
Provenance
The following attestation bundles were made for sekejap-0.13.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on sekejapdb/sekejap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sekejap-0.13.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
aa6de77287db8a5c0adac04ff0d2850d6ed87c398bee39d5d65c8e57ea07d1be - Sigstore transparency entry: 2280894296
- Sigstore integration time:
-
Permalink:
sekejapdb/sekejap@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Branch / Tag:
refs/tags/v0.13.4 - Owner: https://github.com/sekejapdb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Trigger Event:
push
-
Statement type:
File details
Details for the file sekejap-0.13.4-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: sekejap-0.13.4-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4095390a5699e4a20b23d5ea3d21fe3d3d53594b7f95ea18d7889cdebf7d5384
|
|
| MD5 |
c24e41478c83efcbf7ea832774e1163a
|
|
| BLAKE2b-256 |
950fdf2c0056192e421f0f00be27e931ff2165382b5977846e946f364aad84b8
|
Provenance
The following attestation bundles were made for sekejap-0.13.4-cp38-cp38-win_amd64.whl:
Publisher:
release.yml on sekejapdb/sekejap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sekejap-0.13.4-cp38-cp38-win_amd64.whl -
Subject digest:
4095390a5699e4a20b23d5ea3d21fe3d3d53594b7f95ea18d7889cdebf7d5384 - Sigstore transparency entry: 2280894246
- Sigstore integration time:
-
Permalink:
sekejapdb/sekejap@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Branch / Tag:
refs/tags/v0.13.4 - Owner: https://github.com/sekejapdb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Trigger Event:
push
-
Statement type:
File details
Details for the file sekejap-0.13.4-cp38-cp38-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: sekejap-0.13.4-cp38-cp38-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 4.6 MB
- Tags: CPython 3.8, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
609e824dbfe584db5f2900c22b86aafb227289c8726ff14c04eba8ae529cf86c
|
|
| MD5 |
b2e425294157ff29009edebc54fc5066
|
|
| BLAKE2b-256 |
057ea576f433686ece3fec333a2be7f76de916a7aa9607e0259ee298924db64c
|
Provenance
The following attestation bundles were made for sekejap-0.13.4-cp38-cp38-manylinux_2_28_aarch64.whl:
Publisher:
release.yml on sekejapdb/sekejap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sekejap-0.13.4-cp38-cp38-manylinux_2_28_aarch64.whl -
Subject digest:
609e824dbfe584db5f2900c22b86aafb227289c8726ff14c04eba8ae529cf86c - Sigstore transparency entry: 2280894238
- Sigstore integration time:
-
Permalink:
sekejapdb/sekejap@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Branch / Tag:
refs/tags/v0.13.4 - Owner: https://github.com/sekejapdb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Trigger Event:
push
-
Statement type:
File details
Details for the file sekejap-0.13.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: sekejap-0.13.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.0 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d92a708516fdab69db2697988ac96ccf43191a53d1e78300e261e2974e5424a2
|
|
| MD5 |
1f6be100f28f7a331fd8aa17f3cf40d2
|
|
| BLAKE2b-256 |
0289854d63089908ac05c4c5cb9cbb397dfefc41cd5c741a4eddb1a70852c8be
|
Provenance
The following attestation bundles were made for sekejap-0.13.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on sekejapdb/sekejap
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sekejap-0.13.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
d92a708516fdab69db2697988ac96ccf43191a53d1e78300e261e2974e5424a2 - Sigstore transparency entry: 2280894304
- Sigstore integration time:
-
Permalink:
sekejapdb/sekejap@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Branch / Tag:
refs/tags/v0.13.4 - Owner: https://github.com/sekejapdb
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@436178eed146e15c8db8bbf9837a3b01a05fbe81 -
Trigger Event:
push
-
Statement type: