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.1.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.1-cp314-cp314t-win_amd64.whl (119.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

hybgensea-0.1.1-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.1-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.1-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.1-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.1-cp314-cp314t-macosx_11_0_arm64.whl (116.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

hybgensea-0.1.1-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.1-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.1-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.1-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.1-cp314-cp314-macosx_11_0_arm64.whl (113.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

hybgensea-0.1.1-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.1-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.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (113.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

hybgensea-0.1.1-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.1-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.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (113.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

hybgensea-0.1.1-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.1-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.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (114.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

hybgensea-0.1.1-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.1-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.1-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.1-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.1-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.1.tar.gz.

File metadata

  • Download URL: hybgensea-0.1.1.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.1.tar.gz
Algorithm Hash digest
SHA256 6cd07ef3f8eccbbcf7b0dad5385622d448a33c27377da308f2b1a338951b048a
MD5 30175254c65f786815d8a8b9ad4e1db0
BLAKE2b-256 4c21c3ee9a7c9544c70d8bd9452bd341d32171cca9e147be9551544cf559cda2

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1.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.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: hybgensea-0.1.1-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.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 0d743ff5481954edb8b717810946a76ed400cd7eaaa916615b4af1c5d6a73139
MD5 591a80118d8c751416d4af3115da80d5
BLAKE2b-256 fc5aea29dde0a401127b1fdcc5e0e4d96a526e38d782bd933b0a069359eebb04

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp314-cp314t-win32.whl.

File metadata

  • Download URL: hybgensea-0.1.1-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.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 134637952d0c685f6f2acdb077f8964c34ca209bf9745a460f5b068a2fda8bfe
MD5 5fe47290391581973a52a475f8eb767e
BLAKE2b-256 036ff14e304a72fb920f9fd9c9ff18a721bd5d1c15c9771485aaeda090e6be4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 138abc5cffe8759f95c5ba679eec5364af0d918bcaae20ac33f26356af30fb97
MD5 5464a41b5f25931470b454851d141889
BLAKE2b-256 7ddd6bd5f1eb8f4f5a0a1af60ea78fbf4b05feab5c319a951d3122b70ffd298d

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp314-cp314t-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.1-cp314-cp314t-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 52cac049fbe3e7cbd04e497a236fd01016348f76d7370ae9c788707e6f7eac76
MD5 d6709252fd08eaff3a0cdfb106c3d789
BLAKE2b-256 4f4863f389dda68f0a856d1b13d82f3bddd631b9f2b2d6705b709d7865161e4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ffae9992b14407d3f88c231cb0f103d5d5e866e4a7e0af0b670d182a8be8152b
MD5 a786abd329c2f243b8df3a49aad22b66
BLAKE2b-256 c0911a5645382a9276d413cb0b6a320c5eee70d3b6f78ed48085e3c59bbad5fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 95a2d193aa49d838ecabc97f55753ba3c81419732baa863860568297cb76cb7b
MD5 9298c873fdbee2bb61243b513cbc82e9
BLAKE2b-256 764b45092ab20cef49d328ba72226e12323903998d611b4e7b7ce63808299a7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a258548595b42dde0cd84b06746e058e56a37db12d340e24aa71696f3c433f53
MD5 f1485638a722b047794c1448d6e60bea
BLAKE2b-256 8ae23d1748fc4cceec9f965bc3f8cc12f728611fb80afec9dbc31952e433dbd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: hybgensea-0.1.1-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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 633649b129dae6bcbe7ba8432430a8bc9cb6c6e244d8e723d0648283223cabff
MD5 ffd782ed0b772748e350354193bcdcf0
BLAKE2b-256 232ae785532b4fd840fbdd77d9349b2a16e02f204f458db1cb39936e102b47b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: hybgensea-0.1.1-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.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 29db37555ade5fab80293805f3d278909fb80e1a8e6b726c40a0526050fdd3bb
MD5 55a9342810246c83756b2934ba95b44a
BLAKE2b-256 bbc454a2a6838d78c70559a97ecf6438941682da84a824292316fbeb6dc32fa1

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6b7d72982cc286a04a2d50b70cd28eed611835a2b3fea19178f83da659bc4470
MD5 7ac35971a27516f3f71b185a247da6e3
BLAKE2b-256 492fc40b318c898c01e700b8cb31712f6b8a427a50a055ccbc72eeffeb66afc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp314-cp314-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.1-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 1c47db7363dfb9167f8a4b03986b50adb0cc6ea65c6fa437cbab1866d082315e
MD5 68255916f9e052374fbf631db69ed44d
BLAKE2b-256 0a662cc2ddcd30bd22cdedd6a0b01c23e2939fbd39a68ea4d47dace73d6e0cb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5afad665edc3aaf5a4a76ec9fe9583a7736325a444ec3549e899dea26832dc69
MD5 f38a89b4cc0bbac31d828431874737a8
BLAKE2b-256 8730678feb861661fcfaf0a7776dd9d0d16d3d820b225a710d717c1d9982ebde

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 bfc0d7804f76988ee41901894baeab532515eebcdf20628a64064d6bea7a0ea1
MD5 837065a7f2c255e1fae1b0f0064f8c6c
BLAKE2b-256 54af1c0481a158a7f1e28086b66f18d23f52c26e1265d0d1c27e2874632789c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a11cd730d22cc842721b94cc91ccf12154dbc8bbe5df4cbcf4817443d9cf1a85
MD5 dac9d7e0edc8ec7a83a4fb6868c7eb30
BLAKE2b-256 613cc28f19926cb24326efbaa44a144bc595fd5ff659c7d3909a19303bc869a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: hybgensea-0.1.1-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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9729243cf81949ba7993e7f971bb838813d6845ba4dd5a26c828b27174290ba2
MD5 5193637bac9d8066d63d5e2c732ee07f
BLAKE2b-256 160784258066981b10823190974941be5d361e31e0fe7bf720f906d0e51a881c

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: hybgensea-0.1.1-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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 fc329f6b154ca83faadbe30a85ccc660ee5e19c6ed2f24d47675245e9babfc9f
MD5 224d01f709c48c33b85e9e575bfe28ee
BLAKE2b-256 a81fc6eb7be7ba9df7391052e31d2442765022d1e64827686914056541e41d79

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d3c86a4f8263c904c79725bf9252f7585e1db0523d1d643125ad778bf3934e5
MD5 5a1e38c3ae4d2c9ed92c3a07a6c649d8
BLAKE2b-256 03242f80ab06670997a2981e1c687ca93d1e166af83d3230867733f78c78730d

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp313-cp313-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.1-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 05ccfdb182f4db6aa21b0c40b02c88c6754b8c97cd741a9a858bce6c6c9b33be
MD5 240cce7d04a1fd140746a47b085cbc4f
BLAKE2b-256 0ae90ca18c5f50f5c45f09a40bb1889b6048ad5cb70b4cc9ebcbc7f9730c7384

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3e3485650b7457aa5f1c53aafe5a6166960017bd5449913d107182e3432a0c6f
MD5 411669514d8d7af322da4cb272d0dc17
BLAKE2b-256 e258f8f6713b872c98f0a6104130b82ccb43af7883505f5c6144aace329c6467

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 6eaaf69d79fc38b741d305344287f9c8ac252b7fc7b9685866bcc63d4bb727a4
MD5 4f808eb765817c115eb9c28f426b5715
BLAKE2b-256 5bc363e1bab8d9fae29fc947b3bc9273b16a796e2f6dfd25f7d25f8f394f6309

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e77a484da847b5ca5985f68c62df13b0e0d91e08e738d0b07390251f2bdede17
MD5 e3af8637b6a39acba76e61540080d9b4
BLAKE2b-256 b87ca3eb10af7a05074f155df8c88a1d473716db59355b638a14b5f2d2f8c16a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: hybgensea-0.1.1-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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2e2c4bf45d97f5a1773cf9753206a1616145eb164cd650db444edf170c31af87
MD5 c2eafe790f1b5b1a393c9d4f19445c3c
BLAKE2b-256 48aff4e455b0761b9b32f31fa9fde7df1563a6a9d59593c11f9d6fd39fce9dbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: hybgensea-0.1.1-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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a09363e7ee7b6c5c5c6368ff64e0086ddcece6114eff61c54f0fe81db77284d6
MD5 8098e2001ace892f6073b4f276c35258
BLAKE2b-256 cbe01a30f90ee1d00f5003c54840a316803c26b66eea367d2f2bf9b09ff07be0

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aa485d96913294ade96decc810929aba71c042f820bb79900a6afe442616adfd
MD5 fec4b846f831e751ca27ddf6f5fa0c3d
BLAKE2b-256 9fcc9afe522aa5db29c9699060b26b705e9ec42d9766e0b1c2e819a43243a167

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp312-cp312-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.1-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 1f3fd97f8901c991cf965f79571ba0559cb311c82c97fa83c505706422fe5f50
MD5 1fdd079a3fbfc718251d66d4a003099e
BLAKE2b-256 7c94b8a1b5699c07ebe9978907f11a7da6b5b4b7322af21127408dd0a4e73271

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 66f36d3efb654f6aa39f63848b9ae99bffce26f22385dc3535fc3571af088cda
MD5 46d1e53f9c62c408361522f4624523a2
BLAKE2b-256 7d2a03352bf4e3b716a4f89a1531eeec4e85f09d07ca6076403f41885ff1395c

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 cfd3f8e89e6a81a06b5f5c1cd955d4937fc8449f0e1543923e26e253a8a8a162
MD5 3faedc5174bb4e5e8140d1d1f672e0d5
BLAKE2b-256 835c5629438c7c21f7ab2e04d03f18d0928a97af85302d756fd1f1bd651b58ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 559925cfeb9621b34187d695c2083a241fc1b0143bf8d8446f5aef321ab90432
MD5 26070d4d76995fdaf83617042217e2e9
BLAKE2b-256 5add115c03703b3a2f3a97b151aece28cda558b5b07e951f940644b681b9e7fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: hybgensea-0.1.1-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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 45b14c13186b828ab783a46fad23f0ffff67ba56178612fa484631c50ada2da3
MD5 fc0e8a89a05076d4b0fd4b125e6623dd
BLAKE2b-256 b0acdbd8a303cee1425b36b25eea47ee692f494f5a8feaf3093345c5f307f89b

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: hybgensea-0.1.1-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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2e44375c74544f5fabb7c50da148b1d7daaadc436ca4ed9dd234401f8a4444f0
MD5 0c89317b02921d9668d25941e43da29c
BLAKE2b-256 5b2f23d90e3de620c6287cc5fd44bd13af623dcfc99e773c9c2f1c6beed1a84d

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c5b39108a2eb1bda370355e4d92e062f186d62107fece7ed3cd6e6da6fc4b5cb
MD5 e435498582834e27c2d2840bafd25a5d
BLAKE2b-256 d7fe6eba530cd70e1101e12a778ef6929c8657a73b6cdab13dc8bb37600a69ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp311-cp311-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.1-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 9c6df8ec794ea22dfbdbd7b620f1a8c22c8261f071f744d0d413b2bfc6ce2c2e
MD5 112fcb713368c3826f8bc6963d7472c8
BLAKE2b-256 68c76f600d60c98aa2b28ed9629be70bf350aef68afa5616effc0417f90b2806

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 69ae9f49fe9b6319fc387d445a94d9a2884adf632a3c07075432d105c5f5b01c
MD5 9b2d45e1a67ec635c1f1b5f37eb3c658
BLAKE2b-256 8c125263f8d68e675273895662ee9b94a0091f69ca960733642c9156921e5631

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 f471954b092bea04436cbbf4b8c9a10415b687dd1ae59e35ba850a0a6ae54e07
MD5 2772bc43d682b20654c26718aa95feb8
BLAKE2b-256 4fa25df8fb87db92c669f3387aaff3c6ba69bb03f13c6566a5de9458c167bc7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e31f590083944ea836cd243f6f9db2f6256e3a8de2e4d60ca6975ff916a81696
MD5 1793169969112872b77ff85c4c32b2ca
BLAKE2b-256 bcc354faea7cb2f86568bcd7ba4dd356234543838f367e7ca30aee7593adec1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: hybgensea-0.1.1-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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0d34bf7f2af4831b0ee7c6df597c76e7b94d09e0147476d744544a41ba09bebc
MD5 4143cd15bb276a4b6b6a8f7e9907eaa2
BLAKE2b-256 9027f2b073b0101276226789972963af457141b9b8a3e20983600228606d9108

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: hybgensea-0.1.1-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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 53728a72ec95d388e147a7c174b205423d9b9f2479739fa8e9ede0b9e9ac1e83
MD5 005e596decc6950773c67adfff139701
BLAKE2b-256 0e4216d5b2c20b14c7781e6ff75e0e7d8afeee66687f10502ad341bdf737e1e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 de7af18e091cd499a4d16e662a6f3a15b045dd4ca1c4ffc87b6f4b4ae2c77ba6
MD5 cfebdf4556fa3f17cf6d6028dcfdc753
BLAKE2b-256 a0fd4cee1c2d7063183673e6baab623a8c877b89412658e44ac3b112f9794657

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp310-cp310-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.1-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 85f4e8f24dec1d737153b2b88a421a213cd5318894dc365267133b84eaa2c1a1
MD5 323f3b64e1a637594773542b6a00bf3f
BLAKE2b-256 69f0888a3d1faa9f4f959989a06ac9440421e353e0b0999b0d7370efe369d368

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 062d779bf1be7dca5d534c2e8fde8eaad6d10def5bbd458964ff80083b6200fc
MD5 05c513a3f88de5c0aaf11e2af40fa7ab
BLAKE2b-256 b72858ae6bd8fa9351ef87c1568d0ab67dd9e902d308d4e3702b74c68ab83efa

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 6ec0720918621156f248fc5aafc8baed2674c9f823d9be5b412dd218637a3f09
MD5 b0f225751ae9aae3ba8d0f6a142ed614
BLAKE2b-256 c8476e65b0e88e6f6ea2b3ddd7623390e2d471658e9a83d8e9dd744bb7ff8a51

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hybgensea-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5c6a53ac771d15cc328adf59a006554353053f0497cb2aaf69626d903857c59
MD5 7597552e75e11a012576cfc921910949
BLAKE2b-256 4c8069a406cae072c8f52640c1820af247ea83b5cf76575c9e44f10e8ce40fc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for hybgensea-0.1.1-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