Skip to main content

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, True where 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

  1. Bump version in three places to keep them in sync:
    • python/pyproject.toml -> [project] version
    • python/travel_seg/__init__.py -> __version__
    • python/travel_seg/pybind/travel_pybind.cpp -> m.attr("__version__")
  2. Commit, tag, push:
    git commit -am "release: travel-seg vX.Y.Z"
    git tag vX.Y.Z
    git push origin main vX.Y.Z
    
  3. Trigger the Release (PyPI) workflow from the GitHub Actions UI.
  4. 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

travel_seg-1.1.0.tar.gz (14.1 kB view details)

Uploaded Source

Built Distributions

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

travel_seg-1.1.0-cp313-cp313-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86-64

travel_seg-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

travel_seg-1.1.0-cp313-cp313-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

travel_seg-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

travel_seg-1.1.0-cp312-cp312-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.12Windows x86-64

travel_seg-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

travel_seg-1.1.0-cp312-cp312-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

travel_seg-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

travel_seg-1.1.0-cp311-cp311-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86-64

travel_seg-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

travel_seg-1.1.0-cp311-cp311-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

travel_seg-1.1.0-cp311-cp311-macosx_10_13_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

travel_seg-1.1.0-cp310-cp310-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.10Windows x86-64

travel_seg-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

travel_seg-1.1.0-cp310-cp310-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

travel_seg-1.1.0-cp310-cp310-macosx_10_13_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

travel_seg-1.1.0-cp39-cp39-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.9Windows x86-64

travel_seg-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

travel_seg-1.1.0-cp39-cp39-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

travel_seg-1.1.0-cp39-cp39-macosx_10_13_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9macOS 10.13+ x86-64

travel_seg-1.1.0-cp38-cp38-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.8Windows x86-64

travel_seg-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

travel_seg-1.1.0-cp38-cp38-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

travel_seg-1.1.0-cp38-cp38-macosx_10_13_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8macOS 10.13+ x86-64

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

Hashes for travel_seg-1.1.0.tar.gz
Algorithm Hash digest
SHA256 15a801f95a128dfbc095a5c367b4ce4b0c2d73f86b5b261d1fe2f01e0261d431
MD5 709bb74ed61de9887168cffddce8590b
BLAKE2b-256 f0c81351648a2749fa435da55557dba7c1b8dbd815e49c7402aada5c2341a15d

See more details on using hashes here.

Provenance

The following attestation bundles were made for travel_seg-1.1.0.tar.gz:

Publisher: release.yml on url-kaist/TRAVEL

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

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

Hashes for travel_seg-1.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fdb3ccdc40eb4d38c75a0b3314c9b58056886d9f735477964f4a3fd87990382f
MD5 a30f7f9644bb550d13cfdde0e458ad45
BLAKE2b-256 7d64c3b84d531e4a386b0c9d95153daeed6a161e3d9dce1c18bffc854778a1bd

See more details on using hashes here.

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

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

File details

Details for the file travel_seg-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for travel_seg-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1cf8202b5042eb6293c91a935fc21629e107cd3a0de266cd266ab50a6e952be4
MD5 e1d66b1abe075e31897ab9c0e108ff08
BLAKE2b-256 d0baf82e71ee06269cdf3efba30e516e4958c16d6ea9a56d1ab1ede0d5952864

See more details on using hashes here.

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

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

File details

Details for the file travel_seg-1.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for travel_seg-1.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7326410c1da5f31f062fee3fdb93c6d839792f874d4097e42b3c54fdb0fe5e6b
MD5 a958295f056c0f17395dc770cb091331
BLAKE2b-256 3cb3e5e37485f7df47b846fde636670e9756b4583e5f88fc3638baede64cd889

See more details on using hashes here.

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

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

File details

Details for the file travel_seg-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for travel_seg-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0099f9ca24f3b9d0ee929b229279bdb64aab95499024c71410381f5540057951
MD5 be03639f1ffe39fb22f12cd42e54c7e5
BLAKE2b-256 e062527fe9faa02bac1e3c81e0b09620e94d36fd52eeae96540747b067a7f97b

