Skip to main content

With Uno, finally take full control of your SQP/barrier solver for nonlinearly constrained optimization

Project description

Uno

Uno is a solver for nonlinearly constrained optimization that unifies Lagrange-Newton (essentially SQP and interior-point) methods. It breaks them down into a set of common building blocks (e.g., strategies to compute descent directions and techniques to enforce globalization).

unopy, Uno's Python interface, allows you to solve an optimization model described by callback functions.

Example

An implementation example of the Hock-Schittkowski model hs015 is available in the file example_hs015.py.

Building an optimization model

Building an optimization model is incremental and starts with the information about the variables:

model = unopy.Model(problem_type, number_variables,
   variables_lower_bounds, variables_upper_bounds, base_indexing)

The following optional elements can be added to the model separately:

  • the objective function (and its gradient). It is 0 otherwise;
model.set_objective(optimization_sense, objective_function, objective_gradient)
  • constraint functions (and their Jacobian);
model.set_constraints(number_constraints, constraint_functions,
   constraints_lower_bounds, constraints_upper_bounds, number_jacobian_nonzeros,
   jacobian_row_indices, jacobian_column_indices, jacobian)
  • the Lagrangian Hessian;
model.set_lagrangian_hessian(number_hessian_nonzeros, hessian_triangular_part, 
   hessian_row_indices, hessian_column_indices, lagrangian_hessian, lagrangian_sign_convention)
  • a Jacobian operator (performs Jacobian-vector products);
model.set_jacobian_operator(jacobian_operator)
  • a Jacobian-transposed operator (performs Jacobian-transposed-vector products);
model.set_jacobian_transposed_operator(jacobian_transposed_operator)
  • a Hessian operator (performs Hessian-vector products);
model.set_lagrangian_hessian_operator(lagrangian_hessian_operator, lagrangian_sign_convention)
  • user data of an arbitrary type;
model.set_user_data(user_data)
  • an initial primal point;
model.set_initial_primal_iterate(initial_primal_iterate)
  • an initial dual point.
model.set_initial_dual_iterate(initial_dual_iterate)

Each of these functions throws an exception upon failure.

Creating an instance of the Uno solver

Create an instance of the Uno solver with a simple function call:

uno_solver = unopy.UnoSolver()

Passing options to the Uno solver

Options can be passed to the Uno solver:

uno_solver.set_option("print_solution", True)

Uno mimics the state-of-the-art solvers filterSQP and IPOPT via presets:

uno_solver.set_preset("filtersqp")
# or
uno_solver.set_preset("ipopt")

Solving the model

The model can then be solved by Uno:

result = uno_solver.optimize(model)

Inspecting the result

To inspect the result of the optimization, read the attributes of the result object:

  • the optimization status (UNO_SUCCESS, UNO_ITERATION_LIMIT, UNO_TIME_LIMIT, UNO_EVALUATION_ERROR, UNO_ALGORITHMIC_ERROR): result.optimization_status
  • the solution status (UNO_NOT_OPTIMAL, UNO_FEASIBLE_KKT_POINT, UNO_FEASIBLE_FJ_POINT, UNO_INFEASIBLE_STATIONARY_POINT, UNO_FEASIBLE_SMALL_STEP, UNO_INFEASIBLE_SMALL_STEP, UNO_UNBOUNDED): result.solution_status
  • the objective value of the solution: result.solution_objective
  • the primal solution: result.primal_solution
  • the dual solution associated with the general constraints: result.constraint_dual_solution
  • the dual solution associated with the lower bounds: result.lower_bound_dual_solution
  • the dual solution associated with the upper bounds: result.upper_bound_dual_solution
  • the primal feasibility residual at the solution: result.solution_primal_feasibility
  • the stationarity residual at the solution: result.solution_stationarity
  • the complementarity residual at the solution: result.solution_complementarity
  • the number of (outer) iterations: result.number_iterations
  • the CPU time (in seconds): result.cpu_time
  • the number of objective evaluations: result.number_objective_evaluations
  • the number of constraint evaluations: result.number_constraint_evaluations
  • the number of objective gradient evaluations: result.number_objective_gradient_evaluations
  • the number of Jacobian evaluations: result.number_jacobian_evaluations
  • the number of Hessian evaluations: result.number_hessian_evaluations
  • the number of subproblems solved: result.number_subproblems_solved

