Skip to main content

Wrapper for the Hybrid Genetic Search algorithm for Capacitated Vehicle Routing Problems (HGS-CVRP)

Project description

HybGenSea: Hybrid Genetic Search

This is a rebranded fork of PyHygese by Changhyun Kwon.

A solver for the Capacitated Vehicle Routing Problem (CVRP)

This package provides a simple Python wrapper for the Hybrid Genetic Search solver for Capacitated Vehicle Routing Problems (HGS-CVRP).

Installation

pip install hybgensea

CVRP Example (random)

import numpy as np 
import hybgensea as hgs

n = 20
x = (np.random.rand(n) * 1000)
y = (np.random.rand(n) * 1000)

# Solver initialization
ap = hgs.AlgorithmParameters(timeLimit=3.2)  # seconds
hgs_solver = hgs.Solver(parameters=ap, verbose=True)

# data preparation
data = dict()
data['x_coordinates'] = x
data['y_coordinates'] = y

# You may also supply distance_matrix instead of coordinates, or in addition to coordinates
# If you supply distance_matrix, it will be used for cost calculation.
# The additional coordinates will be helpful in speeding up the algorithm.
# data['distance_matrix'] = dist_mtx

data['service_times'] = np.zeros(n)
demands = np.ones(n)
demands[0] = 0 # depot demand = 0
data['demands'] = demands
data['vehicle_capacity'] = np.ceil(n/3).astype(int)
data['num_vehicles'] = 3
data['depot'] = 0

result = hgs_solver.solve_cvrp(data)
print(result.cost)
print(result.routes)

NOTE: The result.routes above does not include the depot. All vehicles start from the depot and return to the depot.

another CVRP example

# A CVRP from https://developers.google.com/optimization/routing/cvrp
import numpy as np 
import hybgensea as hgs 

data = dict()
data['distance_matrix'] = [
    [0, 548, 776, 696, 582, 274, 502, 194, 308, 194, 536, 502, 388, 354, 468, 776, 662],
    [548, 0, 684, 308, 194, 502, 730, 354, 696, 742, 1084, 594, 480, 674, 1016, 868, 1210],
    [776, 684, 0, 992, 878, 502, 274, 810, 468, 742, 400, 1278, 1164, 1130, 788, 1552, 754],
    [696, 308, 992, 0, 114, 650, 878, 502, 844, 890, 1232, 514, 628, 822, 1164, 560, 1358],
    [582, 194, 878, 114, 0, 536, 764, 388, 730, 776, 1118, 400, 514, 708, 1050, 674, 1244],
    [274, 502, 502, 650, 536, 0, 228, 308, 194, 240, 582, 776, 662, 628, 514, 1050, 708],
    [502, 730, 274, 878, 764, 228, 0, 536, 194, 468, 354, 1004, 890, 856, 514, 1278, 480],
    [194, 354, 810, 502, 388, 308, 536, 0, 342, 388, 730, 468, 354, 320, 662, 742, 856],
    [308, 696, 468, 844, 730, 194, 194, 342, 0, 274, 388, 810, 696, 662, 320, 1084, 514],
    [194, 742, 742, 890, 776, 240, 468, 388, 274, 0, 342, 536, 422, 388, 274, 810, 468],
    [536, 1084, 400, 1232, 1118, 582, 354, 730, 388, 342, 0, 878, 764, 730, 388, 1152, 354],
    [502, 594, 1278, 514, 400, 776, 1004, 468, 810, 536, 878, 0, 114, 308, 650, 274, 844],
    [388, 480, 1164, 628, 514, 662, 890, 354, 696, 422, 764, 114, 0, 194, 536, 388, 730],
    [354, 674, 1130, 822, 708, 628, 856, 320, 662, 388, 730, 308, 194, 0, 342, 422, 536],
    [468, 1016, 788, 1164, 1050, 514, 514, 662, 320, 274, 388, 650, 536, 342, 0, 764, 194],
    [776, 868, 1552, 560, 674, 1050, 1278, 742, 1084, 810, 1152, 274, 388, 422, 764, 0, 798],
    [662, 1210, 754, 1358, 1244, 708, 480, 856, 514, 468, 354, 844, 730, 536, 194, 798, 0]
]
data['num_vehicles'] = 4
data['depot'] = 0
data['demands'] = [0, 1, 1, 2, 4, 2, 4, 8, 8, 1, 2, 1, 2, 4, 4, 8, 8]
data['vehicle_capacity'] = 15  # different from OR-Tools: homogeneous capacity
data['service_times'] = np.zeros(len(data['demands']))