See more details on using hashes here.

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

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

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

Hashes for travel_seg-1.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 70dae5b13731700d5cb26993fde21d1b2833ae38a949d91f3caccde3dfbe43c7
MD5 58cb993d03676c16f2ba3b6220509584
BLAKE2b-256 a4229ad14f80c5f4bd39ef6a00661913350ccca6a901ec2cd4243c2626fef122

See more details on using hashes here.

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

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

File details

Details for the file travel_seg-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for travel_seg-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9bd3ab9b9328b165339842177df64fd076e52d2404d47af0cc19edd558173642
MD5 54d93df8a4fee1327f70e5fe3eac71c0
BLAKE2b-256 9921aeacec5d9cbb0a7f2121703929447932ecf88f16f04d2e24f9ad9252ccf7

See more details on using hashes here.

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

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

File details

Details for the file travel_seg-1.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for travel_seg-1.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3bb24c6565aad0f85189ac8d42776f898b5d22a55d5b3fea9a0295c838584f9
MD5 a9fb75e6cc5da61475be46aac2506fff
BLAKE2b-256 91e876f33da692aa4b7e9f78f5cbb99216b45b4b58aa6d15b1228ffe30066f7b

See more details on using hashes here.

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

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

File details

Details for the file travel_seg-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for travel_seg-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f50d3c9d8fdd26750f2af9f4b8411c23ae959c9b49234aa5ddd71031272f54bc
MD5 0783139de00e5910e04ac675002c0571
BLAKE2b-256 e5abcff630b5d0b21ebf7dd4ece85f98acafd03701b14bf57e48447640f67455

See more details on using hashes here.

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

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

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

Hashes for travel_seg-1.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 be86b2bede4a297a110d5dc97ed6901473edceb006dcce77abc67fbca64b7d5c
MD5 feeba2e7d5c9dd2b666cb5b6ea0457f2
BLAKE2b-256 ef3e11eee49696b513b17fb443e4dd5cc71a848226eca7b399572128f19c8731

See more details on using hashes here.

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

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

File details

Details for the file travel_seg-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for travel_seg-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27b84432412bf3a3fa04c64d24b2f512f7451efe576c29af307e2397e5cb2323
MD5 30a7513e5e70930ead618784dec7aba2
BLAKE2b-256 39291e6b3509f5a450d200dc8099f340beb83dd0aa0ab04d262de0bc1b848ae7

See more details on using hashes here.

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

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

File details

Details for the file travel_seg-1.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for travel_seg-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 18815153589c6a0b6fac6c4717c43312774a721cacf6ea1e6b5ca0696c2e5f89
MD5 ba2652bf01aaee300ab9e7321e599ff5
BLAKE2b-256 d80560e2f9933247355ec411508e58f804863d71531c3b3262f9cc730e93f8f5

See more details on using hashes here.

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

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

File details

Details for the file travel_seg-1.1.0-cp311-cp311-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for travel_seg-1.1.0-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6e43e4e1d1cc685356b950ac3032c6e8313dec4cadc3b65bf4cdefe50d884b6d
MD5 0dbe644f194447cb02ea9dbc611d7f1a
BLAKE2b-256 d2928b86be613bd87c3f73f96feee9957b6dc367b4e85d0eee23b79150e3edab

See more details on using hashes here.

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

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

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

Hashes for travel_seg-1.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 93d17d14635460f0b0222f11fc6f16fc9799640fcc01a4a2421ea513b096ff37
MD5 9aa3f83ea510c0ab9e95276026ff386d
BLAKE2b-256 9bce1e9e17fbc82f47036202593504012cb6e1d068372bac9506f8203723ed92

See more details on using hashes here.

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

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

File details

Details for the file travel_seg-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for travel_seg-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7647f3fdf5ce8f4c5a326a9c9e7306431dc7e743bc02b93b8bdeb29a1e2a1283
MD5 c4c096a36576487a03db9f0fd261fe1e
BLAKE2b-256 4bdfbd9e494aaf2b0b23c188949dc3bd92c55936e256a19f7cd5b9ea22fd1b22

See more details on using hashes here.

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

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

File details

