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.5.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.5-cp314-cp314t-win_amd64.whl (7.0 MB view details)

Uploaded CPython 3.14tWindows x86-64

unopy-0.2.5-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.5-cp314-cp314t-musllinux_1_2_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

unopy-0.2.5-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.5-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.5-cp314-cp314t-macosx_15_0_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ x86-64

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

Uploaded CPython 3.14tmacOS 15.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

unopy-0.2.5-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.5-cp314-cp314-musllinux_1_2_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

unopy-0.2.5-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.5-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.5-cp314-cp314-macosx_15_0_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

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

Uploaded CPython 3.14macOS 15.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

unopy-0.2.5-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.5-cp313-cp313-musllinux_1_2_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

unopy-0.2.5-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.5-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.5-cp313-cp313-macosx_15_0_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

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

Uploaded CPython 3.13macOS 15.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

unopy-0.2.5-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.5-cp312-cp312-musllinux_1_2_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

unopy-0.2.5-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.5-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.5-cp312-cp312-macosx_15_0_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

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

Uploaded CPython 3.12macOS 15.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

unopy-0.2.5-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.5-cp311-cp311-musllinux_1_2_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

unopy-0.2.5-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.5-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.5-cp311-cp311-macosx_15_0_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

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

Uploaded CPython 3.11macOS 15.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

unopy-0.2.5-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.5-cp310-cp310-musllinux_1_2_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

unopy-0.2.5-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.5-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.5-cp310-cp310-macosx_15_0_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

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

Uploaded CPython 3.10macOS 15.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

unopy-0.2.5-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.5-cp39-cp39-musllinux_1_2_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

unopy-0.2.5-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.5-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.5-cp39-cp39-macosx_15_0_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.9macOS 15.0+ x86-64

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

Uploaded CPython 3.9macOS 15.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

unopy-0.2.5-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.5-cp38-cp38-musllinux_1_2_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

unopy-0.2.5-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.5-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.5-cp38-cp38-macosx_15_0_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.8macOS 15.0+ x86-64

unopy-0.2.5-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.5.tar.gz.

File metadata

  • Download URL: unopy-0.2.5.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.5.tar.gz
Algorithm Hash digest
SHA256 d3bcc1d876458050728b780275e30b9a470c378cd0e11d3c097c72b675c901ea
MD5 b7d5357e7010949a89ea94a2756651e7
BLAKE2b-256 5ae078f36b76a363d7a80deaae7dbe070557093313d988329556fa8d42eb69d8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: unopy-0.2.5-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.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 7566a79900ab5499e37a632b9831fd99c025592e1490a2652450f07b474dcfaa
MD5 b6f36e471895603aecc7c4b17cbfa621
BLAKE2b-256 4f2d5008472fffe208e1bcfaa0f281c29e7765f8edd5f6a36eeff61040fe5714

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dc111eb7557fec6c2ce51fe14019c03002593ad394c2c8b55f34bc75a8d428d3
MD5 dab2be2397a5bc021397b7ba5e28582d
BLAKE2b-256 2e829d5b926272524ed28948da87046fdfc76e3fae85ed827c3ccb2de4db5ae9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 91399f096c97edceaae4ff9a2517ce5dc858897fca1d1fe362b476e7404e8916
MD5 d29e39513d36eb4d2c9414e613073485
BLAKE2b-256 d4bbaf8fd87bebf15c22adbf1da97a52fe65110d249d273990385442ff2ed3df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 91f84f667573ce76521ea3d18bdfc164225dec7550ed9f5ed7e703ae5daafcc5
MD5 393db7943363719b0a932a4824c6ce3c
BLAKE2b-256 95cb07820e8a87ea2db3949215f91ad9af9333ed67f1353897415448c1186f26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d8332b94fea809b46e96071e27dc3d28d28fc4301f0a58207b93d0ddfa648888
MD5 ef6e357758fe05fd6318a50b9b18b6b0
BLAKE2b-256 9959b10307891df6a3e183aec9f23d2385be67160b7840f30fb842cea375fcb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 c5103ac0d005de42f450bb4fb3a9c0a3c3c770d3da00b9be8e33e8e2ae547c59
MD5 38d021e2014f69af32c7f802251bb5c2
BLAKE2b-256 0414c3854dc201afc7789080ab762c878bc9c247d9ef7f59ab0c624d7ff34c1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 f76d94a2b7d922d0d6f4652de287d4152291d6b87148f55337d11aa47b7d5e8a
MD5 487addec68044bb79231260c43edec59
BLAKE2b-256 678b7146d0df90d1e4adb2c4f62e0eada5e9025e390321e24b397266f2c29035

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: unopy-0.2.5-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.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 61a24435947b8622011a5eab9dbd62c695abfd73fe54444c4bc982bd1636a850
MD5 53457af1e1d82f08bd322c3446f17446
BLAKE2b-256 dca623ffeb6f7e95558478d198451ddb30a7b2c2766547593f1de4ae001a058f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d3cea3f5f8ce7401ca9129403965901abacedf25e871eeeb9a7f8986f388e4b
MD5 f5e088d7cb5fce75b381a21a0b4ecefa
BLAKE2b-256 bed3e32635d4319e4500f684abf4a321dc93fae80cde22a2b26f32fcc3127b2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed40138ac8be8f0bc18a2198b581d8e276314db0eba46520bcffd40df5d904b7
MD5 b92a7f996d4a70c4d35a4d2d025b0f52
BLAKE2b-256 d28180a42af93a7c14d26d6d547868d04e4b4a9a0ce8a66b48250d6f31c5bf26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f32eebf63c6b3b720805782f6be41173cb746f3bcf3f973666a79050e88b1b7c
MD5 5153e364f784d3f7b6c154dae430f9a9
BLAKE2b-256 b07ac0bc108e3391176ae15fc5f777c02911e23bce7d63eee83a6918393c9b70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 73a790b61ea5d1f87168db134f3eca375d3de5cb9b6427bbd81ab177a2a82369
MD5 7804a58a90ea4b4187f2d5e0ec6819fb
BLAKE2b-256 8beba63ff5a6c022d69dd07004f6feb6edd9ad5b50fbdc96b98d14ca29daab8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 ea5379ba6f43a659cc96d29edac80be7d9f6b2acf52550b35d740fce447c90f0
MD5 e6bfe16fccc5938e13114b5bca9a36fa
BLAKE2b-256 d4d8eccb54ec510e9e81de147b0f3807c77238145d048d2c82bac48458345dbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 d306b3633d550443431e96942da62fc6ceb126317ccebe47b82f455c17f4ce3b
MD5 ece73b24fba51ba043177f8d88266237
BLAKE2b-256 f44844234c288740da48c89ec1bf2e8ea4ba2af9f82545f4a7b9460419c91c84

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: unopy-0.2.5-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.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3a9dc96b2ace0f5afe63c1f2c507980db64c6661a45245303ebafdbbe9f299e2
MD5 110b6080e52eca2c3cdbe179454a81e4
BLAKE2b-256 9f9218b5cff5948803f682b0cd56a56ad01da93c0a35b78d555e744732eee9e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b65a6381efb75faf3252df9e89aefb8dfd9da30c6aa3e8acd9ed524e66d4eb6
MD5 a479d01afa37879266329b79b03bd04b
BLAKE2b-256 081cf41d5b7af10bb8068fdfaf655e2facaff2853fdd17cf98eed252e62b253b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 738cc6a0e973dac8d343963a089e5b4bcc06c460e8ae142bd43df7cbd0062aaf
MD5 34934185c7ce76ba99b58644b1e5a6a4
BLAKE2b-256 49661cccc2ed73903e61c2a091d4aff279e1ce53696e833f00d2ad67ae3c31cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7afca86b1d03ba469f2b29f8764206549d96db0e56c07ec2a95864d824d27545
MD5 8cd6bec80e416f0918b3383bdb065314
BLAKE2b-256 8ef7c10c47105c9a9b4955b598d12f235d1f46c70214e22831d3bc8a5b672dc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9d4fb7e420dd891f33267506c3d269bbb55dad6c6535edd2517dbacc6508806c
MD5 952f84d254db29efd1e58fab0b5095fe
BLAKE2b-256 cd3df38fe6435af1c20a9a67307b46ef3ee40d4d371d11485494bdd3fa688be0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 11adcdca629882616f04325a75ca6f8eda608ec7a3e981e30471109bf8ca9e4b
MD5 182386d158eb7856f325fd6f60437b91
BLAKE2b-256 d355d5c1387cf7bea4b611aa053294d6ab28e028c908b0ad4b4974b4148e8a84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 62cd9cd439e8032927940473ed610d8d8e3c9d2cf5b289fc8284b7725e785788
MD5 5fe1daacc754231f82fb4cca1740ca79
BLAKE2b-256 e8fac001035010feabd699474ec685b145be916a68460a29f1c33440c9e9dff2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: unopy-0.2.5-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.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7d3854d917cbe8e275f2c414c7ace74cbf4769ca0616c39975a0d24b5a418ba1
MD5 1ab5cde6b655c205b06d70110ad4af9d
BLAKE2b-256 f23879154e020412a46ce53a6d3a6287adf17882b6607d4ef9fb93665095f1f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c3dfb636463b220e3e5273b6e05cb5bc3f82b33ff979a44d16cc521fd62ff4a6
MD5 08deb1cedf9fbe23fa7c81a07632d34e
BLAKE2b-256 bf551d778a4d7c593c28540fc4ab89f717ef26071ef4671ba7721b854298568f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 61639bf6e5ddf8530edd97214eec4e669741daf1ecc4646c37d7437b4633af9a
MD5 7b4d82edf5fdbc87f1b7692ffcffd543
BLAKE2b-256 5600cb29a435b3ae33d21bf9eb1f282907f00f6e8a5e9af336edd2476ca5f167

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 687f3c886d42f6e854169fef8ee8e66124990bca6996598ffaff1332a30448f6
MD5 598ae86677e4ae672462ad2d1ba7e015
BLAKE2b-256 de225f5768e767de5e754abaa784655e6f0c8f258c8cc046c6f22589b80bc98a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0f2b4bf23833fca9721e53ccbc14f65de7d017879b24e8f2a7cc744910e8dbbf
MD5 1c74fb6dc7434d388fb3a4ec4e26623d
BLAKE2b-256 bdd1fd2eb38e407a7cf888cd54e6195d8c0f3fdd70af0ad32cc61dc66aeac1b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 283f2e68774e4eacf66b307836b586a462e1f80bd785eeacdbb126ff60414f03
MD5 24365cd08c34dc36612d23dba13b600f
BLAKE2b-256 a61a938decf445165cae31fc640da853778f57eddf880bae7aee004921e270d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 4eba121f4b672e1125417b0ec7e3705cac17fab21fee18e400b540367fc2546b
MD5 b893cbb502fce8013128b54de7beeae9
BLAKE2b-256 802e5865915ac3654c8fc59ae0828551b62361c35d5950e3c286548934989568

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: unopy-0.2.5-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.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e67bc8df39de7c6e76ff694dc534c718f17af530dab85307aa91fd5aac47d94d
MD5 a6bf5b15444bfa7fe76803656bbf8339
BLAKE2b-256 5db3ecd773e7bbf5b559f325b255e6794490bacbfddaf599b3e3186858940d51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e6df78c91783c1bedd03195efff197845e24d8a1823051c886b63518b33a750f
MD5 3fe87b1206cabbcec941ed86603eda62
BLAKE2b-256 06e52c11589dcca00fc8c18722acd22c58bbb097f4a70b370e77265591480552

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 631b75301a0493577445bf5cd11ba941bbe285d4d7cffeff683efc7d0c1e3844
MD5 2494d2d4b869909abd9a731b2b9e27cd
BLAKE2b-256 255f3544fa0c6842dc6be5d8d3a94ae038208662cb7801af6db36d04b1ffc714

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d7b4d9e014e9c522ce6370ae33d4168b5422f317d04aade2e46dcc296d2ca463
MD5 cfbaff0c12906ce6381427135afa5b5a
BLAKE2b-256 5b712f807bc2609b6cbe0b9ea696794c2fc670b98c8b83feff19d16b5d45abe2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1b3ad03f5a97fef5cf926f65c53b41350904973bbaa1f4d75f6feb739ea4f4bc
MD5 5c4672d82a840ef2c82bce55115407dc
BLAKE2b-256 2d9cc3c7f195d65e16e1c8b9576c389b9a60e0ea029ae25e3ecaea8c47f88774

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 aee8bb0863db139f29e34051caa91bbe8d24096015efcce836fe022139168e9a
MD5 d38ff1fe0942fd29985a7100615c6fdb
BLAKE2b-256 eee8899078e24b3736015d7ffe6b2c7ce23cb5e31aaaa59647ca1f513c09518a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 b84d856838d1ddc28a60b31608e6010f0b7d30ac9abeffe9ee657d06725c855b
MD5 d1e3e0be21a1f1418021be36ee62a503
BLAKE2b-256 012d58216549cd4d3a327a7a35e2d158a0ef6751234a017ef60e95330ef95968

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: unopy-0.2.5-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.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 202cce6073f9e92830959fdb7882578fce0d0441b116bf8159fbcd57cac90f12
MD5 842a0c000ac3734db62b7b107d90931d
BLAKE2b-256 b812efa6c9d3a6c9a00e4e490472af5c64478e28b64f11b5e9b29ce751a5ab5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f8595cf37b0a4fa831d494c00d8d716229ed01cb058c9d7cab31196ee351f876
MD5 3b9fa78c591b2b9e6c8a5a68e0a32649
BLAKE2b-256 3e0000d4466e34e6827a14e4f22fafee75e75a6728713f6f30e7e2bdb2cd4856

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 413d8fdb24cca2b5f55987c2b079621a083c35206204a1c5e49ecd12a798dca1
MD5 d03ff98b21d01874b97021704767f48c
BLAKE2b-256 ccfad523b90d1451db57a45db037261a2556d466dbac49e3ae83714e20203c60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 97ae82753bba640e856a2833334c7391a75cf46ad4c9490bc55858f35a25d1df
MD5 bd8808ba199b896132dd2a8a3fbe564d
BLAKE2b-256 b5ee113107dc8dbde2132fae59cbfab4d8820ae8fb74ef9c690904758fcddf74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 026959b40014ed241ce2ce54d64be87c150c3a50dd3aac6db2acad7383c805d8
MD5 19d32cf4444314b7fb371ed8dd1418eb
BLAKE2b-256 ecc243773b3f42821cbdb743bad87a4c573813d42d26fedc6de28ca99abaee13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 510ef447657e6710643df08ae733338641fac0f8497784ebd720694f2ddb4fc3
MD5 1e5b2eeb323b20c859c8921339edb747
BLAKE2b-256 240b0beb9036e996fd1898db6da5e240e78ae26446df3ee000e6ae286fe7fa02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 b0e00f5971ca1ba3029f1da44b220c433fbc3dcd4f32b80aa7e47600e1bae943
MD5 a5becc28170cec66df1a35e4f488e156
BLAKE2b-256 667cac45732c02c89b7ab4a261b995f10faaa3c7fbe772a8d4797f2c48fd1e21

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: unopy-0.2.5-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.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 552aea07c8ef49e83a10daf07682ea58753b7de31837e0f04a3300bb8c59216d
MD5 c4286e6bb3f37f1ab1de3ad2c769f6aa
BLAKE2b-256 702a367a35207ce59bf8558ac1e9d54b8af3c611d73adafb22a546ca07c43348

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a34144507d9c36c327de727535e7289fb5191c41cb9c391b1a7f0c849806436
MD5 bd2f201320a978f798548bd4cefd148e
BLAKE2b-256 b420c6dfcd18e1b6ffd839ce6cf9dcf8bb0626f8e962d969e5d900d3301991d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a0973b91a1ccfec0e39c5e378318b1c473affcdfe8ca8767c52e081da0208bbe
MD5 30dbfed51dc92183e6aa430642f3e79c
BLAKE2b-256 236f824035c3fd5457ce119cef7fc75999409f44ebc7fad1a14cb922af36108e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4a042bbd5907ca919917aa834a39dc690c2a2d5b4969e2b3222fee19b9ec0854
MD5 6d41796329efe9625ba4ff204a59b386
BLAKE2b-256 fb67e978f19fec3727f5abd3510dd5e3a4953150501b8d6b8feb3ecaa9658b1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 481d616694bcb7f1e08a77793153cb154cf8d762306da7343770fedacf98855c
MD5 39d367460378ddd8ff4cee47eed34edb
BLAKE2b-256 45bcbf9fb97604ec71cab153724f3bbf81171bdc89833098bae73fabd477e42c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 369197fc07388f37ca75dd4e8516ddce4774966f659da34a1bd8ad3c54ef42bb
MD5 d9130cf9382547f6dfb66697d4227200
BLAKE2b-256 a42b380e3822181e8a3906e87f48168753a08b72616aaa2fedc48cc3389183b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp39-cp39-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 e9d22c29a93a6200911a21226dd0efacb72859b71c40ace235f238c02c7dd783
MD5 6deb11f9fab92260cfada47174f8ba0c
BLAKE2b-256 287a6b917bb6b5671d1c923f9a19b9fd3934ee007e1322406df97645757116bf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: unopy-0.2.5-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.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 616f1634f5984d5f9613d2312a80d81c3761fe055a829f57caa89606ea1f65e6
MD5 0b2c8a29d443641268dc28970b2b94c0
BLAKE2b-256 5a4ca1e42c627cf56d1dbc2fce6857a0c03743d9a1a127a63d7a134d1b5ab7c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 72855b785505c607cc908f66013d1aa1d83e895452db423689afc770942eb3de
MD5 c9b1d37b749c1e532f81aa310834252c
BLAKE2b-256 39fdf14e940ddfd4058ff0a3ee22cb453595014ce17769cd7b866b142252f48d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eba34587379d196e228914f5c29817469fdbb99fdeff5ffc4b51c94748043fca
MD5 e59cb376dfec32be1bc33df763a21f5d
BLAKE2b-256 e4d99059d92a1fbcf424fc9ea71be9415f295a2b6955837a0602a3b777bf2fbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1e17bfaec602c15c1feee4c88431628f59bd1df6077c119813e6312070bfe707
MD5 99792b146409f5365eb4b91a2c89806c
BLAKE2b-256 3e12e4d65daee8ace5904daf71df2230e029c12130a21aa48ceaf4db2eda9992

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 89dc237ef5ebf649515f0fbe5438376cc3d1e2ce8e45ef1b32fb565302a25e2c
MD5 2097df015dc8d17a955003bc261da3bf
BLAKE2b-256 95187bb57985423af94b5a723de295609bb9397dd776c446d09ec7e480348711

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp38-cp38-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 0393c6ed972e9031aab8819ae62e7054d38ec6ec671e902d7030b783e6a56157
MD5 2350ea419c4bde68f5fbea6b7d0a59be
BLAKE2b-256 f298043e21d44d0e801b7ac51f585a5f66173cb21ba9de492d8e4f62922cd9f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unopy-0.2.5-cp38-cp38-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 4423399ac247e7ff06263b0bf01cf15e08d2149c3de757970b401a662e1d9283
MD5 7d74d8381739c60ce0c1c497c873a810
BLAKE2b-256 da2cb7749633a24137cfa53fb1207e597ca9768834be6034fb6b9660707320f0

See more details on using hashes here.

Provenance

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