# Solver initialization
ap = hgs.AlgorithmParameters(timeLimit=3.2)  # seconds
hgs_solver = hgs.Solver(parameters=ap, verbose=True)

# Solve
result = hgs_solver.solve_cvrp(data)
print(result.cost)
print(result.routes)

TSP example

# A TSP example from https://developers.google.com/optimization/routing/tsp
import hybgensea as hgs 

data = dict()
data['distance_matrix'] = [
    [0, 2451, 713, 1018, 1631, 1374, 2408, 213, 2571, 875, 1420, 2145, 1972],
    [2451, 0, 1745, 1524, 831, 1240, 959, 2596, 403, 1589, 1374, 357, 579],
    [713, 1745, 0, 355, 920, 803, 1737, 851, 1858, 262, 940, 1453, 1260],
    [1018, 1524, 355, 0, 700, 862, 1395, 1123, 1584, 466, 1056, 1280, 987],
    [1631, 831, 920, 700, 0, 663, 1021, 1769, 949, 796, 879, 586, 371],
    [1374, 1240, 803, 862, 663, 0, 1681, 1551, 1765, 547, 225, 887, 999],
    [2408, 959, 1737, 1395, 1021, 1681, 0, 2493, 678, 1724, 1891, 1114, 701],
    [213, 2596, 851, 1123, 1769, 1551, 2493, 0, 2699, 1038, 1605, 2300, 2099],
    [2571, 403, 1858, 1584, 949, 1765, 678, 2699, 0, 1744, 1645, 653, 600],
    [875, 1589, 262, 466, 796, 547, 1724, 1038, 1744, 0, 679, 1272, 1162],
    [1420, 1374, 940, 1056, 879, 225, 1891, 1605, 1645, 679, 0, 1017, 1200],
    [2145, 357, 1453, 1280, 586, 887, 1114, 2300, 653, 1272, 1017, 0, 504],
    [1972, 579, 1260, 987, 371, 999, 701, 2099, 600, 1162, 1200, 504, 0],
] 

# Solver initialization
ap = hgs.AlgorithmParameters(timeLimit=0.8)  # seconds
hgs_solver = hgs.Solver(parameters=ap, verbose=True)

# Solve
result = hgs_solver.solve_tsp(data)
print(result.cost)
print(result.routes)

Algorithm Parameters

Configurable algorithm parameters are defined in the AlgorithmParameters dataclass with default values:

@dataclass
class AlgorithmParameters:
    nbGranular: int = 20
    mu: int = 25
    lambda_: int = 40
    nbElite: int = 4
    nbClose: int = 5
    nbIterPenaltyManagement: int = 100
    targetFeasible: float = 0.2
    penaltyDecrease: float = 0.85
    penaltyIncrease: float = 1.2
    seed: int = 0
    nbIter: int = 20000
    nbIterTraces: int = 500
    timeLimit: float = 0.0
    useSwapStar: bool = True

Others

A Julia wrapper is available: Hygese.jl

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

hybgensea-0.0.1.tar.gz (9.1 kB view details)

Uploaded Source

Built Distributions

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