How to cite Uno

We have submitted our paper to the Mathematical Programming Computation journal. The preprint is available on ResearchGate.

Until it is published, you can use the following bibtex entry:

@unpublished{VanaretLeyffer2024,
  author = {Vanaret, Charlie and Leyffer, Sven},
  title = {Implementing a unified solver for nonlinearly constrained optimization},
  year = {2024},
  note = {Submitted to Mathematical Programming Computation}
}

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

unopy-0.2.4.tar.gz (30.1 MB view details)

Uploaded Source

Built Distributions

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

unopy-0.2.4-cp314-cp314t-win_amd64.whl (4.7 MB view details)

Uploaded CPython 3.14tWindows x86-64

unopy-0.2.4-cp314-cp314t-musllinux_1_2_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

unopy-0.2.4-cp314-cp314t-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

unopy-0.2.4-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.5 MB view details)

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

unopy-0.2.4-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

unopy-0.2.4-cp314-cp314t-macosx_15_0_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ x86-64

unopy-0.2.4-cp314-cp314t-macosx_15_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ ARM64

unopy-0.2.4-cp314-cp314-win_amd64.whl (4.7 MB view details)

Uploaded CPython 3.14Windows x86-64

unopy-0.2.4-cp314-cp314-musllinux_1_2_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

unopy-0.2.4-cp314-cp314-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

unopy-0.2.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.5 MB view details)

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

unopy-0.2.4-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

unopy-0.2.4-cp314-cp314-macosx_15_0_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

unopy-0.2.4-cp314-cp314-macosx_15_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

unopy-0.2.4-cp313-cp313-win_amd64.whl (4.7 MB view details)

Uploaded CPython 3.13Windows x86-64

unopy-0.2.4-cp313-cp313-musllinux_1_2_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

unopy-0.2.4-cp313-cp313-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

unopy-0.2.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.5 MB view details)

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

unopy-0.2.4-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

unopy-0.2.4-cp313-cp313-macosx_15_0_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

unopy-0.2.4-cp313-cp313-macosx_15_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

unopy-0.2.4-cp312-cp312-win_amd64.whl (4.7 MB view details)

Uploaded CPython 3.12Windows x86-64

unopy-0.2.4-cp312-cp312-musllinux_1_2_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

unopy-0.2.4-cp312-cp312-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

unopy-0.2.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.5 MB view details)

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

unopy-0.2.4-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

unopy-0.2.4-cp312-cp312-macosx_15_0_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

unopy-0.2.4-cp312-cp312-macosx_15_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

unopy-0.2.4-cp311-cp311-win_amd64.whl (4.7 MB view details)

Uploaded CPython 3.11Windows x86-64

unopy-0.2.4-cp311-cp311-musllinux_1_2_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

unopy-0.2.4-cp311-cp311-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

unopy-0.2.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.5 MB view details)

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

unopy-0.2.4-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

unopy-0.2.4-cp311-cp311-macosx_15_0_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

unopy-0.2.4-cp311-cp311-macosx_15_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

unopy-0.2.4-cp310-cp310-win_amd64.whl (4.6 MB view details)

Uploaded CPython 3.10Windows x86-64

unopy-0.2.4-cp310-cp310-musllinux_1_2_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

unopy-0.2.4-cp310-cp310-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

unopy-0.2.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.5 MB view details)

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

unopy-0.2.4-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

unopy-0.2.4-cp310-cp310-macosx_15_0_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

unopy-0.2.4-cp310-cp310-macosx_15_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

unopy-0.2.4-cp39-cp39-win_amd64.whl (4.7 MB view details)

Uploaded CPython 3.9Windows x86-64

unopy-0.2.4-cp39-cp39-musllinux_1_2_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

unopy-0.2.4-cp39-cp39-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

unopy-0.2.4-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.5 MB view details)

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

unopy-0.2.4-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

unopy-0.2.4-cp39-cp39-macosx_15_0_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.9macOS 15.0+ x86-64

unopy-0.2.4-cp39-cp39-macosx_15_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.9macOS 15.0+ ARM64

unopy-0.2.4-cp38-cp38-win_amd64.whl (4.7 MB view details)

Uploaded CPython 3.8Windows x86-64

unopy-0.2.4-cp38-cp38-musllinux_1_2_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

unopy-0.2.4-cp38-cp38-musllinux_1_2_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

unopy-0.2.4-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.5 MB view details)

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

unopy-0.2.4-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

unopy-0.2.4-cp38-cp38-macosx_15_0_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.8macOS 15.0+ x86-64

unopy-0.2.4-cp38-cp38-macosx_15_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.8macOS 15.0+ ARM64

File details

Details for the file unopy-0.2.4.tar.gz.

File metadata

  • Download URL: unopy-0.2.4.tar.gz
  • Upload date:
  • Size: 30.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for unopy-0.2.4.tar.gz
Algorithm Hash digest
SHA256 805c860a17ef5fc852831fbe7dd7e65a1ddc9370507adcda4d856528469f4456
MD5 79625452fc7e1832b6d23d08e7c3933e
BLAKE2b-256 723149a6e095ce8b954901d2af4adc0b14fb44b4fd4657267a6399209286e4e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4.tar.gz:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: unopy-0.2.4-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 4.7 MB
  • 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 unopy-0.2.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 342ca26244ad4dfdea08b3cde0029c4c8dcb6158cc04cf77769132f45629d81f
MD5 0597161ccaea3cf04732c8635f37e058
BLAKE2b-256 955ce00862f9f0c240cd771ad3691ab235f804eea4de289f1067d89aed4af08d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp314-cp314t-win_amd64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69f3c24596392d570af2fcd467baa0ec25d60176e37b202e2a7aacda5e5087ed
MD5 4e5b14039e34acb8ecbae87b7cfc092a
BLAKE2b-256 6977763ffef9dd23fbf075533c39d8baf058aa1cd400153cc1b637ea42b56270

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a9e47c12d284b98d28fce3bd900b5c5eecf7147071331ff417fd967b16135167
MD5 332ca02b77e1a56e08982996961a9fc5
BLAKE2b-256 afb361e6f35082c9e845118b6c94d70990fbcb0439df031516dd019007cc44dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 49e1a5801ad0e4c41fa20fa02721a2807c041d082d5a430ca5699eed43cd1f04
MD5 59cddd6b03bc2d46649d0b13f1b7d7ab
BLAKE2b-256 6704de7dbf8b34c7fdd5796da5c127762fa3c40d8aea3397aaacce187bba23e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 76e771718b24d5b16b58813b410a298ec0faf3d99cc83c5b7e6619a035a849c6
MD5 f9898f65cd1d30410b566ba083a59903
BLAKE2b-256 369ae29ee124ef86c3e42d3ceac47a304226d3aafb42854f3d0ca4487c469416

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp314-cp314t-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 6c5ec9cf2d1284011550b815f68c02de46d1f9b7b5d5c5961b815c38ed92f0ff
MD5 ac5e2442e042dddc1ceb343793d8d116
BLAKE2b-256 2010462d215e49e55183578eabf04b3d5de72a913773a690e7d7fc9f84d3d913

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp314-cp314t-macosx_15_0_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp314-cp314t-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 292e40998809c4c89ca272d7b6ff99b1a01bbaf4943b206b02b39788f14e0331
MD5 006ac8f9125f7211c753bb5804a0f732
BLAKE2b-256 37203bfb04edaebeeb5c01fd592ac604555d24477c022d6168a01e0e627b0c13

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp314-cp314t-macosx_15_0_arm64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: unopy-0.2.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 4.7 MB
  • 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 unopy-0.2.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 295a677be06380a50917c82dc17a12757ed1613e6b432f4e3a2df072763d1523
MD5 38eddd6959be2daa6de63beed60c4a5e
BLAKE2b-256 cff88861d2979a5b8eb512e9a67e1769a0ff9a3bf119d98fdb82c2cbd2f1a980

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp314-cp314-win_amd64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bdc97626f9ef29d7a2b1498a61562cb406e13cd7b2e2f89b6c38987589660eac
MD5 9e12fefb13b2bc54cca4597bcfd0ff83
BLAKE2b-256 6499f7b87588cb0b6f08cf2c990634dd200b9287148015d65ebaac31d826bdde

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bf18b3197fe7a87c426ff42b786a885320cf6c474e1bec00250fcf238dfd48d7
MD5 13ddb1ff18ca36c8a9389ee45528767f
BLAKE2b-256 7e15085f78d86f255c35be89fc82d9192902137f18c2d174a6721b4384bc3981

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c991fbcc8b18d8e400189242ec766401103acec96cf06b2a1db29477fe9663f7
MD5 a2557456598f894530bea618ebe23f2d
BLAKE2b-256 24df8f783d9b22b12b1101ace05b2a09db12c46d445f66a7d7edda5c22294009

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 90507077cb0be149291e2d80bb0dc7167246352721e2ef9a633ba8c7d617edd0
MD5 c02cadb35b8f8da7b20723b3c9aa6b1e
BLAKE2b-256 7cba5116d91bb8326facfd091802a131a58dd02998ecf53a3ad73b33442d5133

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp314-cp314-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 a439fea115d7db4de336c99ebd5bb97556d7f7d3f541a9ece4a8c9ba46f81013
MD5 cffec38847a1f19c22054af45d1f5210
BLAKE2b-256 f59c5c669a3ce028c58456b1d8bfb8923fa932252b385d6d7081356c26935501

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp314-cp314-macosx_15_0_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp314-cp314-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 ec60c7fc62191c152f7e0d707bc8a8bb064ac66e464a955a2db12e4a85c7e7e5
MD5 d3740ff0e662d7a1a696294269c8a9ba
BLAKE2b-256 553e2192af7f14970e4eef51d5236f862d4d60e755b0b23ef750c0eb5566db20

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp314-cp314-macosx_15_0_arm64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: unopy-0.2.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 4.7 MB
  • 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 unopy-0.2.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4981fe620a1fea9a8f007f63125a86dc4885f34e99489823fa15040cb0087aed
MD5 4f7a87b69ef7bd24102c080a7f4ac261
BLAKE2b-256 fe204729f6ee2389c6e261b358eed4f3d586818d09916589a9adbe72ee9732c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp313-cp313-win_amd64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 99bc891cde004993404abe867d6827d7cb4623b95e42efdedd4ab929f27e3eff
MD5 a8d5d20ac19b469578666910642a5f60
BLAKE2b-256 23128335d75d5c4073e1560a41cab85f76f7316c15ed234eab530efccf6646af

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0341fcafa50849d9bb58f9f89c0ddff0d0dd69b8b2f4c78161e6d63c3926c4d7
MD5 b001480ac56c8ee3cfd3db3d35a0ffd0
BLAKE2b-256 0a284af984f1ea5397a8cd9b0bbb695cc8dc6003c266a20041efecabad7714e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ff69ecb59681384743e8626e12121035c3cd92ae64a70f2f6ab45a300bb6570b
MD5 8e38c4557f2b5f9c5b7419f2051852d1
BLAKE2b-256 ea595b3e759af373e0a5948533551356d3fc715d9c55c437ada8f53d7cbd0bb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0aa672f169151a29946cc6cd6ba27c84e11303300196efcb63b1ea2fceff5c20
MD5 1e9a518165ec9403741671cc4cdfdff9
BLAKE2b-256 1f426503c2b6c7f43524dcb7407167579ba3491ac1f445896d6ac8e607d5713c

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 5b70ca62179ac1125beebce2536650e91ec883f44a989203dfe36515b9c9a868
MD5 c5dd0283e3c525e994b05817e851ebed
BLAKE2b-256 8b0a2bdd21cfee5759c7d898b489811accd07c0e8c6ebfeafb527c047751dcfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp313-cp313-macosx_15_0_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 ce7e25437166ce632e9550956a9b3e0c40dc2acffcb38ffe2497c457587d417e
MD5 ac5893b536cc39d4b3a39799075e1302
BLAKE2b-256 0335bac21959b6ed056eed5b0d353ecab2781ce09e6c5d1b4ed59ff0904265a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp313-cp313-macosx_15_0_arm64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: unopy-0.2.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 4.7 MB
  • 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 unopy-0.2.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 71b1d6e6e0da85708fbf801443494da2f1dbbb7a79be7e5618e7d194f64a7794
MD5 a472ef007e7b8aad1df298aa4d6a69a7
BLAKE2b-256 35ef7fba238f47355fd5cfa32edcd94037b12e1e0c0e92a108b7fe9fb3765a61

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp312-cp312-win_amd64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c5d1b22b10374c4d8f93280275d75a7b213929792a0935dbe36d12118dce3a3c
MD5 e5cb9924ec46d3e04245d416065e47ca
BLAKE2b-256 88ab8c0ccc816e6325d27418d54ebc595fd5e5c4565b34dec065e2945b9e05ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b05f7e3881c5013a2790fd68042dad6134a6227d348814896aded3154bb96d1
MD5 17c389cb129d9f7d3a9aa0b95f4d7353
BLAKE2b-256 c7c3153e09e22b1d0c35ac6aaf4f5b21c648c9ba7c4c97dd715a78d43246ea41

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ea898de1b93a76357fc04a680cb04af3f7013a100d643e53aeb8669e5af06c39
MD5 ac25a2efc82acf99b98dfe9f84973132
BLAKE2b-256 17b972a19be3465bc0787c7b024dbf00d92038889cf2611fba08ec1ded8d3a56

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eff57c150fe2a2dca3b00238ac2f916a81641304459ab558e8519c2b4178cad0
MD5 ac25b755e26a8daa014125d54b582cea
BLAKE2b-256 ddad4da10e74b917537f2ae56fca7fc70823880b2de2ecaac93adcb95e3ba9d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 b217a9ab1334ccaa8e17dbb1937aae275bcaae1ef84bdf9449571b17a375f46c
MD5 68e17a525502204607dc21fad15fab9f
BLAKE2b-256 9f36a4c82889b1b5bd6bce202429b485ba539f3d951581bea3582b5790226555

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp312-cp312-macosx_15_0_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 7321ab58486009ed3c1d2cba541654c61b02e441f861308c8076d41133577859
MD5 f16eb03a835af766ee187f0c82767c27
BLAKE2b-256 43d37c06b2b34610023745f57296c25e1923a03a8d1a7d69e16ed6463f1d53b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp312-cp312-macosx_15_0_arm64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: unopy-0.2.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 4.7 MB
  • 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 unopy-0.2.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 170f0c12f7c590fbee0b6e1c21ff0da9c60eb92dca619539b1f7440d99c4b808
MD5 cf671f3ca75c258561764a31dddf0d2a
BLAKE2b-256 11ef7894db8a616e2bbcd29440202f4caa8587495453585eee731f6a929e5230

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp311-cp311-win_amd64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e0c4f47015fd3047d9dbd1a61f2dde1632d65b6108deb83f287e78ced987a303
MD5 4fd3b439f55b12563d6b4c02fc3d9467
BLAKE2b-256 eeab05b1bb9c8f731d4a3e9374ac827cbf777499315a94b5fdd68db7372ea944

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f5a078d2cb01a49b10c15f55276433da6cf1be68fb42402508f30047be3251dd
MD5 e5c9a5656e2a92073fd745bf69d75f9d
BLAKE2b-256 e914941ec75ecdd6b2347ce1a598bcd82c73bf287debbe1ef1a8dafa18b9caa1

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5d557c46eb1eb6da91b457b6d9fae8c51a2403061b3b6aaeb28efdcbb1b00579
MD5 109c7e2699831eefd422851a7cc9f11e
BLAKE2b-256 45458585a64469cec2e26f3bb8196a9e8a137eb5ece9000ccf6d9d0ef0ceab22

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 85f5cb24d7adf88beecfaf41054993e1c7f6b581ef0c36024863cfab71411861
MD5 17642e79b28a1d1010bc1de5d7aa4860
BLAKE2b-256 c7629fc2c35d8d91ecbfc0915e85a07993afb6df6be1d3f089775a3c28de4957

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 aba05398bb8e9615f755529a7b5133705ce4d2b2f3198ef8921c41da9232fc1a
MD5 dbe12215dccb007c0bca240a7ef744d8
BLAKE2b-256 62b66f2a160d0554999272647e917acdfad5fd012e5e492e3de9e11679f4beac

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp311-cp311-macosx_15_0_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 baf88e125e015f38d8dbd9e431d30aab52e47882728bc98f4c57eb035297dce4
MD5 ddbc3dca5c525f45bba3d4bf03b8e0bc
BLAKE2b-256 9e0d4812dbdf8c9dd1e7626109eedd85340e298559a775f98d808beb9df8606c

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp311-cp311-macosx_15_0_arm64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: unopy-0.2.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 4.6 MB
  • 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 unopy-0.2.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 51f27f79432e66637af2f19da4197630a49ebc420ae3a55b7426a19cf54d9767
