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.6.tar.gz (1.8 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.6-cp314-cp314t-win_amd64.whl (7.0 MB view details)

Uploaded CPython 3.14tWindows x86-64

unopy-0.2.6-cp314-cp314t-musllinux_1_2_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

unopy-0.2.6-cp314-cp314t-musllinux_1_2_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

unopy-0.2.6-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.8 MB view details)

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

unopy-0.2.6-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (4.9 MB view details)

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

unopy-0.2.6-cp314-cp314t-macosx_15_0_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ x86-64

unopy-0.2.6-cp314-cp314t-macosx_15_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ ARM64

unopy-0.2.6-cp314-cp314-win_amd64.whl (7.0 MB view details)

Uploaded CPython 3.14Windows x86-64

unopy-0.2.6-cp314-cp314-musllinux_1_2_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

unopy-0.2.6-cp314-cp314-musllinux_1_2_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

unopy-0.2.6-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.8 MB view details)

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

unopy-0.2.6-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (4.9 MB view details)

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

unopy-0.2.6-cp314-cp314-macosx_15_0_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

unopy-0.2.6-cp314-cp314-macosx_15_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

unopy-0.2.6-cp313-cp313-win_amd64.whl (7.0 MB view details)

Uploaded CPython 3.13Windows x86-64

unopy-0.2.6-cp313-cp313-musllinux_1_2_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

unopy-0.2.6-cp313-cp313-musllinux_1_2_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

unopy-0.2.6-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.8 MB view details)

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

unopy-0.2.6-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (4.9 MB view details)

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

unopy-0.2.6-cp313-cp313-macosx_15_0_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

unopy-0.2.6-cp313-cp313-macosx_15_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

unopy-0.2.6-cp312-cp312-win_amd64.whl (7.0 MB view details)

Uploaded CPython 3.12Windows x86-64

unopy-0.2.6-cp312-cp312-musllinux_1_2_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

unopy-0.2.6-cp312-cp312-musllinux_1_2_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

unopy-0.2.6-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.8 MB view details)

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

unopy-0.2.6-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (4.9 MB view details)

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

unopy-0.2.6-cp312-cp312-macosx_15_0_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

unopy-0.2.6-cp312-cp312-macosx_15_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

unopy-0.2.6-cp311-cp311-win_amd64.whl (7.0 MB view details)

Uploaded CPython 3.11Windows x86-64

unopy-0.2.6-cp311-cp311-musllinux_1_2_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

unopy-0.2.6-cp311-cp311-musllinux_1_2_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

unopy-0.2.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.8 MB view details)

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

unopy-0.2.6-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (4.9 MB view details)

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

unopy-0.2.6-cp311-cp311-macosx_15_0_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

unopy-0.2.6-cp311-cp311-macosx_15_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

unopy-0.2.6-cp310-cp310-win_amd64.whl (7.0 MB view details)

Uploaded CPython 3.10Windows x86-64

unopy-0.2.6-cp310-cp310-musllinux_1_2_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

unopy-0.2.6-cp310-cp310-musllinux_1_2_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

unopy-0.2.6-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.8 MB view details)

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

unopy-0.2.6-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (4.9 MB view details)

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

unopy-0.2.6-cp310-cp310-macosx_15_0_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

unopy-0.2.6-cp310-cp310-macosx_15_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

unopy-0.2.6-cp39-cp39-win_amd64.whl (7.0 MB view details)

Uploaded CPython 3.9Windows x86-64

unopy-0.2.6-cp39-cp39-musllinux_1_2_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

unopy-0.2.6-cp39-cp39-musllinux_1_2_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

unopy-0.2.6-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.8 MB view details)

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

unopy-0.2.6-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (4.9 MB view details)

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

unopy-0.2.6-cp39-cp39-macosx_15_0_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.9macOS 15.0+ x86-64

unopy-0.2.6-cp39-cp39-macosx_15_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.9macOS 15.0+ ARM64

unopy-0.2.6-cp38-cp38-win_amd64.whl (7.0 MB view details)

Uploaded CPython 3.8Windows x86-64

unopy-0.2.6-cp38-cp38-musllinux_1_2_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

unopy-0.2.6-cp38-cp38-musllinux_1_2_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

unopy-0.2.6-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (5.8 MB view details)

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

unopy-0.2.6-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (4.9 MB view details)

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

unopy-0.2.6-cp38-cp38-macosx_15_0_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.8macOS 15.0+ x86-64

unopy-0.2.6-cp38-cp38-macosx_15_0_arm64.whl (4.9 MB view details)

Uploaded CPython 3.8macOS 15.0+ ARM64