Details for the file travel_seg-1.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for travel_seg-1.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45762e7b5adf6eff297bc639eed785918c50c2d47bfd7cac32061e02461a3acb
MD5 a6c4ad2fd6e21560b13b1b155098569b
BLAKE2b-256 9856f96e1439548a7bc9d6335236ee558aab40d7c445117b63da08155fbc7e0b

See more details on using hashes here.

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

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

File details

Details for the file travel_seg-1.1.0-cp310-cp310-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for travel_seg-1.1.0-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 388c52e8d5d4b1d70c62c2f7183456bc95cbbb1f38c030d9567b0a06099e9399
MD5 2919733f55683d7be8818545104e8404
BLAKE2b-256 8b774ad4a58074a6ba01555150269a0b1a5493dabbed42aac76c942ab1f429d4

See more details on using hashes here.

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

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

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

Hashes for travel_seg-1.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 54f1d35db282b8af454406efe800f707fc280dd598a3b43861d1e53ee5b53fdd
MD5 361e1405bd7cf545a7ec9690399166c3
BLAKE2b-256 8591117dd8525258007bf7ea1c51f227211d6383cb90b78e75f20e278b7c20b3

See more details on using hashes here.

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

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

File details

Details for the file travel_seg-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for travel_seg-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bb6039df9532667e47211bac64015c08a61258fc4e43d4c578cd5fa508584fc2
MD5 fe603319fd1e0f4ce2e132073fa75615
BLAKE2b-256 6047dcda609a60e0be8852faf098855ca7c7085389026fe303362a95d2f34967

See more details on using hashes here.

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

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

File details

Details for the file travel_seg-1.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for travel_seg-1.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51645a6ab7a30389f8ba511b8517aceda11194ca5ee9077a136f52f09e8e260a
MD5 4fb09b884d6830577634c2e2aab8a5ea
BLAKE2b-256 572d0003235d6c07a9aae181ad3ba7ec058754ea6f142df8ee54960cdda5f49f

See more details on using hashes here.

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

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

File details

Details for the file travel_seg-1.1.0-cp39-cp39-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for travel_seg-1.1.0-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 04609df4299d36470a87aac1a89ee610e44e057b80322724af2a6e4ed2f13ae8
MD5 1143198cf3f6207d4c0ecf9915dc52ed
BLAKE2b-256 de62c1cbad85134a047536aa81e0cb0dbeb718fc76172c46a0d60af02c5164fa

See more details on using hashes here.

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

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

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

Hashes for travel_seg-1.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6f395757e0e352ed44b24ad73da14c286ee6a53dc4a05ce3ebf899b3cf9f8903
MD5 331d15fbe8dc9753e946003e74682f7b
BLAKE2b-256 8a8c87cbd60d49d53e7544f3bb6cb40fe641b897667a79db9d914e92d6ee00d8

See more details on using hashes here.

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

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

File details

Details for the file travel_seg-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for travel_seg-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8499978341fcc2c8d336c406d642f4c47ec164855df8526fd7eb58d5665ddd7d
MD5 8072bcc02e5e94c05ffa98d54214709e
BLAKE2b-256 b719105295d94241f28e4424eddb4a8c5ca9af1f70cedac7842b546b378d17be

See more details on using hashes here.

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

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

File details

Details for the file travel_seg-1.1.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for travel_seg-1.1.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0a809364ca7e3daf483b406d3d4ed7cc1a697694727e699efabf23809180b2f
MD5 296ff4d3d2494b669773a5125ccb52a7
BLAKE2b-256 5c482a252aefa0c88469194594874e4c7ec7857fa8ddfdf5510062fe71c94599

See more details on using hashes here.

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

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

File details

Details for the file travel_seg-1.1.0-cp38-cp38-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for travel_seg-1.1.0-cp38-cp38-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7757dec49f7161640e69765091b5e7cc86eacb168b8ded871862ec552bd6762d
MD5 037e89d9f4748231667046c7c3121259
BLAKE2b-256 c674deed46f06ae3d8a8e8b5ad76ff5c29b1fcaaf511cd528aeed50a68f327fb

See more details on using hashes here.

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

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page