MD5 281bc2a610d6a9c9fce2b8372f101974
BLAKE2b-256 99a99d06b86605a8b1505cb72d6ef83b36bc39fffb11aed0051126f6a94798d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp310-cp310-win_amd64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f3d3b4db1fbb836070e2cd3b608d23c59917949dfa49e4df91515afeb1b7c18a
MD5 694a4826028464d1ceaa1685317572a2
BLAKE2b-256 a3f0a5969df66581bf56898417391e27340a625b7ad93d0ea8fec87719d99c24

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 30dd5238088355fc33a80aeab88d3dfd3dd784e7f785e23ae114b78692647d8a
MD5 f13ff5dc167796374fa26fefd08e6cf8
BLAKE2b-256 a701325c8fa2eabcfe1e98db9ccf94c0bf4e0312f33613a652d9f5adc174f83d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 68b3f2ed902a617ecb8db9600094649db3a9be1fdda4417e7aea7dab4b8ea28c
MD5 23ac3c3aac4aadbaf5170b05ea462fc9
BLAKE2b-256 28500ce298eab7d9697594f1a4d22414e964ac3cd8abc8ef480a2eb9d240828d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b9f34bd052ececad174937c916f7af53f5ea6159e28fa2e0484ed55ef8bc94ab
MD5 6a04643825e1bb35682b0d9715257b41
BLAKE2b-256 baa77aa77404d4541bf82bcc34f6ff6de9c19bde247585f427ca36e6c4c0f691

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 b5216a46a94ddd9595414fceb4bc85481047d51c3927620b51c421f232fe5309
MD5 7de87a6be38d3ff1f95b9d9f411fd4ad
BLAKE2b-256 2aaa14307b8679afa15670db6f4b96c988de8eb3e79b621be99394f9570eafc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp310-cp310-macosx_15_0_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp310-cp310-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 ed117a6d96d67be6fb510982f4d6747a5da370387aaf6b28f3c219710c20b7e9
MD5 192f80738da08509c1a8d361d3cd6ccc
BLAKE2b-256 85b7e90e5463f96469ba0b215238dbb39b9823c94e25ed53580f673e3f1e8184

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp310-cp310-macosx_15_0_arm64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: unopy-0.2.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 4.7 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for unopy-0.2.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d65a9eb35fd7c03094316a482e106ddefc8e65ba7b1f1f9a361b380df92e5d98
MD5 3d610ed1a11970c12239a8d8a3a67b7e
BLAKE2b-256 d53872ea4f822fb75756bdf4920aba081d56f25d4392f230ee083923e899c6e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp39-cp39-win_amd64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a4e2a42d2bab08cea75289a6825fe5ecefdb0a2c9585c26fcb9ce50c8e38e518
MD5 bb4e1c6d2d05e2df3a84a66b58699163
BLAKE2b-256 a7859d4a6308f945451fac93a54b8dc94ef92ff36deff26a4078745a03453786

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 72704216117956858c087f79e70ae559c9c01b5a29128f31b4c52628c3906c47
MD5 2afbfbffbf95fef360c643b33cb43a45
BLAKE2b-256 c8db7536f9f9ea690ecfefb0a74d2e609d9d1b1b4e555b51d7d8a2db63ab07f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dbdf3bb6e45bb8cfec1335c1b2145a20a7d552a38868084f507b06b6a3e2fccc
MD5 5cd327d3048838ee693a25d4ea032e10
BLAKE2b-256 aa8a82b9059b037b1b0fd6b39f457f13e0f34a3220cc4e71300df3c5993d7dac

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d4ace7e4f7a1fc9d62c52511b9e43df74efda26a819f86ec3dda3b26b7d30d2f
MD5 1463fae471a81054cbcc78c97a6b35fe
BLAKE2b-256 f70d96649816bf4c150d7f5047f16be236437f262d784f0fd2e8204732543601

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp39-cp39-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 6dea2a21b1a3adc81c51a6601686de0ac9789390db49b11c46572101e3136fa2
MD5 b075c505c766796e1d2398242b9d069f
BLAKE2b-256 f1bbc15e37705f12c9559c4a950c662c6143eb76a5c89fbb203d11ce4267bfe4

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp39-cp39-macosx_15_0_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp39-cp39-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp39-cp39-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 f1959adeb3797c613906be10823074527fa7fdc918346279c67e41f4f3c1407d
MD5 e3e296b52c34214339c01232a9f3fa01
BLAKE2b-256 be26d3ac896c5068e6fff7b8caac612d9aaa8126885b8c37ba68aca4d07c08b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp39-cp39-macosx_15_0_arm64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: unopy-0.2.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 4.7 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for unopy-0.2.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4fbd85bcfa740da575083d571af778a4095b140800cd333d04e8317433390341
MD5 7f063adda5735dc6f63b42ff5f8b2922
BLAKE2b-256 f45e281b7d0f24b678c019adb12fb52bdfb73d9b80ef78d0e3a4400eee22030e

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp38-cp38-win_amd64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3456de9e7ed3da26a7815bf6799132c3a777be327a121751b9c3fdd979eda080
MD5 7b399bb80cbde12afbd0440d89cfc6be
BLAKE2b-256 9ae47ec2a5856d3081f593755b09fa54634635e4c9f7bc827d337ec17318811e

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c2acb4f3f37e906a6bc10ae7b310d24f3b813c9b502d51749b98ce4dafbcc4c7
MD5 515214166d018196c7800c0ff7fb1022
BLAKE2b-256 9ec079b6ae343b2be31ff8b1e20d1c7bd042c4e60f2ea89d7e55aeeeb7c7b034

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dcdaada16b3a36183a2c2852147a5356cc5b0c0569036410568cda922c5ac6d5
MD5 477d5dcc7ad41a54d738b4f69235c130
BLAKE2b-256 91f65d80cfd7ad47fd8ef72464e9ecde551a338a56e7a2655887d8e7fca48dfc

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 525a606b4ffcdfb9dc1f8e813626be271db234d4b7db0a75c71c024bebfdc11c
MD5 adb7c5c5c1a48f43b57c398b7cb3e8a7
BLAKE2b-256 89a83b7f9923002dc44cdac848fcf06c7d20ffd6eb650a93f7abc7abe29f6359

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp38-cp38-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp38-cp38-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 0719b4bc9d2310e8482edaeca1dea0ff7a9e931980adbb0e3a0a99d9a12d0eb1
MD5 529a385d04e02764bf877eaf87124084
BLAKE2b-256 04503522952dec04c1f9dca95ea29db583e3d58165b39e083d66224bd1423198

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp38-cp38-macosx_15_0_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.2.4-cp38-cp38-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for unopy-0.2.4-cp38-cp38-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 39ecc3960e68aaf483a2d01199252192c7f29d08241c44fe7b36e45550179948
MD5 e5397e6e4e62b4a2a09c58dc1e4ff553
BLAKE2b-256 b30cd07b8007625635b88ade8fd54e2303cb9810beb36a4e09298b5ddaa57b61

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.4-cp38-cp38-macosx_15_0_arm64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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