Skip to main content

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

Project description

Fork of PyHygese by Changhyun Kwon.

Motivation for the fork

The PyHygese maintainer was not interested in creating binary wheels for publishing in PyPI. This fork enabled that and the creation of a conda-forge package.

Later, the entire codebase was rewritten migrating from a ctypes-based binding (PyHygese) to a nanobind-based one (HybGenSea 0.1.0+). The upstream library repository, Thibaut Vidal's HGS-CVRP, was changed to my HGS-CVRP fork to enable further improvements in the Python functionality. The algorithm is still the same and so are the default parameters, which means the two repositories should produce the same solutions.

HybGenSea: Hybrid Genetic Search

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

Or:

conda install --channel=conda-forge 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

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.1.0.tar.gz (13.0 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.1.0-cp314-cp314t-win_amd64.whl (119.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

hybgensea-0.1.0-cp314-cp314t-win32.whl (104.5 kB view details)

Uploaded CPython 3.14tWindows x86

hybgensea-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (618.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

hybgensea-0.1.0-cp314-cp314t-manylinux_2_34_x86_64.whl (133.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.34+ x86-64

hybgensea-0.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (133.7 kB view details)

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

hybgensea-0.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (145.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

hybgensea-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl (116.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

hybgensea-0.1.0-cp314-cp314-win_amd64.whl (115.0 kB view details)

Uploaded CPython 3.14Windows x86-64

hybgensea-0.1.0-cp314-cp314-win32.whl (101.1 kB view details)

Uploaded CPython 3.14Windows x86

hybgensea-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (616.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

hybgensea-0.1.0-cp314-cp314-manylinux_2_34_x86_64.whl (130.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

hybgensea-0.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (131.0 kB view details)

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

hybgensea-0.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (143.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

hybgensea-0.1.0-cp314-cp314-macosx_11_0_arm64.whl (113.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

hybgensea-0.1.0-cp313-cp313-win_amd64.whl (112.0 kB view details)

Uploaded CPython 3.13Windows x86-64

hybgensea-0.1.0-cp313-cp313-win32.whl (98.6 kB view details)

Uploaded CPython 3.13Windows x86

hybgensea-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (616.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

hybgensea-0.1.0-cp313-cp313-manylinux_2_34_x86_64.whl (130.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

hybgensea-0.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (131.2 kB view details)

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

hybgensea-0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (143.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

hybgensea-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (113.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

hybgensea-0.1.0-cp312-cp312-win_amd64.whl (112.0 kB view details)

Uploaded CPython 3.12Windows x86-64

hybgensea-0.1.0-cp312-cp312-win32.whl (98.7 kB view details)

Uploaded CPython 3.12Windows x86

hybgensea-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (616.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

hybgensea-0.1.0-cp312-cp312-manylinux_2_34_x86_64.whl (130.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

hybgensea-0.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (131.2 kB view details)

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

hybgensea-0.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (144.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

hybgensea-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (113.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

hybgensea-0.1.0-cp311-cp311-win_amd64.whl (112.9 kB view details)

Uploaded CPython 3.11Windows x86-64

hybgensea-0.1.0-cp311-cp311-win32.whl (99.4 kB view details)

Uploaded CPython 3.11Windows x86

hybgensea-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (617.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

hybgensea-0.1.0-cp311-cp311-manylinux_2_34_x86_64.whl (131.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

hybgensea-0.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (132.2 kB view details)

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

hybgensea-0.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (145.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

hybgensea-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (114.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

hybgensea-0.1.0-cp310-cp310-win_amd64.whl (113.0 kB view details)

Uploaded CPython 3.10Windows x86-64

hybgensea-0.1.0-cp310-cp310-win32.whl (99.6 kB view details)

Uploaded CPython 3.10Windows x86

hybgensea-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (617.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

hybgensea-0.1.0-cp310-cp310-manylinux_2_34_x86_64.whl (132.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

hybgensea-0.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (132.5 kB view details)

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

hybgensea-0.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (145.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

hybgensea-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (114.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for hybgensea-0.1.0.tar.gz
Algorithm Hash digest
SHA256 b733b09ccd77616107109ad08b684ca6b5a91a52c821112569c341a4a80f1043
MD5 21e0ce75bf7e6b6178ba3cdea6ede275
BLAKE2b-256 091621f6fcb8e21c57c48d1352d4c45f5a6ff6da7d05549de8bf5d95cb91d1e5

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: hybgensea-0.1.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 119.1 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.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2603941fa9ceaf58a553c98cbb331f854c1d62845ea6f97b6361e6d1aa913b5f
MD5 0177316a9e6d7623b1c85ebd807ce46c
BLAKE2b-256 ed0155a4d9e4ea15599f3a2eee11dec2af7897aa02b97d87041504089b44d8a6

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: hybgensea-0.1.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 104.5 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.1.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 518483a28d1bd9fddfc3e95cbe388af7d2f7f5561e59522e1802baa28eb7b21f
MD5 eac6d4e4f6e8058aa46f34d6bc5dd9df
BLAKE2b-256 5131bbecd67edd0b55f919032ff99878aa765e236fcd89ec3e4a37ac3e79df2b

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f390655573ad31cd4b5c0ad6ba228c540504cff61627656e1641f50b42243fc9
MD5 97e9d9dc40afa9e10942515f8e53af41
BLAKE2b-256 e9a63c81da6777c0d10bb56a2003d169b72ad1a032a308a1754f54fa1342bc7c

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp314-cp314t-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.0-cp314-cp314t-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 e440b894c2f4b12f3e7ec75cc824ccb841b11042d377b1c0a0e37501b3d7471f
MD5 b26bdbd7125101363c67a9fd1cbceca4
BLAKE2b-256 a4f8519907db7816c0727758fbd3ff26a07c2503cdb268977b6aeb46be9cd01a

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cc3d69b0cdd7ad9c140978b7edd60f88f0282e929e56ebfa4ce6566dea7cc957
MD5 791ab681598e898a8c1a0cd4a98845ec
BLAKE2b-256 8031bfed26b2b3bf18b4c53d7ae3cf1d0255ad0b40f87965113ce537a42a0a69

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 63f868183c6c1923eaf1ed019b20a4e110dfa71ff2ddfb0b2c6461ec202e1eb2
MD5 7f26d07ad9e0e28fd65fc92c997ab876
BLAKE2b-256 b7e044343fd6b3eec0c0000e17b5caba2caeb650d2280fc8e46a687f80628fb8

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d199d205061e46a238e3afd6ce09b12fd8c9334341f5631d0841e29e4d0bce7
MD5 6db2b7c3d10bf1a968d6d55ccad042cc
BLAKE2b-256 87d13e9334df97b2953d0d66ca8a1901e36d29df997780fe391ffef2c7d02685

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: hybgensea-0.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 115.0 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.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cdcd566a07339cb559c7c3f5fae3db1d5396fca918faca1b2a2b926dc87481ec
MD5 27f4233d0c647408d7be5e2c2bf009ef
BLAKE2b-256 594a6d259becf10482e287235831577a29c899c2dbee94e86e700b0cd14b8057

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: hybgensea-0.1.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 101.1 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.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 75bb82d5ef6eca95a8c119b31f8d74719cb64d5e26a055f5521a7b16fcdba214
MD5 3180f0e5dba13fedc7fd23a93ac2b7af
BLAKE2b-256 2d095bd4336fab722f921bf1615ee6001cda2818a56626190e4d7556211251f9

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f31040c254824b19db2a3a7ba3a712f4d23d132739a7461156d0794f46f9c6c3
MD5 54f9183f81ac730a8140ca31c965b29a
BLAKE2b-256 fd35c08f634ef9e7bf5fc935e87367a6e2b02f4db3b73d346a7b63ac0c89d691

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp314-cp314-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.0-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 79a43c8262094247d6c2417a5066640f4e5dae2b1ad7ea8109b308882e7b21f1
MD5 54fb95698b29b71ab990755e5fb6d0d1
BLAKE2b-256 16c820e0e44dc5095e94c8a2ac2bef1d358c58dce841f0c1674203da05656a3d

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 233983e5da444b57a92171759ff300307fed006206bca280cf1dd1ad6c2ec939
MD5 d5d5a56195d98a7a441b652290623421
BLAKE2b-256 06b979136d7be3fb866a593bbf8998319d2664739de23c0970c5dc5fc5e96e8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 026f0905e048fcbabd4a81e06a948f30eef1eb7d0f8cccfb0e31d77400d7ee77
MD5 dbd11eb85fb0fee484ceaaf9f76f3791
BLAKE2b-256 e72449327bfe379384d4f249cd16a1f7d43d616cfa35e2ea40b336496294f824

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e77a0d43752f7767a7c0c40af0d2e41e19f7e586a7ea3e1ca2ca1f7fbb6778d2
MD5 317721bf846e5020958f19ff7832bca5
BLAKE2b-256 200cd24b1a77b9c61d19892aba6626c91c1e8203ba692e7353e25fc07dde39a0

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for hybgensea-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3f30102190f1179558432c84e849d0d2a42ac2ca0fd8ab3686117a293bc7c5fc
MD5 97e97676798e71234a2f4157d1f42e9d
BLAKE2b-256 f43ed85c8465265231786ab245a2a476cbf206fab9743d2b7e970f5279f536c4

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: hybgensea-0.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 98.6 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.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 936fd1cd3bfeaff14b3d0b27beeb5a8c3939eb58703498441acb1bee0a3302a8
MD5 4033f840730c991d545cec2023639d72
BLAKE2b-256 6dc41f7aa4ef4faf9eea8f3883abafa41730f8e3d233e9842e68df8d76856ce9

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5b93e35cf9a6eef25e4bf8375a198d3f2e13bbf94fd7213f2e161352cca20153
MD5 e5f48c4cddb344c41acbf73bf90559ab
BLAKE2b-256 80fc5a3501b390f212ad25ff891f06f32ff6c791b32eddc53edef41ee53e5c37

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp313-cp313-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.0-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 01800312cc460dbd8872c5818126fec4711e14330d176188d44d3c1d08c2e430
MD5 25c06c335c85856619136205952a6d0f
BLAKE2b-256 7af84e4f3fc3cf2715fc91a7e7e94974469863574412539e6439f6b5660e1c0b

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ce14b2d6b1e5753348deb6196ae6fde9bbe82923e63a19674b054163c539eaaa
MD5 79ccd64424bf0245e6b8ea03e0a9eb88
BLAKE2b-256 d70f3b6c1621796f163bcff0066f455ea437c83bc7ec32031f0768d9d989685a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 b63926514a3f6feebe1b07b735b9c4aede853be66024ed45659719d5616776e3
MD5 e72f37f22e84eae04703c5f5b06ba7b6
BLAKE2b-256 b843257127822170ccaba15f4c7dc99ef02f57fa364afc8cbe3feb7f286988c6

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e3b8e94a4e1235f9b7ada6d6ce8f8130cb10b56b26f754bf58abdba2b7280628
MD5 8fbc1cb84238eef2b796248e28508e5b
BLAKE2b-256 ed49ae1b4cd44ce8c1f1d54eccddf0cf5cacb9fcab6ff2666012775beb5ed9b7

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for hybgensea-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d279eed73e1de46a32b98ef67365897741195692bdb6ebf774da20f0c1b600c5
MD5 c7a77ba23929476658ed6f0ced06f6e9
BLAKE2b-256 e2c50d282a7beeeb9edc0c4cc8e4de8a0a7287c570263b9260d18766b240efa2

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: hybgensea-0.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 98.7 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.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4e3bdeb4ad2e7cbcde690eb298e4035eb9cde2cef047c13b556ad4adf61c0e6a
MD5 8fd687b2b28d7ba13804c359c0ecd230
BLAKE2b-256 737d67d2a988771f05ce0fa3ae82a6a9cffc8f6fcabf5d8abdd2497377b25a60

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 40e92610daefff212eed9a09f20d62c87ebe2a3d79c92267cf1d0bfb039c2aca
MD5 8b7a16f56bd28e6a228c0f838c5804b6
BLAKE2b-256 23ffbd963e858b4a1acf8eecdde1ca823596440227a79c0bd20f6c44fd407e35

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp312-cp312-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.0-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 5b15b033e707184bfec9236831362b57f28c93934dc3eee1aaa5ce4e87f98ca8
MD5 83b6c79f83033f0684cb8d05e682c784
BLAKE2b-256 8ea9e5df6627c7cf8fb1dd80f647568ebb881922b2dba0378d931d02e0a1fcf5

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bb6730a8c2e0481b05629b4b3cad6b46e1a881f9c8908f05cbea62a24d52a705
MD5 148842a83d5728e5d39fba3eb35e0f8f
BLAKE2b-256 ea628fe7ae42dcd95740d397bd02392cb497b4efeb395e640ac57adb6d6442ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 844b9222131a3bc12d2056899f012e026b5ed63aa70d3819787b34695b953a8c
MD5 15c9ba7406c87664e292ac695ec5d07f
BLAKE2b-256 cd5a6bedeafa4861a752801f4c876b678439ee37d4d6a0d9a78d5b1b5618ab95

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0b97cc6a5b7e5e8cc57ba24c2aedb7b681192040b3f606441a67d7c7f3f740a
MD5 c1712c23a151ac4764431f0bdcf43133
BLAKE2b-256 1838a0fd6f0b14eed1914f48862a6ac675625029ea75e84d3d73d5899d538cea

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for hybgensea-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1f843b2a34b9093dc951454aef97c3508fbb1adbef6e48792166abd0c0a256ce
MD5 12e9738cc2b7b51756893b6ef18645e2
BLAKE2b-256 0e90f6040468c15f684b96f25864038f759747869eb9af598538e828cc5b85f1

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: hybgensea-0.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 99.4 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.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e3fb0079e88267cd9baf929b610c1c3979cd3d3c0e460c50e1282b44209e9d06
MD5 5f961ddccf8d3e2c48d458111a76ce6a
BLAKE2b-256 e1e39d003b27c89d74e9a990e6a456155ad41f8974fa4df2e4104f533038ed1c

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 30058bd547534514cdb5d7a1542e9871b22be37522a1db07fef2e6cc22ba7a9f
MD5 ad1f3712d1eaebdcd8f0d02827a1d120
BLAKE2b-256 7c5d9f1601e27373353544c87d03fdf0f7debb68f966162e15178cbf1acea594

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp311-cp311-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.0-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 ebd46e7066794854194f072fce08d791f650d0920a0138f05a16f29010f2f3ac
MD5 168f1a4b3c160aa761a22e0e7f2c3c8e
BLAKE2b-256 e370fc524a176f0e2766eb0d4c1a2c3059c957eb5dc71f8b4bd66520ae5d911d

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6113fd5d7a9ce6fd8df9a3b949c2b7c064e9fdd4540cdb33289419293dc5924d
MD5 76114e4f470ac1fc0a5ae9da1558a40c
BLAKE2b-256 74b3b50c2cae4c822c45c105c36ed8e20333bea97239f537144b1d326dc0fd5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 f4b9abc24863d1b2d1b4a45a8d9a8da5cb048648084e79d629c33280f34f7ac1
MD5 850a29ed7b3cc92c6e5039ecb05fd476
BLAKE2b-256 1adfafceccf7e31b0aed3f9e6cbab037abd0116f9a9bc555bd042194c20924cd

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 779f392594b516002a29366ca305a55ebc3d76712ce8bf0a1a442da06001c133
MD5 4df0b973553fdbc843aa7b3b5d923ecf
BLAKE2b-256 a72faa3dbee4f5cc406899096d9e49b8e21db174aa64bc226db7f963e7268dfb

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for hybgensea-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ced4e427735d2c742e0dedca36611b22ed40fd0a7401d7e7bb6f881789981bb1
MD5 ce19b5c76182a75cd64cb1334fc0017d
BLAKE2b-256 7b58e855a2a4eae1583602e0d54f7dc6e5f5f69b113b1416af808235af4dec3b

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: hybgensea-0.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 99.6 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.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 417b5fd18c415fb24fb94081c5bb223e55d0f7a36923469a9b69f49443d9cc35
MD5 84312461da28443b4dd75a5fb82724bd
BLAKE2b-256 a31708cf553d1d527064611c9ad65351b647c5479428e7780b1e042edc07a4a3

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 740b438db769810e39883f1e502dca966d545a7cb5f18da0ff5b1d9049117545
MD5 652ac5fef311d01ccc36daf21f1628e2
BLAKE2b-256 8021a3d48ab1be7e0e62c3f610d2102c3110f9f925a4bbfce63548db2931127d

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp310-cp310-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.0-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 bfbecf04686190deffa023bd296cccb58ec7f574cead18cda800be50d1d4afee
MD5 c69eef2027d871c6c62c8b83dfa4226c
BLAKE2b-256 05aba74caeb84abeb42b3b2db26a689f87b1c29c4930fb776cb767fccaab4d58

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a2ddfe744852f7ed47af9cc33b07def9a793698202c04bbf0b136f596445a30f
MD5 ff24440746ac5bb591319d7503215417
BLAKE2b-256 77a3ae0f693d5349fe74c8bc261bec8fb4af4acadbc677a4d76527214e3e7255

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 ec93a3064a111acfd699c2ae173ffcfc41f22b68ee9358e7ee18868cf4eadb58
MD5 8f674133e567eb8621b1390caae1be6a
BLAKE2b-256 c79a5c60356101a9ee626da67b2c74a5816b676758791147ced46b4bd953e885

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92f09604d00bea7b5e81bc97659cf749af3ceb530efb6c75285a10d4e2f54c89
MD5 c9c227c91b9ae0a47bb1bffe184fb014
BLAKE2b-256 ddbbea873f2e6abc968b2a06f4514fa4eed422394bfb91fbb0fd44ca740ac0d1

See more details on using hashes here.

Provenance

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

Publisher: buildpublish.yml on mdealencar/HybGenSea

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