hybgensea-0.0.1-cp314-cp314t-win_amd64.whl (77.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

hybgensea-0.0.1-cp314-cp314t-win32.whl (68.3 kB view details)

Uploaded CPython 3.14tWindows x86

hybgensea-0.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

hybgensea-0.0.1-cp314-cp314t-manylinux_2_34_x86_64.whl (65.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.34+ x86-64

hybgensea-0.0.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (65.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

hybgensea-0.0.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (66.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

hybgensea-0.0.1-cp314-cp314t-macosx_11_0_arm64.whl (65.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

hybgensea-0.0.1-cp314-cp314t-macosx_10_13_x86_64.whl (69.6 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

hybgensea-0.0.1-cp314-cp314-win_amd64.whl (77.8 kB view details)

Uploaded CPython 3.14Windows x86-64

hybgensea-0.0.1-cp314-cp314-win32.whl (68.3 kB view details)

Uploaded CPython 3.14Windows x86

hybgensea-0.0.1-cp314-cp314-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

hybgensea-0.0.1-cp314-cp314-manylinux_2_34_x86_64.whl (65.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

hybgensea-0.0.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (65.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

hybgensea-0.0.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (66.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

hybgensea-0.0.1-cp314-cp314-macosx_11_0_arm64.whl (65.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

hybgensea-0.0.1-cp314-cp314-macosx_10_13_x86_64.whl (69.6 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

hybgensea-0.0.1-cp313-cp313-win_amd64.whl (76.5 kB view details)

Uploaded CPython 3.13Windows x86-64

hybgensea-0.0.1-cp313-cp313-win32.whl (66.3 kB view details)

Uploaded CPython 3.13Windows x86

hybgensea-0.0.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

hybgensea-0.0.1-cp313-cp313-manylinux_2_34_x86_64.whl (65.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

hybgensea-0.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (65.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

hybgensea-0.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (66.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

hybgensea-0.0.1-cp313-cp313-macosx_11_0_arm64.whl (65.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

hybgensea-0.0.1-cp313-cp313-macosx_10_13_x86_64.whl (69.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

hybgensea-0.0.1-cp312-cp312-win_amd64.whl (76.5 kB view details)

Uploaded CPython 3.12Windows x86-64

hybgensea-0.0.1-cp312-cp312-win32.whl (66.3 kB view details)

Uploaded CPython 3.12Windows x86

hybgensea-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

hybgensea-0.0.1-cp312-cp312-manylinux_2_34_x86_64.whl (65.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

hybgensea-0.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (65.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

hybgensea-0.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (66.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

hybgensea-0.0.1-cp312-cp312-macosx_11_0_arm64.whl (65.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

hybgensea-0.0.1-cp312-cp312-macosx_10_13_x86_64.whl (69.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

hybgensea-0.0.1-cp311-cp311-win_amd64.whl (76.5 kB view details)

Uploaded CPython 3.11Windows x86-64

hybgensea-0.0.1-cp311-cp311-win32.whl (66.3 kB view details)

Uploaded CPython 3.11Windows x86

hybgensea-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

hybgensea-0.0.1-cp311-cp311-manylinux_2_34_x86_64.whl (65.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

hybgensea-0.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (65.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

hybgensea-0.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (66.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

hybgensea-0.0.1-cp311-cp311-macosx_11_0_arm64.whl (65.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

hybgensea-0.0.1-cp311-cp311-macosx_10_9_x86_64.whl (69.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

hybgensea-0.0.1-cp310-cp310-win_amd64.whl (76.5 kB view details)

Uploaded CPython 3.10Windows x86-64

hybgensea-0.0.1-cp310-cp310-win32.whl (66.3 kB view details)

Uploaded CPython 3.10Windows x86

hybgensea-0.0.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

hybgensea-0.0.1-cp310-cp310-manylinux_2_34_x86_64.whl (65.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

hybgensea-0.0.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (65.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

hybgensea-0.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (66.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

hybgensea-0.0.1-cp310-cp310-macosx_11_0_arm64.whl (65.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

hybgensea-0.0.1-cp310-cp310-macosx_10_9_x86_64.whl (69.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file hybgensea-0.0.1.tar.gz.

File metadata

  • Download URL: hybgensea-0.0.1.tar.gz
  • Upload date:
  • Size: 9.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for hybgensea-0.0.1.tar.gz
Algorithm Hash digest
SHA256 61438cb87f571d66698739ba9709aa3ab65fa278274c6b70e0b9a1ca3adf1824
MD5 0defed0c4abc603916bc5cdba8cda62e
BLAKE2b-256 01eb23d54573bc66de07a9b8b28cbdb0f4f3d33b7627e38b253e8c45c0684fa3

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1.tar.gz:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: hybgensea-0.0.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 77.8 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for hybgensea-0.0.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 52ce0001f75aa112bc5e89873c224281367041be1d5e3a51365a8e095908a1b4
MD5 8214baec4e51a60c744817b2ca9621ca
BLAKE2b-256 be81e87027856d439f9682aa99f6238972f0a227f46a4635d54f7cc98177ed24

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp314-cp314t-win_amd64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp314-cp314t-win32.whl.

File metadata

  • Download URL: hybgensea-0.0.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 68.3 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for hybgensea-0.0.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 21a2921d0218c99a339e711fd878e23e4495c58533d21c0b6782160fa246ecf9
MD5 853d32d11fec9e8f6d8d612ae6d48589
BLAKE2b-256 5529f1940ff5db989754ea465d65d589e8c3c88f3fa500c82a65c25b30b3e2fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp314-cp314t-win32.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 360f1e401145585c03a3526a04f74a2a8710ad29d98bf3e3787bb7a263720df4
MD5 74447cdcedf0383b362145bf1213dcac
BLAKE2b-256 91200ee408458c56d4cfb545af8aa389c97d4dc8edf3d7da1cbbf658ea00b3bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp314-cp314t-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp314-cp314t-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 0422f19a86db0325199de9f0cd9fca7152b535c413cf2cae8e8cbddd20c855e0
MD5 04d73094cefd5df7b321200d341492c1
BLAKE2b-256 e791d9189d7be77ee5c510a2a1dfb7e62d2ac7546c2dd98f489a23dcbd87e16b

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp314-cp314t-manylinux_2_34_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ee887528f9ab56b88e9362361dfc90b41d6b3f0b631d9ca91b7285b0d449d6fe
MD5 e9fe49434fa947b359e1d49b08543fe9
BLAKE2b-256 f2a2290cb1db363a80e7317f5ecacd3b62946699a474debcbe5cd1f3af555902

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a6d5cecce709c0a1d80e1d12818f9ec7b666dee40917bbcb63318984a063b60b
MD5 d0c6b111c12aee8f5fc445f53c0dd37d
BLAKE2b-256 005cd26379b8a727a252741ad5052d6c458ee0e196c4886abaec5c6386cc02c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ebad102a34071fcd88ac9f182ace7a2f4f4f6eebc59a64e395a230fc7e58eb74
MD5 2f1a64be866dc0135df63db6ce756046
BLAKE2b-256 0ddcd0a6c4bf87e681888fefad7d54805181c745bcbafaedf5ebb81ea6aa2b4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp314-cp314t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 09de679aa11de2e3c983a46be7720c299a79c82920ee16452c8f03c822fc5c9f
MD5 5e6165b6882f3ba82fcb98256c7f1c80
BLAKE2b-256 0604f46e5126e58b1bc1a60323eac99686b3defba3f2de852392a54e9e5c1910

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp314-cp314t-macosx_10_13_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: hybgensea-0.0.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 77.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for hybgensea-0.0.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c6c61247018b78f664d34552f4a35f2de54bcfb6e9dec4d2a65f22ca336ce130
MD5 822d5bd97815309a5f4c04fae759de8a
BLAKE2b-256 b95345eeadb02d4b20231a90d3243ae427a522846e117b92dbdb6ace679fb554

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp314-cp314-win_amd64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: hybgensea-0.0.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 68.3 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for hybgensea-0.0.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b53fc6ceb413cdf54d3ef1bbd551816f1088c1339cb05d925a7fb3681b4ba49f
MD5 0ea35a01474283fb4e6388f5a8884574
BLAKE2b-256 7bad96775f90fc9b90dbbbb696fcb4e8906e584d42df813d83c32dd10d33da9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp314-cp314-win32.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 238658c5c32f6f49bd1ed708e9f46540bcc6f9b7aa069ade739f668f78c0f51e
MD5 df4d6cadfb6a60313ffd37500aab9e2f
BLAKE2b-256 4ee75f38a5c585c5984ca7ac5ea217b8eac25d82b4a522b84f62111734e6bde4

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp314-cp314-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 dcfaca6dbc99a1f70e280bc9b3cb7a6d48695d4417281b8b7200bead1071d545
MD5 cb64865ef9e8007ae11baa8c7f2a5f67
BLAKE2b-256 cf177e51b9f377f30e43e70bedef39d08844307405bd7f9c56549bddea6f4c4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp314-cp314-manylinux_2_34_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c7054ed5a12ee1207e3fad88856fb8df960ca56ac4833425c75129425453e319
MD5 7b5e1e1bbf0979cbb18d95d5e7e10274
BLAKE2b-256 7e1e62e15456b638f75e7bc0083775c9274644afc163c096e29290a84ec6d815

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 fa262a599fd09b2f123c1258843f377e2a176ec452562bd4a4ece630a1edf6e0
MD5 89d7eb7cb96d44e8f317fdae878b5eb0
BLAKE2b-256 40739e08f9747997f0f0b058e5ec12daa6235993ff433b34f0e15ab27fee8e18

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eb0ce0983f7e948059c2c44be65226f9c4507eff4c92067110dc7e86271f7a35
MD5 f3b4f81a9c4d188ae3864a85663d5a35
BLAKE2b-256 ddaee6790de3169e1502ebe1bd6cf731af7527eff267218d42748f7927480cb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9849c6c3e673384add2ef04c503df58758e904267fa74d6294f9b57357953b7c
MD5 d8e81d369a54e06019999db1f17b07e2
BLAKE2b-256 13066208adb0184c1ee1a12b1c2635f3bf6e81c1f4002d6214560c9a2970b8ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp314-cp314-macosx_10_13_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for hybgensea-0.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e94ca17bd48244c6a95e6c22e588bd6396999694371f33cfd6d15ddcd985e858
MD5 f8fb76a69a75b11adbf249fea512332a
BLAKE2b-256 4f8b4385e38875ed3f869a357366fe87535e01f635c65813c0dd545b7c8eea85

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp313-cp313-win_amd64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: hybgensea-0.0.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 66.3 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for hybgensea-0.0.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ac50bd1af8361b885b58be4e3dafcdabc60a6326fca983055f3d883f29f156cc
MD5 1359819c6b4d80688113f89a52726738
BLAKE2b-256 c8a7b31805a5097c6a17fe84ef124e2a102c4d006612fe29112d4cbdffd381ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp313-cp313-win32.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94d315bd1410dabf83127309192653869cdd7e8ece77919d49ec503b303f635c
MD5 4feb9467f3695466d17316be54bc4c7b
BLAKE2b-256 cc6eda4351cecc07da4c4e2f99248c7f89e3e6554dfaba67e3929a91afd3ac23

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp313-cp313-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 8c82539104c9244d89cc3c88dc5a29a1c81022e362e17eeec8469ecf41703edd
MD5 59af089b516826e3b844710e52091a1a
BLAKE2b-256 31bf40a83d56cf95ad164bdbe637ef06487643f226149e8a7c52bfd85077ea80

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp313-cp313-manylinux_2_34_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 df2891487897afb7f5ef1d91a2db43bb6f5d188456e4f169b9017d5725a015eb
MD5 16c41b6913d5b528f0d82f2b53b23cd0
BLAKE2b-256 7971a816b170acad2f71cf583aaac54923953597d7c36cbc0e1b05ec3fd818ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 841be92bd44c8f0c23182e4b1e24d69550dbb58c3e7c470c9100113e7517461d
MD5 719ad5e6ad1fd265aa1481f63a813593
BLAKE2b-256 57af7acb34946ea2df80577b5cd73552734d6001606efc94b1218f829b6cebca

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fe9f0a287c47bd9517fe28596b6ccd5bc19a67dbec17c808484e6e782344556
MD5 ca14bfcfbc6376657c95b326eed07a97
BLAKE2b-256 677121a03d334a6951bfd3d4aebb2c0a1b2c95f04de8f6df5f8f1765c5c9cae4

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 627d34dbd33184444b3970bde60304aefa53eaf2351295480bf1f70d2907a5a0
MD5 3392a4edd325a61ae2fd8c6a68f5c59c
BLAKE2b-256 4f6b637676b7027ae82822c0b929ac537819dfea1e0763d6ff095b299b345785

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for hybgensea-0.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 36ff58975ea1c55d5ee9e0bd9d5f17b27a2dc27463fd858016b06b468bec55a9
MD5 ab4cd7e4ba18a1a44c80f81d9fb3ece2
BLAKE2b-256 58e8e4f1b81115ee8c3c44cc0d73d3fbf943f33e416d0db35b0ce39ad4937aca

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp312-cp312-win_amd64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: hybgensea-0.0.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 66.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for hybgensea-0.0.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 88cdd86c93e69bac488feb4fb25bfe767d195a5faad1b04b72ad51d9139f9e55
MD5 029207ec45be82dff5a25b14dd532cda
BLAKE2b-256 d846239741972b6b39d72f13616e757435351fc63c535783480595686c9f400c

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp312-cp312-win32.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d003fc3d0b14b2ad26b0fb3a8c29abbe51bc40c03b25c1b7fddf5c4280cfa834
MD5 ca336ed28140ff6f76e6ecf81803ba4d
BLAKE2b-256 d572aeda5b89049ee265177b32381c6dfd537eef9f73cfd8c5ff0d377c4e480c

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp312-cp312-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 bffab5f2bdd2a058ddc7b49dcb34c80caa566a0f0b34eb20fccc226ad8c052dc
MD5 c021cff31f9ee621acb1f89c14cf6cf5
BLAKE2b-256 34b9c0eb8b02043cfa08e6388fe73f363d1cc236002460b6cd97c69877374bea

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp312-cp312-manylinux_2_34_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2963a30b27b24597daf4b6083df449c18b214da8acf3e4b6ea349d27273ea4f6
MD5 36dd84f7493fe2392699ea3bb2a444d3
BLAKE2b-256 30c70193902b6c229a39bf3e2828497e22d71308e468f08c101af98865848c97

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 efa8cbf9613cf0cddbe9b6678bf7dad5761be20387db07142e2eae101bf1c67e
MD5 878ce3f377b45a39d25882a8d41ae98c
BLAKE2b-256 d3193c358d3017cc3f88c8d003c3436c7c977f73b4c61d4f8425ac8cfaa22480

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a380e0d0b78067337d8078f7bdfe501f8d0a05a9c6c16d3e4740af2aa4c61ff7
MD5 49c0a5f9d2f5b589ff92e2b307fdab53
BLAKE2b-256 d1300f2ed41cc68bb2285e93c163ba7af15ef561867a006a6656910aeee6c4db

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 68ba28e3f4d822d1484fcabf1b6e55caa029b3767cbf597ff245633e9ca9c2bf
MD5 00448379cb491a7354764b61f509a063
BLAKE2b-256 c44bef58c3e90fe20f132b57ff0655596c7be34f494d2ba2690828747ca3cb39

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for hybgensea-0.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 566c08adf601bde839b244fc4f5339e942fec72a8a01cab3f3382ecbfdd95b00
MD5 fb0e6f142b463b4396230a88bcb426ae
BLAKE2b-256 8f96b0ba11316ff155043acc99ae0d5168719dcfb49755e8479a97ac7e428633

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp311-cp311-win_amd64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: hybgensea-0.0.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 66.3 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for hybgensea-0.0.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 17417901d241d7e2df3cf54ab97a082d417ea0ca76174be290cb0ee116600597
MD5 8c4b9edc81f6eb38692223651340cea6
BLAKE2b-256 f47a3736c99df602bf0ac87f0e3cd9f09ec0e9d2ce8c63956a6653b320208042

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp311-cp311-win32.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8c96bed83503c3d0300a0d2fd54a656a79b9bb08931d7cdc74983089e203eec1
MD5 5ccd2bccfda2c95b4f78b0ba84476d22
BLAKE2b-256 1a6959d79005bb96d91c0ae649b0be73c163828c036ff647dd3424d64a9efa35

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp311-cp311-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 f7b3cd519016a28ee39af17e282ddc380d907fd2b0aef1c7d6b7566eb36cbc4f
MD5 60f0a311748ff6dc75683c8afe927c6c
BLAKE2b-256 b4f7a3ce8824e7e4652c2924bce75c77eddae3aef731de97ef470b409ee5bf0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp311-cp311-manylinux_2_34_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fdf710eafcee05e60f05acda4bdacb356aa60343928b23398a2d8524a8f2e0c3
MD5 83dfe916bf8823fd513da82f7fc3385e
BLAKE2b-256 a32d8c84030c0eb2fccfecc738725d35a658f105478ec901bd8a066f36c79189

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 53d0ad96375836720e97418c9ee9c705d88544dfaf16960f74459e6d7309f4ad
MD5 8df411ea6ce4c115fe58c8d8b1bee5c4
BLAKE2b-256 87ff7c7dbe25a4ba9a90a8a3de4c12fae3a4a68ccb28d6af27f8be72868bcaeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50e6e1207c0fb51a63e88e0458ecb1ff7d58d5b0df99f863242bbbc0d8017d45
MD5 abb288da9828c2379f102d31c660e843
BLAKE2b-256 ae76b1852ba16600aea81e1f1061d79ed8bd022ae0ac25b40f95339a75a3acbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 74c54b4bc62f99615ad4994c85ee7fc745af77282d721a1661a0d2ee5ab16cea
MD5 6487c8fa1ed9af60aaf98ed8f8af8c60
BLAKE2b-256 c65b780682afc6c8d4a1567ef89c0b852f85af3b93fb2464727184a5732d6a6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: hybgensea-0.0.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 76.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for hybgensea-0.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1b1f8c17432bf1689625185d73bee17c5ff6df9c1bc3a4ca3cb8a4ce77058a29
MD5 af027919956807c11bbde852dc27ad3d
BLAKE2b-256 8dd5f48d06fa8f13d6a16737172136e1147c6d64391ee80ae49fd13fd2bd9c10

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp310-cp310-win_amd64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: hybgensea-0.0.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 66.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for hybgensea-0.0.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 77fe05da2e85d42b1f900bd907a1c199709f139c8e9d98a928731953e3999ae5
MD5 8b557ac2a8edda5cc2e3150a32d48887
BLAKE2b-256 df43da5c4312c3fa3a912ff70682994820f009f3370f46a640531bf487703842

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp310-cp310-win32.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0249550174a3d3bdf8a9cb0423063a62e339d630e51e5110e3fe4200a6ca4f27
MD5 d99f974cb026c32b663132527c32f0e1
BLAKE2b-256 9e2990b01b844ce6e71a3ac5caa2a6203bf701024b45da2430af12c7d9e10b13

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp310-cp310-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 5f9727b20ccaca268f18e95c0bd2f351b7bf1b7fc7f0421914ef3266fb9bea05
MD5 758e2e4c607cd35c0283a597d68ab340
BLAKE2b-256 b64fe6a8101329477b890cc94c687aea789674081c64e1b994ae1290cf2b4ef8

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp310-cp310-manylinux_2_34_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 79e8b3a2e1a65100e897cda71159248abe2d122c3ee77a90026991682eee43fb
MD5 7f69fd5eafd16d7a1681e0502f8e9596
BLAKE2b-256 0245ea2aa5acccce0f4e6a48f675b8fa2042a281fe56d0cdac174da815935d2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 88d474088f9781c30f773a7ad9756b49a2d7f4e65d7f2be63378380d035cfda7
MD5 c97d61cdae02926f15f012498e18333c
BLAKE2b-256 be764ac60952dfbefb6e2dc4b4d0f302fd81456972194f32bd854fa6934815ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5931516cad391a6b3f5d56245a3b448a0f831ea97265a351b356a1c901aee149
MD5 9436a8bbfb0c31fb30b0d54e9760358e
BLAKE2b-256 68a54371c5d80ef9800aa876acd9f66919a50fdf46b5f0b208b669653ab96183

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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

File details

Details for the file hybgensea-0.0.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3fc0bb96b59aa6a0465f50a6cd2187526c5821b5b3e74aa1a788cd59731c2991
MD5 ad2a675b35de16bb9b10f6874fc745e4
BLAKE2b-256 d90d890088a3b43d734f63982010a6043f0952def09936cd20cca01de27a5129

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.0.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/PyHygese

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