File details

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

File metadata

  • Download URL: unopy-0.2.6.tar.gz
  • Upload date:
  • Size: 1.8 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.6.tar.gz
Algorithm Hash digest
SHA256 4527ba9b8debb300f973bdd8969bcf4be793bb772af308700ec859f6445ebcb4
MD5 5f9884c00e0cd76ff830c69299fabb90
BLAKE2b-256 b4850ba81033e16cdb12e41db2c4f3d6905f92115235087ff783d7de2418b6ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6.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.6-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: unopy-0.2.6-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 7.0 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.6-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 510008a87e9d4b925a5ddc3578e3753bf82f8c6aeff8e16f0c87da9efdcbce05
MD5 70542dc791b214b8bc2f2a40936734e7
BLAKE2b-256 34dcebb0c481021134285c69d4595f0c47b865b6e8ca5015257c861460f5f1f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 682d8d160234ba3413ad75db6412744175ab1a9f3f1b9a040b17763e5d3f34ae
MD5 4045422d62aec49c642bb98034f4eaa2
BLAKE2b-256 b95e9d133d3a18ed6247fbdf09e2ffc52ef1d2df5e8da00643c0bb5e07a2aaa3

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b43e49f392b260dc184f5d5269dec06921a7028ecfdfdb0556582d765095b36
MD5 3f8abb240b118d39b990e2474677648f
BLAKE2b-256 14779d05055d9d6db8a806c3982b84375e6f98c47d29a724a8b0113f07e7b177

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8391f12893dd24898689e2c4dfddf3fd5991eae83a998ead528647fea48e6446
MD5 458d46c7868f9b75d3cc9ebfeb3bb785
BLAKE2b-256 10373d7884d1c9e62fa10f5f9c92ba7b1dca1419d6167674ff2dc5c4e5701427

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 21c11955b0f4f467ee1cc9b8fb4a2ccd32358c93e80f1feb07e504d1acb2e81d
MD5 22c8d14423dcdae8db4fc9167dad1ff3
BLAKE2b-256 b82f43bfc292c0f4cafd9b1a013fbc6a9f86feac050f8ee6d7f731b6e3eec8d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp314-cp314t-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 adf1d1ff313ead0d4dc4888f3577795b605c72b1ce7c76e8c6781ee249eaa3fc
MD5 1645d9d811e61e67e4d12d063effa239
BLAKE2b-256 b9286bda67d1183b48b13658b15ff12b37c48b541d105a674cb3a06ef61914fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp314-cp314t-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 cd8df9b629e74775921b181badd273312c29db12d7bf2634b0a69e732ba69690
MD5 7c2de0d5e44549ee102d208f37ae1cd6
BLAKE2b-256 8f1d2c46bccaaaf03d20b2e6b117dc043aaa66073b92495c867381a6a69d6603

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: unopy-0.2.6-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 7.0 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.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 af843d9e3a3fd15d96c0b1ec19544af13464815df7f6caa919c4d2aa4c657eb4
MD5 ab9b55a930b26d61ba225f78dc0a85c1
BLAKE2b-256 fc73b65fc7423af6853c7d5a8dfb1c18548f9d44258a9f6e07c294b14807e080

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b75f1cf3a7e062a48010f50e29265a23bcb91c239800a8b1b811d98966b272e1
MD5 9f01aa6069357d8e9c8b8230421b3b60
BLAKE2b-256 d762f68a3518547381e699b5349334e3a38c282883b7a47232ffc0279f5e9d2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c22bf7ca755ddd0632072d29422bafd80079712eb4748edca523bb626e81c713
MD5 ad0207c951c8730c3dac9a78d06bd437
BLAKE2b-256 326e345124c1fc7cd14bd5a5f593fe8f6571213969eb5c0f2d6ba62535b252a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1b037fca4c8a8e351c1eb0dd86d8bddd6aa5c53a9af18560bdf55bf4218597a3
MD5 12b3035d03aa891bbf075cfb6cd38e92
BLAKE2b-256 375b006337100414b64a2112c1a50b4c46e7bb34e818a865ddba228c8621b748

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c444e2571fe859f0dd896d4091ae48404aec5999b558dc0531424a22f7453b05
MD5 ec5d4c3a4484fab67b13647c6d7f695d
BLAKE2b-256 69b1483a63b0293fa32c5fa53f9f5907f29fc6f1297688b0da637c6f80605b81

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp314-cp314-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 9f22b18acb501d06efcc86f238ec750b53de58061105e5f75b2ed76fc7f847a1
MD5 7e9c74164cbf16d7387088ececdb1dc1
BLAKE2b-256 472cecdb1a866a04846d4513a5ad389ceac73bc08876939fa0d0c81553b6c515

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp314-cp314-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 f20277fa8bea8edc407ea2229ea2268808937ab393f02e417a21474fa99912c0
MD5 c72c52c7c515f0d764463a40a1fffad3
BLAKE2b-256 f697d7f053b5b18d585c4f6c346a98adb270eac55079461ff77f3ae36ccda67c

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: unopy-0.2.6-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 7.0 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.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 60a947c1890f51898fa023b59c73972a08373d6333db4dfb5260948b26904e78
MD5 fb31383993bb99850f5ee8fcfb8b449d
BLAKE2b-256 87c88750ca6f4d3ade641669fbd68c9dcee1219159c3dbe968d63f880470cfdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ecd21304824985d57dc3b3938d8b153c2ba6952fdb493424f43bc621e09c8be
MD5 97ff3e5c87ae0a2783e421a2d2c92c99
BLAKE2b-256 14d1244d55c8f8e8a66336d611bc0f808b2c08bbe7db0ae2c3c1a9fde30f54eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 de62016d6008551e4035a970236559119f935540cf7a2f09eae18713d49f4cf8
MD5 1bd0e201081c7a9f54b5a53d46094e41
BLAKE2b-256 94fc7e4dfc6559f0cde530c9a891aed3fbe973149b1a404e0636414015d7653a

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c3f072dc176b940d5fab3e0195389d4760d54669c09725f5e105f87cd2c4da93
MD5 6aa9e68162950d9a665ca58ca23259fd
BLAKE2b-256 d37fe6f201f3902a77b8b9a561cbf2adf04bafa3ee8fe22c20e5e68c0b012aaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b1ccf11b2540e375641480b867b6e45a20c40c9f2da1d672cfdcd68533bca67f
MD5 52b394445e80e031d0071ec6cde3f413
BLAKE2b-256 2e57484dd2427c4927a811d9b51b14bfd4f30a4454f03e06656aadbb3ff58a9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 0a4b6dbe6fb5bd1de90b432c2d98cafa5f832d32241ca6e9beea2f54372f3d27
MD5 43f6821c44d50d3463077118a9cc2c5d
BLAKE2b-256 d5de5be7095b9b349faa5a5d92367b88af5a05a9c72dcd1901919e3f1468c117

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 3465d14529828c909577c3a55bad6048a82d4cae7671d4c21d1a7c0015f82208
MD5 e5af8a108292977c23608958e4912c20
BLAKE2b-256 6579e03c9207a398a40d9ef5a0391217ef0c6d2e6f3b9f7f993fce353751800f

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: unopy-0.2.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 7.0 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.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 958e2c499fabc58695efe691a11159d32197f2bfd3374685655244d17cbd07d1
MD5 42e2bc5565925086d1acafa8b6cc5a40
BLAKE2b-256 b47b3e55bd0d1c4af00f81ed50724f8546b315998860f9f1f8f1d3174a5c1b7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1e1532ca41a7d158268e4caa3620a917b622fb0b8481315f40da65aa181b211b
MD5 57cd27c17f66858486d5ff6aa265b2a3
BLAKE2b-256 80420d3fd8faee9a26c82ff3f90e7359283add1b5fb7f9d8f3209d4cbf617ccb

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2bb860df056b7b50bedc932de75bf05cd3a8916df43c5d3c90dc44a4e3a0857f
MD5 fdbfb0891c6a3f4c80cbb4320eb676b9
BLAKE2b-256 8111450dabab7a7d1d3b93285379ef545970c71e583ab4ea4fd2d9cf1e146cf0

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5b3926e04f51936d1078046b61b6a6973baa1c55c949dc4b3ae23d908e770749
MD5 10869e23b90b4e352582d7ed4d8af88b
BLAKE2b-256 91c3d549e516882f1539296fb97f1b2ed03d5efa4c188ef908351bb0e301581f

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 02f87c892e9dd32d78930108289d3f80ec624e0a014c3891b3c04c8bad4e5d87
MD5 b7b69b25c0480685aed8bb9ba1dd9a5f
BLAKE2b-256 6d51e19f7cdc3fc1f3e60f59f0e4234a456483f0a14e3b1c5be8c21b01ad3c29

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 16c69d811924e903c2563e489398848efd3cd266998dc8590ee5ff7e6126b936
MD5 17f5d5ab25f94384f369b0b7f4ea1bd6
BLAKE2b-256 a79d6df32c11463b80d9c84c04ca3a35c9a0fccf7666c8084b23d4216fdeb486

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 180ac2c86a765599b6d172d03ea1d229c514905e927717e19ac7ea7728f4abb7
MD5 29762eae6262b489097e38f3110f3717
BLAKE2b-256 4e8a36f65ca2f62b4752cb7582f533ab1436de431520a123d0e62b264650c1c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: unopy-0.2.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 7.0 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.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3aa9408c661e805ff573e23c057665ebe6e469056895494ab1262dbb7ce8ae4e
MD5 a5b12340d879b46c6616d7605a7f4497
BLAKE2b-256 410d7ad3950f530dcaf9a20f021c539ba5dd705c8b1f4ebe9f57832f5343c574

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 86e0458aa9102bf35f34abedb47d9e5110842d0b7a03f3f679298880ca3d9fae
MD5 63051f3fa43d46aafb578f058a08ddd9
BLAKE2b-256 560a2a11c4e033464dda5c9200f7e6842c466dc8e720b2e897c4fcbe369c8430

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 05d4b3e1fe925a02378f033a2b2647ac3b04f10dae5475c9653133768a91f703
MD5 86b6af366f5f40145f1dba5da0367757
BLAKE2b-256 532695dccd157e6df4550f7c000642abf2b4cd04e0361c50c9f7879cff1eae5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ed7b637a00471b8ef73a0eb23d788bc8b6185da73feb24e7f9141b90bc05a435
MD5 9e39e5597ee9cd73211f8040debf6928
BLAKE2b-256 871eca26e064a9c1388210baadf0d223a876b8a867ee8336a6c8945051b95860

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 571d643545d81ba4a79b8670100f1a1dd70f5b80b59c88971c1bdae362cc9330
MD5 7ce9cf6ca0045d21bb1b48d1d2bff77a
BLAKE2b-256 9921ae294ed89c6ec2e80672b6b45c7ac115e4e808257f21227467769add8191

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 04618ad0dc3479f8e80305337dea35068f617833fa6c7f8dc1a8f4b42f6d5e1f
MD5 26f0e63e9f1281e6177fd0e4d9c31678
BLAKE2b-256 1dad5fe359b70424fc913f781b21279bacebf276a03b8fa13e4e0eadb4d190dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 497558554d717ad0947418e6961cefd184beeda90684b3fd2b6d66eab7c11b05
MD5 d2d954c7ab8ef46efb74016c5c03bef5
BLAKE2b-256 8e698671151e732f3383d68e619e0bef53e1746b8a6fb8ba8a6e1737c26b3a80

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: unopy-0.2.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 7.0 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.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b88e0681f0846b47379f44760cd67b667d6a8171114b25dde496b5c261c7dd78
MD5 031b865d9c995879f9a815d79405953d
BLAKE2b-256 e57e23184fe0955a4896c83613b11f3e6a34a4e3a37e676212ad8f36c053d2b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f31e9f68e74b3e2bb13159830fcb6f171697a34dd4755458b4ef0d4f49d4e01
MD5 2e3b27cad0c62feb6b2b226d51566fd8
BLAKE2b-256 1c60d86859fffcdedcfb88f2c80cbbd01f81a031909f9067a119f9f6b001674b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8994d32d85eb55be886afbec7e443fd1cf25e2f082bcc45c8bb397c932d5b1f5
MD5 13fa5a2a677d27b6be0a8d481193ff18
BLAKE2b-256 2678051ce1e68dfef9e967e469d4c6f142a7ba65c98aa52d8a3e98005668fe4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fd6aba690dac9c8d8624bb59f14b31da8472fe585ddb0c7d2eccf883b54dd974
MD5 dd8753fe496c38b8eaea1cde40f3c803
BLAKE2b-256 e62a774b457c616beff28a3469da548862470429f1e54762af82413835a40676

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1b5b58abc6bf57167ad6e9caff0e2cce06856fd498e3fddb9ceeb0bc9f2080e8
MD5 619f82a8291990e627b626799580d935
BLAKE2b-256 3f95746965a2dfbb46fcc6e9d4f6763530029fff1780fddcf4cd07f5fd5234a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 4a9b20bfa264a3af80a466cfbed74d64e4f4f9c9fd4522e7b24cefb055e489dd
MD5 546d69f9cc59b9606f90f5a6533a9db6
BLAKE2b-256 4b9f558680e63fcd24efec3431b61c5490e28eceaa8f8bc334d94b36d5c555e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp310-cp310-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 c51f727b4054bee5f8c6b2373679b77a51a08b5adf321c3696cc8ae9d61d847d
MD5 d693291a1112b245db9b659fe3ef8719
BLAKE2b-256 19ea79f56b573fed8bc839f027fbec94d82e2078a3de306ccbaaa2ccd33fee85

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: unopy-0.2.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 7.0 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.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b7ca8c4aae415e89d3ba4e241bd3db84ac74909e180ba94c238712113247c7dc
MD5 fc9c3b7a7b89d959762017c34a72d8d7
BLAKE2b-256 4716136ce9f89d09ff0f057921d46f65276ba3cfd368ef5a00fd110db6e86aa2

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2001d9408192796def01a087a7f80deec1e81318231c02f2f9bec430df977a08
MD5 1b5d90388875524aac753fc7521aac63
BLAKE2b-256 ba19b4c4a18f44acd67d083de29b99ed12fa4340f38ad6f66b6669b982aa1772

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 046c2fcfe1976d668a6cb72df5068de6a4b50b102f4042388cc1492384d75696
MD5 8ffa394a00a065d13e846aa8566b614c
BLAKE2b-256 d4ccc24215a40cdf80c60d08662056c032631a0d289dcba5a3d2f584d509fb76

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e9949d1b6cbb4594070b47f9c4f954819828574d334e5472fe18e61dd11d768b
MD5 6222b5a6711f249a9ccf962bd91feb96
BLAKE2b-256 e85971997b11f6f854c6cf8de25e61e270c2a3bf634dfc81c2ab2a2eb781c40a

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d5482b9a2a0880532f7dc6e14986f98b035e7a0e647accb4661e5b2250039046
MD5 bdebdcb2bdf228cc767878eff41ad253
BLAKE2b-256 81f0d171012c3baee89a403273531f302de855811f39934ba864f282836bb90c

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp39-cp39-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 cb8a7d2fef0be2cc0f07bcc36f34bd8e2f80d62a46a3182215bfb59683496e3c
MD5 1d0c8adeda9fd178ff7786a126f04744
BLAKE2b-256 16d7449053fe41c5f081160f312fd3542d2e1a49036f77a1dd20f7cb911ac153

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp39-cp39-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp39-cp39-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 7dff395ec88ee8d9dc126aabe230b0b281200a6775e50d243e585932ce76a9e2
MD5 ddea53211a60dfd34dad8482657d8d9f
BLAKE2b-256 06bccb0f842a9fbd2f6083076fa5d8573c4bdc26bd957b1f291c4f83d453ee84

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: unopy-0.2.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 7.0 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.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 86d48ab420b1e1792c824d35e6d8236723cdc447482c64652ecd29d8e355ced6
MD5 1bf5aa8153751dcaf854429c0026dc38
BLAKE2b-256 c6b67563282da5eb81fd2d5caf555656305a1776f5cf441d69e8c6980f8e14cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b0587a4914ac289e270881cc78606ce02dd54e62ed371a05eb801b5288c8929
MD5 c51b98de00f1634d8d9c5b6a3948e1ff
BLAKE2b-256 82021f4b8bd1c310d75d7025e5224f42f6b2d65d0b59a47f1d5f7bbe197744fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 72b2c2b44de414e1b4bb20ba7b2c53540308c9d9151d6a8da4b5ee27b71f04c5
MD5 100e58880d50770cf2232bea0181c668
BLAKE2b-256 918a9088c2e8da4322b6d0b9830827753eab7f68a2cf4aa16e0d4b2994a78454

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 844786a0eebdea330c38310941e6d0a6a665418f23427967fff2f6d1e78b14a6
MD5 364212c41b279a7acb998978ca5a61fe
BLAKE2b-256 e6dcb0cbdb910e6a58031bb9b09264161d47842a546998493c5494d47f44cad7

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e563ffbaa9869b2734b77eeda965ebbd2e39d9dff6af57748a8deba460599349
MD5 aebb990046f775f575d3071bbd2a311c
BLAKE2b-256 a70bb9838a01057e7e74fdfd69289d7964846a5bec57b304651ba926ac049119

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp38-cp38-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp38-cp38-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 e2673481ac90a049ebf52a6972b3c43e03ccadcaa6fd3bbfb6609ed76692b3fc
MD5 11f84bbbd991d97d9f32c9c6f85d4fe9
BLAKE2b-256 97052e1a439a7f777867a53ee3db8ab21efccf158381efe54c5006e919c41e49

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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.6-cp38-cp38-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for unopy-0.2.6-cp38-cp38-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 96f19a75cc294018854d7d425c77490682120fd5335b547822528d6e6db3a5b0
MD5 2516ce79a54fdf8985df51ed10623707
BLAKE2b-256 392194c229a4e01a19359925e71a92f1e2deb9f6676ef98ed88337ef0c8f6b36

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.2.6-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