Python bindings for TRAVEL: traversable ground and above-ground object segmentation for 3D LiDAR scans
Project description
travel-seg
Python bindings for TRAVEL — traversable ground and above-ground object segmentation for 3D LiDAR scans.
Install
From PyPI (recommended)
pip install travel-seg
Prebuilt wheels are published for Linux x86_64 (manylinux_2_17), macOS arm64 + x86_64, and Windows x86_64 for CPython 3.8–3.13. As of v1.1, the only system dependency is Eigen — no PCL / Boost install required.
From source (development)
# System deps (Ubuntu)
sudo apt install build-essential cmake libeigen3-dev
# System deps (macOS)
brew install cmake eigen
# System deps (Windows)
vcpkg install eigen3:x64-windows
# then: -DCMAKE_PREFIX_PATH="C:/vcpkg/installed/x64-windows" forwarded by
# the release workflow / pip env on Windows.
git clone https://github.com/url-kaist/TRAVEL.git
cd TRAVEL
pip install -e python/
Usage
import numpy as np
import travel_seg as ts
# KITTI .bin → (N, 4) float32 XYZI
points = np.fromfile("0000.bin", dtype=np.float32).reshape(-1, 4)
# One-shot
result = ts.segment(points)
ground_pts = points[result.ground_mask]
for cid in np.unique(result.instance_labels):
if cid == 0:
continue
cluster_pts = points[result.instance_labels == cid]
print(f"cluster {cid}: {len(cluster_pts)} points")
# Per-frame loops: build the segmenters once, reuse
tgs = ts.TravelGroundSeg(ts.GroundSegConfig(max_range=80.0))
aos = ts.ObjectCluster(ts.ObjectClusterConfig(vert_scan=64, horz_scan=4500))
for frame in frames:
ground_mask, elapsed = tgs.estimate_ground(frame[:, :3])
labels = aos.segment_objects(frame[~ground_mask, :3])
...
API
| Symbol | Purpose |
|---|---|
GroundSegConfig |
dataclass — TGS parameters; KITTI-tuned defaults |
ObjectClusterConfig |
dataclass — AOS parameters; KITTI-tuned defaults |
TravelGroundSeg(cfg) |
reusable ground segmenter; .estimate_ground(points) -> (mask, elapsed) |
ObjectCluster(cfg) |
reusable object clusterer; .segment_objects(points) -> labels |
segment(points, ground_config=None, object_config=None) |
one-shot helper returning a SegmentResult |
SegmentResult |
dataclass: .ground_mask, .instance_labels, .elapsed_seconds |
Inputs are float32 numpy arrays of shape (N, 3) (XYZ) or (N, 4) (XYZI). The intensity column is currently ignored by both TGS and AOS but accepted for convenience when reading raw KITTI bins.
Outputs are length-N numpy arrays aligned with the original input order:
ground_mask:bool,Truewhere the input point was classified as ground.instance_labels:int32.0= ground / unclassified / dropped.1..K= per-cluster ids within this single frame (not consistent across frames).
Tests / examples
pip install -e python/[test]
pytest python/tests/
# Real data demo
python python/examples/run_kitti.py /path/to/kitti/sequences/00 0 /tmp/out
Citation
See the top-level README.
Release process
Publishing uses PyPI Trusted Publishing (OIDC), so there are no API tokens or GitHub secrets to manage. PyPI authenticates the GitHub Actions workflow directly based on a one-time pending-publisher registration.
One-time PyPI setup
Visit https://pypi.org/manage/account/publishing/ and add a pending publisher with these values (only required before the very first release; it auto-graduates to a regular trusted publisher after the first upload):
| Field | Value |
|---|---|
| PyPI Project Name | travel-seg |
| Owner | url-kaist |
| Repository name | TRAVEL |
| Workflow name | release.yml |
| Environment name | pypi |
GitHub side: create an environment named pypi at Settings -> Environments
(no secrets/protection rules needed unless you want manual approval).
Per-release flow
- Bump version in three places to keep them in sync:
python/pyproject.toml->[project] versionpython/travel_seg/__init__.py->__version__python/travel_seg/pybind/travel_pybind.cpp->m.attr("__version__")
- Commit, tag, push:
git commit -am "release: travel-seg vX.Y.Z" git tag vX.Y.Z git push origin main vX.Y.Z
- Trigger the Release (PyPI) workflow from the GitHub Actions UI.
- Verify the install in a fresh venv:
python -m venv /tmp/check && source /tmp/check/bin/activate pip install travel-seg==X.Y.Z python -c "import travel_seg as ts; import numpy as np; \ ts.segment(np.random.uniform(-10,10,(2000,3)).astype(np.float32))"
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 travel_seg-1.1.0.tar.gz.
File metadata
- Download URL: travel_seg-1.1.0.tar.gz
- Upload date:
- Size: 14.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15a801f95a128dfbc095a5c367b4ce4b0c2d73f86b5b261d1fe2f01e0261d431
|
|
| MD5 |
709bb74ed61de9887168cffddce8590b
|
|
| BLAKE2b-256 |
f0c81351648a2749fa435da55557dba7c1b8dbd815e49c7402aada5c2341a15d
|
Provenance
The following attestation bundles were made for travel_seg-1.1.0.tar.gz:
Publisher:
release.yml on url-kaist/TRAVEL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
travel_seg-1.1.0.tar.gz -
Subject digest:
15a801f95a128dfbc095a5c367b4ce4b0c2d73f86b5b261d1fe2f01e0261d431 - Sigstore transparency entry: 1489101568
- Sigstore integration time:
-
Permalink:
url-kaist/TRAVEL@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Branch / Tag:
refs/tags/v1.1.0 - Owner: https://github.com/url-kaist
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Trigger Event:
push
-
Statement type:
File details
Details for the file travel_seg-1.1.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: travel_seg-1.1.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fdb3ccdc40eb4d38c75a0b3314c9b58056886d9f735477964f4a3fd87990382f
|
|
| MD5 |
a30f7f9644bb550d13cfdde0e458ad45
|
|
| BLAKE2b-256 |
7d64c3b84d531e4a386b0c9d95153daeed6a161e3d9dce1c18bffc854778a1bd
|
Provenance
The following attestation bundles were made for travel_seg-1.1.0-cp313-cp313-win_amd64.whl:
Publisher:
release.yml on url-kaist/TRAVEL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
travel_seg-1.1.0-cp313-cp313-win_amd64.whl -
Subject digest:
fdb3ccdc40eb4d38c75a0b3314c9b58056886d9f735477964f4a3fd87990382f - Sigstore transparency entry: 1489110944
- Sigstore integration time:
-
Permalink:
url-kaist/TRAVEL@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Branch / Tag:
refs/tags/v1.1.0 - Owner: https://github.com/url-kaist
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Trigger Event:
push
-
Statement type:
File details
Details for the file travel_seg-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: travel_seg-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.2 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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1cf8202b5042eb6293c91a935fc21629e107cd3a0de266cd266ab50a6e952be4
|
|
| MD5 |
e1d66b1abe075e31897ab9c0e108ff08
|
|
| BLAKE2b-256 |
d0baf82e71ee06269cdf3efba30e516e4958c16d6ea9a56d1ab1ede0d5952864
|
Provenance
The following attestation bundles were made for travel_seg-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on url-kaist/TRAVEL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
travel_seg-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
1cf8202b5042eb6293c91a935fc21629e107cd3a0de266cd266ab50a6e952be4 - Sigstore transparency entry: 1489111761
- Sigstore integration time:
-
Permalink:
url-kaist/TRAVEL@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Branch / Tag:
refs/tags/v1.1.0 - Owner: https://github.com/url-kaist
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Trigger Event:
push
-
Statement type:
File details
Details for the file travel_seg-1.1.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: travel_seg-1.1.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7326410c1da5f31f062fee3fdb93c6d839792f874d4097e42b3c54fdb0fe5e6b
|
|
| MD5 |
a958295f056c0f17395dc770cb091331
|
|
| BLAKE2b-256 |
3cb3e5e37485f7df47b846fde636670e9756b4583e5f88fc3638baede64cd889
|
Provenance
The following attestation bundles were made for travel_seg-1.1.0-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
release.yml on url-kaist/TRAVEL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
travel_seg-1.1.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
7326410c1da5f31f062fee3fdb93c6d839792f874d4097e42b3c54fdb0fe5e6b - Sigstore transparency entry: 1489109023
- Sigstore integration time:
-
Permalink:
url-kaist/TRAVEL@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Branch / Tag:
refs/tags/v1.1.0 - Owner: https://github.com/url-kaist
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Trigger Event:
push
-
Statement type:
File details
Details for the file travel_seg-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: travel_seg-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0099f9ca24f3b9d0ee929b229279bdb64aab95499024c71410381f5540057951
|
|
| MD5 |
be03639f1ffe39fb22f12cd42e54c7e5
|
|
| BLAKE2b-256 |
e062527fe9faa02bac1e3c81e0b09620e94d36fd52eeae96540747b067a7f97b
|
Provenance
The following attestation bundles were made for travel_seg-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl:
Publisher:
release.yml on url-kaist/TRAVEL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
travel_seg-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl -
Subject digest:
0099f9ca24f3b9d0ee929b229279bdb64aab95499024c71410381f5540057951 - Sigstore transparency entry: 1489109779
- Sigstore integration time:
-
Permalink:
url-kaist/TRAVEL@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Branch / Tag:
refs/tags/v1.1.0 - Owner: https://github.com/url-kaist
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Trigger Event:
push
-
Statement type:
File details
Details for the file travel_seg-1.1.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: travel_seg-1.1.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
70dae5b13731700d5cb26993fde21d1b2833ae38a949d91f3caccde3dfbe43c7
|
|
| MD5 |
58cb993d03676c16f2ba3b6220509584
|
|
| BLAKE2b-256 |
a4229ad14f80c5f4bd39ef6a00661913350ccca6a901ec2cd4243c2626fef122
|
Provenance
The following attestation bundles were made for travel_seg-1.1.0-cp312-cp312-win_amd64.whl:
Publisher:
release.yml on url-kaist/TRAVEL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
travel_seg-1.1.0-cp312-cp312-win_amd64.whl -
Subject digest:
70dae5b13731700d5cb26993fde21d1b2833ae38a949d91f3caccde3dfbe43c7 - Sigstore transparency entry: 1489109360
- Sigstore integration time:
-
Permalink:
url-kaist/TRAVEL@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Branch / Tag:
refs/tags/v1.1.0 - Owner: https://github.com/url-kaist
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Trigger Event:
push
-
Statement type:
File details
Details for the file travel_seg-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: travel_seg-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.2 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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9bd3ab9b9328b165339842177df64fd076e52d2404d47af0cc19edd558173642
|
|
| MD5 |
54d93df8a4fee1327f70e5fe3eac71c0
|
|
| BLAKE2b-256 |
9921aeacec5d9cbb0a7f2121703929447932ecf88f16f04d2e24f9ad9252ccf7
|
Provenance
The following attestation bundles were made for travel_seg-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on url-kaist/TRAVEL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
travel_seg-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
9bd3ab9b9328b165339842177df64fd076e52d2404d47af0cc19edd558173642 - Sigstore transparency entry: 1489110049
- Sigstore integration time:
-
Permalink:
url-kaist/TRAVEL@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Branch / Tag:
refs/tags/v1.1.0 - Owner: https://github.com/url-kaist
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Trigger Event:
push
-
Statement type:
File details
Details for the file travel_seg-1.1.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: travel_seg-1.1.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d3bb24c6565aad0f85189ac8d42776f898b5d22a55d5b3fea9a0295c838584f9
|
|
| MD5 |
a9fb75e6cc5da61475be46aac2506fff
|
|
| BLAKE2b-256 |
91e876f33da692aa4b7e9f78f5cbb99216b45b4b58aa6d15b1228ffe30066f7b
|
Provenance
The following attestation bundles were made for travel_seg-1.1.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
release.yml on url-kaist/TRAVEL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
travel_seg-1.1.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
d3bb24c6565aad0f85189ac8d42776f898b5d22a55d5b3fea9a0295c838584f9 - Sigstore transparency entry: 1489109472
- Sigstore integration time:
-
Permalink:
url-kaist/TRAVEL@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Branch / Tag:
refs/tags/v1.1.0 - Owner: https://github.com/url-kaist
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Trigger Event:
push
-
Statement type:
File details
Details for the file travel_seg-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: travel_seg-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f50d3c9d8fdd26750f2af9f4b8411c23ae959c9b49234aa5ddd71031272f54bc
|
|
| MD5 |
0783139de00e5910e04ac675002c0571
|
|
| BLAKE2b-256 |
e5abcff630b5d0b21ebf7dd4ece85f98acafd03701b14bf57e48447640f67455
|
Provenance
The following attestation bundles were made for travel_seg-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl:
Publisher:
release.yml on url-kaist/TRAVEL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
travel_seg-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl -
Subject digest:
f50d3c9d8fdd26750f2af9f4b8411c23ae959c9b49234aa5ddd71031272f54bc - Sigstore transparency entry: 1489111119
- Sigstore integration time:
-
Permalink:
url-kaist/TRAVEL@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Branch / Tag:
refs/tags/v1.1.0 - Owner: https://github.com/url-kaist
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Trigger Event:
push
-
Statement type:
File details
Details for the file travel_seg-1.1.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: travel_seg-1.1.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be86b2bede4a297a110d5dc97ed6901473edceb006dcce77abc67fbca64b7d5c
|
|
| MD5 |
feeba2e7d5c9dd2b666cb5b6ea0457f2
|
|
| BLAKE2b-256 |
ef3e11eee49696b513b17fb443e4dd5cc71a848226eca7b399572128f19c8731
|
Provenance
The following attestation bundles were made for travel_seg-1.1.0-cp311-cp311-win_amd64.whl:
Publisher:
release.yml on url-kaist/TRAVEL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
travel_seg-1.1.0-cp311-cp311-win_amd64.whl -
Subject digest:
be86b2bede4a297a110d5dc97ed6901473edceb006dcce77abc67fbca64b7d5c - Sigstore transparency entry: 1489102337
- Sigstore integration time:
-
Permalink:
url-kaist/TRAVEL@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Branch / Tag:
refs/tags/v1.1.0 - Owner: https://github.com/url-kaist
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Trigger Event:
push
-
Statement type:
File details
Details for the file travel_seg-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: travel_seg-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.2 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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
27b84432412bf3a3fa04c64d24b2f512f7451efe576c29af307e2397e5cb2323
|
|
| MD5 |
30a7513e5e70930ead618784dec7aba2
|
|
| BLAKE2b-256 |
39291e6b3509f5a450d200dc8099f340beb83dd0aa0ab04d262de0bc1b848ae7
|
Provenance
The following attestation bundles were made for travel_seg-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on url-kaist/TRAVEL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
travel_seg-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
27b84432412bf3a3fa04c64d24b2f512f7451efe576c29af307e2397e5cb2323 - Sigstore transparency entry: 1489107611
- Sigstore integration time:
-
Permalink:
url-kaist/TRAVEL@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Branch / Tag:
refs/tags/v1.1.0 - Owner: https://github.com/url-kaist
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Trigger Event:
push
-
Statement type:
File details
Details for the file travel_seg-1.1.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: travel_seg-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18815153589c6a0b6fac6c4717c43312774a721cacf6ea1e6b5ca0696c2e5f89
|
|
| MD5 |
ba2652bf01aaee300ab9e7321e599ff5
|
|
| BLAKE2b-256 |
d80560e2f9933247355ec411508e58f804863d71531c3b3262f9cc730e93f8f5
|
Provenance
The following attestation bundles were made for travel_seg-1.1.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
release.yml on url-kaist/TRAVEL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
travel_seg-1.1.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
18815153589c6a0b6fac6c4717c43312774a721cacf6ea1e6b5ca0696c2e5f89 - Sigstore transparency entry: 1489111989
- Sigstore integration time:
-
Permalink:
url-kaist/TRAVEL@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Branch / Tag:
refs/tags/v1.1.0 - Owner: https://github.com/url-kaist
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Trigger Event:
push
-
Statement type:
File details
Details for the file travel_seg-1.1.0-cp311-cp311-macosx_10_13_x86_64.whl.
File metadata
- Download URL: travel_seg-1.1.0-cp311-cp311-macosx_10_13_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.11, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e43e4e1d1cc685356b950ac3032c6e8313dec4cadc3b65bf4cdefe50d884b6d
|
|
| MD5 |
0dbe644f194447cb02ea9dbc611d7f1a
|
|
| BLAKE2b-256 |
d2928b86be613bd87c3f73f96feee9957b6dc367b4e85d0eee23b79150e3edab
|
Provenance
The following attestation bundles were made for travel_seg-1.1.0-cp311-cp311-macosx_10_13_x86_64.whl:
Publisher:
release.yml on url-kaist/TRAVEL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
travel_seg-1.1.0-cp311-cp311-macosx_10_13_x86_64.whl -
Subject digest:
6e43e4e1d1cc685356b950ac3032c6e8313dec4cadc3b65bf4cdefe50d884b6d - Sigstore transparency entry: 1489111461
- Sigstore integration time:
-
Permalink:
url-kaist/TRAVEL@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Branch / Tag:
refs/tags/v1.1.0 - Owner: https://github.com/url-kaist
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Trigger Event:
push
-
Statement type:
File details
Details for the file travel_seg-1.1.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: travel_seg-1.1.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
93d17d14635460f0b0222f11fc6f16fc9799640fcc01a4a2421ea513b096ff37
|
|
| MD5 |
9aa3f83ea510c0ab9e95276026ff386d
|
|
| BLAKE2b-256 |
9bce1e9e17fbc82f47036202593504012cb6e1d068372bac9506f8203723ed92
|
Provenance
The following attestation bundles were made for travel_seg-1.1.0-cp310-cp310-win_amd64.whl:
Publisher:
release.yml on url-kaist/TRAVEL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
travel_seg-1.1.0-cp310-cp310-win_amd64.whl -
Subject digest:
93d17d14635460f0b0222f11fc6f16fc9799640fcc01a4a2421ea513b096ff37 - Sigstore transparency entry: 1489110410
- Sigstore integration time:
-
Permalink:
url-kaist/TRAVEL@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Branch / Tag:
refs/tags/v1.1.0 - Owner: https://github.com/url-kaist
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Trigger Event:
push
-
Statement type:
File details
Details for the file travel_seg-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: travel_seg-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.2 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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7647f3fdf5ce8f4c5a326a9c9e7306431dc7e743bc02b93b8bdeb29a1e2a1283
|
|
| MD5 |
c4c096a36576487a03db9f0fd261fe1e
|
|
| BLAKE2b-256 |
4bdfbd9e494aaf2b0b23c188949dc3bd92c55936e256a19f7cd5b9ea22fd1b22
|
Provenance
The following attestation bundles were made for travel_seg-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on url-kaist/TRAVEL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
travel_seg-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
7647f3fdf5ce8f4c5a326a9c9e7306431dc7e743bc02b93b8bdeb29a1e2a1283 - Sigstore transparency entry: 1489110304
- Sigstore integration time:
-
Permalink:
url-kaist/TRAVEL@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Branch / Tag:
refs/tags/v1.1.0 - Owner: https://github.com/url-kaist
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Trigger Event:
push
-
Statement type:
File details
Details for the file travel_seg-1.1.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: travel_seg-1.1.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
45762e7b5adf6eff297bc639eed785918c50c2d47bfd7cac32061e02461a3acb
|
|
| MD5 |
a6c4ad2fd6e21560b13b1b155098569b
|
|
| BLAKE2b-256 |
9856f96e1439548a7bc9d6335236ee558aab40d7c445117b63da08155fbc7e0b
|
Provenance
The following attestation bundles were made for travel_seg-1.1.0-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
release.yml on url-kaist/TRAVEL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
travel_seg-1.1.0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
45762e7b5adf6eff297bc639eed785918c50c2d47bfd7cac32061e02461a3acb - Sigstore transparency entry: 1489105326
- Sigstore integration time:
-
Permalink:
url-kaist/TRAVEL@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Branch / Tag:
refs/tags/v1.1.0 - Owner: https://github.com/url-kaist
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Trigger Event:
push
-
Statement type:
File details
Details for the file travel_seg-1.1.0-cp310-cp310-macosx_10_13_x86_64.whl.
File metadata
- Download URL: travel_seg-1.1.0-cp310-cp310-macosx_10_13_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.10, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
388c52e8d5d4b1d70c62c2f7183456bc95cbbb1f38c030d9567b0a06099e9399
|
|
| MD5 |
2919733f55683d7be8818545104e8404
|
|
| BLAKE2b-256 |
8b774ad4a58074a6ba01555150269a0b1a5493dabbed42aac76c942ab1f429d4
|
Provenance
The following attestation bundles were made for travel_seg-1.1.0-cp310-cp310-macosx_10_13_x86_64.whl:
Publisher:
release.yml on url-kaist/TRAVEL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
travel_seg-1.1.0-cp310-cp310-macosx_10_13_x86_64.whl -
Subject digest:
388c52e8d5d4b1d70c62c2f7183456bc95cbbb1f38c030d9567b0a06099e9399 - Sigstore transparency entry: 1489110706
- Sigstore integration time:
-
Permalink:
url-kaist/TRAVEL@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Branch / Tag:
refs/tags/v1.1.0 - Owner: https://github.com/url-kaist
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Trigger Event:
push
-
Statement type:
File details
Details for the file travel_seg-1.1.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: travel_seg-1.1.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
54f1d35db282b8af454406efe800f707fc280dd598a3b43861d1e53ee5b53fdd
|
|
| MD5 |
361e1405bd7cf545a7ec9690399166c3
|
|
| BLAKE2b-256 |
8591117dd8525258007bf7ea1c51f227211d6383cb90b78e75f20e278b7c20b3
|
Provenance
The following attestation bundles were made for travel_seg-1.1.0-cp39-cp39-win_amd64.whl:
Publisher:
release.yml on url-kaist/TRAVEL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
travel_seg-1.1.0-cp39-cp39-win_amd64.whl -
Subject digest:
54f1d35db282b8af454406efe800f707fc280dd598a3b43861d1e53ee5b53fdd - Sigstore transparency entry: 1489108449
- Sigstore integration time:
-
Permalink:
url-kaist/TRAVEL@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Branch / Tag:
refs/tags/v1.1.0 - Owner: https://github.com/url-kaist
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Trigger Event:
push
-
Statement type:
File details
Details for the file travel_seg-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: travel_seg-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.2 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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb6039df9532667e47211bac64015c08a61258fc4e43d4c578cd5fa508584fc2
|
|
| MD5 |
fe603319fd1e0f4ce2e132073fa75615
|
|
| BLAKE2b-256 |
6047dcda609a60e0be8852faf098855ca7c7085389026fe303362a95d2f34967
|
Provenance
The following attestation bundles were made for travel_seg-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on url-kaist/TRAVEL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
travel_seg-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
bb6039df9532667e47211bac64015c08a61258fc4e43d4c578cd5fa508584fc2 - Sigstore transparency entry: 1489106630
- Sigstore integration time:
-
Permalink:
url-kaist/TRAVEL@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Branch / Tag:
refs/tags/v1.1.0 - Owner: https://github.com/url-kaist
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Trigger Event:
push
-
Statement type:
File details
Details for the file travel_seg-1.1.0-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: travel_seg-1.1.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51645a6ab7a30389f8ba511b8517aceda11194ca5ee9077a136f52f09e8e260a
|
|
| MD5 |
4fb09b884d6830577634c2e2aab8a5ea
|
|
| BLAKE2b-256 |
572d0003235d6c07a9aae181ad3ba7ec058754ea6f142df8ee54960cdda5f49f
|
Provenance
The following attestation bundles were made for travel_seg-1.1.0-cp39-cp39-macosx_11_0_arm64.whl:
Publisher:
release.yml on url-kaist/TRAVEL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
travel_seg-1.1.0-cp39-cp39-macosx_11_0_arm64.whl -
Subject digest:
51645a6ab7a30389f8ba511b8517aceda11194ca5ee9077a136f52f09e8e260a - Sigstore transparency entry: 1489111324
- Sigstore integration time:
-
Permalink:
url-kaist/TRAVEL@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Branch / Tag:
refs/tags/v1.1.0 - Owner: https://github.com/url-kaist
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Trigger Event:
push
-
Statement type:
File details
Details for the file travel_seg-1.1.0-cp39-cp39-macosx_10_13_x86_64.whl.
File metadata
- Download URL: travel_seg-1.1.0-cp39-cp39-macosx_10_13_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.9, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04609df4299d36470a87aac1a89ee610e44e057b80322724af2a6e4ed2f13ae8
|
|
| MD5 |
1143198cf3f6207d4c0ecf9915dc52ed
|
|
| BLAKE2b-256 |
de62c1cbad85134a047536aa81e0cb0dbeb718fc76172c46a0d60af02c5164fa
|
Provenance
The following attestation bundles were made for travel_seg-1.1.0-cp39-cp39-macosx_10_13_x86_64.whl:
Publisher:
release.yml on url-kaist/TRAVEL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
travel_seg-1.1.0-cp39-cp39-macosx_10_13_x86_64.whl -
Subject digest:
04609df4299d36470a87aac1a89ee610e44e057b80322724af2a6e4ed2f13ae8 - Sigstore transparency entry: 1489111198
- Sigstore integration time:
-
Permalink:
url-kaist/TRAVEL@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Branch / Tag:
refs/tags/v1.1.0 - Owner: https://github.com/url-kaist
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Trigger Event:
push
-
Statement type:
File details
Details for the file travel_seg-1.1.0-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: travel_seg-1.1.0-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f395757e0e352ed44b24ad73da14c286ee6a53dc4a05ce3ebf899b3cf9f8903
|
|
| MD5 |
331d15fbe8dc9753e946003e74682f7b
|
|
| BLAKE2b-256 |
8a8c87cbd60d49d53e7544f3bb6cb40fe641b897667a79db9d914e92d6ee00d8
|
Provenance
The following attestation bundles were made for travel_seg-1.1.0-cp38-cp38-win_amd64.whl:
Publisher:
release.yml on url-kaist/TRAVEL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
travel_seg-1.1.0-cp38-cp38-win_amd64.whl -
Subject digest:
6f395757e0e352ed44b24ad73da14c286ee6a53dc4a05ce3ebf899b3cf9f8903 - Sigstore transparency entry: 1489111510
- Sigstore integration time:
-
Permalink:
url-kaist/TRAVEL@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Branch / Tag:
refs/tags/v1.1.0 - Owner: https://github.com/url-kaist
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Trigger Event:
push
-
Statement type:
File details
Details for the file travel_seg-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: travel_seg-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.2 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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8499978341fcc2c8d336c406d642f4c47ec164855df8526fd7eb58d5665ddd7d
|
|
| MD5 |
8072bcc02e5e94c05ffa98d54214709e
|
|
| BLAKE2b-256 |
b719105295d94241f28e4424eddb4a8c5ca9af1f70cedac7842b546b378d17be
|
Provenance
The following attestation bundles were made for travel_seg-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on url-kaist/TRAVEL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
travel_seg-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
8499978341fcc2c8d336c406d642f4c47ec164855df8526fd7eb58d5665ddd7d - Sigstore transparency entry: 1489103819
- Sigstore integration time:
-
Permalink:
url-kaist/TRAVEL@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Branch / Tag:
refs/tags/v1.1.0 - Owner: https://github.com/url-kaist
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Trigger Event:
push
-
Statement type:
File details
Details for the file travel_seg-1.1.0-cp38-cp38-macosx_11_0_arm64.whl.
File metadata
- Download URL: travel_seg-1.1.0-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e0a809364ca7e3daf483b406d3d4ed7cc1a697694727e699efabf23809180b2f
|
|
| MD5 |
296ff4d3d2494b669773a5125ccb52a7
|
|
| BLAKE2b-256 |
5c482a252aefa0c88469194594874e4c7ec7857fa8ddfdf5510062fe71c94599
|
Provenance
The following attestation bundles were made for travel_seg-1.1.0-cp38-cp38-macosx_11_0_arm64.whl:
Publisher:
release.yml on url-kaist/TRAVEL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
travel_seg-1.1.0-cp38-cp38-macosx_11_0_arm64.whl -
Subject digest:
e0a809364ca7e3daf483b406d3d4ed7cc1a697694727e699efabf23809180b2f - Sigstore transparency entry: 1489104683
- Sigstore integration time:
-
Permalink:
url-kaist/TRAVEL@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Branch / Tag:
refs/tags/v1.1.0 - Owner: https://github.com/url-kaist
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Trigger Event:
push
-
Statement type:
File details
Details for the file travel_seg-1.1.0-cp38-cp38-macosx_10_13_x86_64.whl.
File metadata
- Download URL: travel_seg-1.1.0-cp38-cp38-macosx_10_13_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.8, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7757dec49f7161640e69765091b5e7cc86eacb168b8ded871862ec552bd6762d
|
|
| MD5 |
037e89d9f4748231667046c7c3121259
|
|
| BLAKE2b-256 |
c674deed46f06ae3d8a8e8b5ad76ff5c29b1fcaaf511cd528aeed50a68f327fb
|
Provenance
The following attestation bundles were made for travel_seg-1.1.0-cp38-cp38-macosx_10_13_x86_64.whl:
Publisher:
release.yml on url-kaist/TRAVEL
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
travel_seg-1.1.0-cp38-cp38-macosx_10_13_x86_64.whl -
Subject digest:
7757dec49f7161640e69765091b5e7cc86eacb168b8ded871862ec552bd6762d - Sigstore transparency entry: 1489111578
- Sigstore integration time:
-
Permalink:
url-kaist/TRAVEL@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Branch / Tag:
refs/tags/v1.1.0 - Owner: https://github.com/url-kaist
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@9430ac3d28b4687a630a58ddc3ede1f32b1af557 -
Trigger Event:
push
-
Statement type: