Skip to main content

Python bindings for the OxiPhysics engine

Project description

oxiphysics-python

Status: Stable (v0.1.1)

Full PyO3 0.28 bindings: 210 #[pyclass] types across 14 domain modules (analytics, constraints, fem, geometry, io, lbm, materials, md, rigid, sph, vehicle, viz, world, noise). Build artifact is a cdylib loadable as a Python module via maturin. See examples below for the live FFI API.

Python API layer for the OxiPhysics engine.
Version: 0.1.1 | Updated: 2026-05-06


Architecture

This crate is a cdylib Python extension module built with PyO3 0.28 and packaged via maturin. All physics types are exposed as #[pyclass] structs with #[pymethods] impl blocks; module registration is performed by per-domain register_*_module helpers from lib.rs::oxiphysics.


Quick start (Python)

import oxiphysics

# Create a world with Earth gravity.
world = oxiphysics.PhysicsWorld(gy=-9.81)

# Add a 1 kg sphere falling from y=10.
cfg = oxiphysics.RigidBodyConfig.dynamic(mass=1.0, y=10.0)
cfg.add_sphere(radius=0.5)
ball = world.add_rigid_body(cfg)

# Step at 60 Hz for one second.
for _ in range(60):
    world.step(1.0 / 60.0)

x, y, z = world.get_position(ball)
print(f"Ball fell to y={y:.3f}")

Domain sub-modules are registered as Python sub-packages, e.g. oxiphysics.rigid.PyRigidBody, oxiphysics.sph.PySphSimulation, oxiphysics.vehicle.PyVehicle. See lib.rs for the full registration map.


Public API Surface

210 #[pyclass] · 195 #[pymethods] blocks · 39 #[pyfunction] · ~25k Rust SLoC · 0 stubs

Domain API modules

Module Description
analytics_api Analytics and telemetry query API
constraints_api Constraint / joint configuration types
error PythonError and Result type aliases
fem_api FEM mesh and solver configuration
geometry_api Geometry primitives and mesh helpers
io_api Scene import/export bridge
lbm_api Lattice-Boltzmann method configuration
materials_api Material model parameter types
md_api Molecular dynamics configuration
rigid_api Rigid body and joint parameters
serialization Serde bridge utilities and JSON helpers
sph_api Smoothed Particle Hydrodynamics configuration
types Shared Python-facing primitive types
vehicle_api Vehicle dynamics configuration
viz_api Visualization output descriptors
world_api Top-level world/scene configuration

Key exported types

PyPhysicsWorld, PyFemSolver, PyFemMesh, PyLbmConfig, PyLbmSimulation, PyMdConfig, PyMdSimulation, PySphConfig, PySphSimulation


Roadmap

Milestone Target
Serde/JSON bridge complete ✅ 0.1.0
pyo3 #[pymodule] wiring ✅ 0.1.1
Pip-installable wheel (maturin) 🔲 0.2.0
Async / numpy integration 🔲 0.3.0

Development

Build & test locally

# Install maturin (once)
pip install maturin

# Build the extension in-place (fast iteration)
cd crates/oxiphysics-python && make dev

# Run the test harness
make test

# Build a release wheel
make build
# Install: pip install dist/oxiphysics-*.whl

# Publish to PyPI (human-gated, after tagging)
# twine upload dist/*

License

Apache-2.0 — Copyright 2026 COOLJAPAN OU (Team Kitasan)

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

oxiphysics-0.1.1.tar.gz (13.7 MB view details)

Uploaded Source

Built Distributions

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

oxiphysics-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

oxiphysics-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

oxiphysics-0.1.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

oxiphysics-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

oxiphysics-0.1.1-cp314-cp314-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.14Windows x86-64

oxiphysics-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

oxiphysics-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

oxiphysics-0.1.1-cp314-cp314-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

oxiphysics-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

oxiphysics-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

oxiphysics-0.1.1-cp313-cp313-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.13Windows x86-64

oxiphysics-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

oxiphysics-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

oxiphysics-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

oxiphysics-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

oxiphysics-0.1.1-cp312-cp312-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.12Windows x86-64

oxiphysics-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

oxiphysics-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

oxiphysics-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

oxiphysics-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

oxiphysics-0.1.1-cp311-cp311-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86-64

oxiphysics-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

oxiphysics-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

oxiphysics-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

oxiphysics-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

oxiphysics-0.1.1-cp310-cp310-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86-64

oxiphysics-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

oxiphysics-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

oxiphysics-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

oxiphysics-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

File details

Details for the file oxiphysics-0.1.1.tar.gz.

File metadata

  • Download URL: oxiphysics-0.1.1.tar.gz
  • Upload date:
  • Size: 13.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for oxiphysics-0.1.1.tar.gz
Algorithm Hash digest
SHA256 6eff4f5eaa12a58105f8a46c2757114fbcfd82299d85579326735458a7cfcceb
MD5 bb813d271aa6d72ac95fb78032f1457d
BLAKE2b-256 e8721aa3b3ff25fcbe264bce36a71fed84fea79d88f13a5b79815075be6bcd9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.1.tar.gz:

Publisher: pypi-publish.yml on cool-japan/oxiphysics

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

File details

Details for the file oxiphysics-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6417771c038fe8bc7ed18ce351420171b478142c153cc79f59e7ba5ab9a04be3
MD5 a589b528a84f5542f1bddffe26f0d181
BLAKE2b-256 23d25a893b3fefcaeb552c89774a39fdf036ac3f935f93d5b8d84cdc970960a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi-publish.yml on cool-japan/oxiphysics

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

File details

Details for the file oxiphysics-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8ed4a137dbfaa1ddfda860d6d95c9ce63bb2c56906e32de961063c0d93dcd41
MD5 5238191868054e9f73969bf85846a24c
BLAKE2b-256 8c718fc238cfb2d05676310ead65dcf6e078ad02e80227ae2d7309592bfc6e65

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi-publish.yml on cool-japan/oxiphysics

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

File details

Details for the file oxiphysics-0.1.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 23bfac9dfb0196275a738e7c9a56bd483033c0c2800ec2bf68e325c336ed9460
MD5 329e0c8f35316ba566a2a3a57f4551e6
BLAKE2b-256 f79cad56de7854f6cf7ccf031a214bd1cf6555380b5b673b74f373749fb47811

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi-publish.yml on cool-japan/oxiphysics

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

File details

Details for the file oxiphysics-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d1de08c745af8f26c910cc6b2736130f9351614c93a29002dedb007d13755be
MD5 bc732998ef93318f14813d2b6c969fa5
BLAKE2b-256 b0250063e897f421505ab75f88f83b0a038b75516515662c331afec723233da9

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi-publish.yml on cool-japan/oxiphysics

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

File details

Details for the file oxiphysics-0.1.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: oxiphysics-0.1.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for oxiphysics-0.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b7bc6d467cfb939a3ff74ddaf50c84d56e949ca1bd819476b78e70d3e7dbf438
MD5 1c722ac687d95556b1e4de892f85612f
BLAKE2b-256 14dbf9d2c23b5cd9aad1e5337cc0e2cc53c06a86e9ea7da56b59f62b70c87dc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.1-cp314-cp314-win_amd64.whl:

Publisher: pypi-publish.yml on cool-japan/oxiphysics

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

File details

Details for the file oxiphysics-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1eb857109790d75f69b8b3589b7a9931c15163471498ff7d2344539935dfc13
MD5 85f96a1e99a1343959b3732dc72c8090
BLAKE2b-256 4a5c145ec0404fdfcad383eedf27250e01813f1998cc1029f4a666b37ddd0543

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi-publish.yml on cool-japan/oxiphysics

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

File details

Details for the file oxiphysics-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2f8579e7db5d95228df8e6a42d355dc9fd7b0d7b9687310ccdfccee5146359c
MD5 fc02aeb362109e1eb16284e51cd0cbbc
BLAKE2b-256 111e183f536fc86c258be25dcf3996fb13bcaa6b1bc444fc8c3a17b61b64a452

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi-publish.yml on cool-japan/oxiphysics

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

File details

Details for the file oxiphysics-0.1.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e105964034257022f0e2b85336bf96b7efbe1dd88e710d344827ca4f4f3450e
MD5 d92c1f7116525a1adf0a920a055830c5
BLAKE2b-256 a0738923c3533a13ba9e99be1bb77abc328f33b732712ddad1b56361b20fbc89

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yml on cool-japan/oxiphysics

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

File details

Details for the file oxiphysics-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7b1baf0188786dd0374b5e05846f2315fb8ee696b74ab6ef659597b6178da1be
MD5 777912fa413abeda14d9ce347fbb0a1c
BLAKE2b-256 6771b7ac1f5ed6d079c756aeb5c5f60719da99e74e8efa8b4fc61b73cfabed72

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: pypi-publish.yml on cool-japan/oxiphysics

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

File details

Details for the file oxiphysics-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2bd02684aa1f7e9e536021062be0c56c4519cfd04659dd7d1436ba63ce5428aa
MD5 bbc41b46a270223fcbca2b3d03e2a010
BLAKE2b-256 e67397daecc3ca917750bf539cd4bcf3883655555d3322df903f0e1e093164ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi-publish.yml on cool-japan/oxiphysics

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

File details

Details for the file oxiphysics-0.1.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: oxiphysics-0.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for oxiphysics-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c6f9f5c3c6cbac3954bc85dc9a9d1fe80843b6e04c74523aefd9c17db9616a67
MD5 5b277f359aac9fd3b6bf6566768e4336
BLAKE2b-256 fa57f25a471a257f007a160f9d3c7597031469691df68d3196a3820ce471b1f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.1-cp313-cp313-win_amd64.whl:

Publisher: pypi-publish.yml on cool-japan/oxiphysics

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

File details

Details for the file oxiphysics-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 297bad378fdb0e6644631f3aab82a7de9bfde7234a003f38e41be02417ad0bfb
MD5 dd573976e6e47afbbb2ebf24e6897a8a
BLAKE2b-256 b4886d30633e3a1d6e8d126da2323efcd44b9d005d873caca2f1abd47b734429

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi-publish.yml on cool-japan/oxiphysics

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

File details

Details for the file oxiphysics-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 577b8cd0ef002b0bd33cfd728b1c02db6c8d487a7abd066818e7549a0e92f5e2
MD5 110e55a1bf3cc1c993c8e09c0eb44077
BLAKE2b-256 bc1529c5f201ffed606056d2d231bfb383f8a81284a6c870f43e438268fc0b95

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi-publish.yml on cool-japan/oxiphysics

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

File details

Details for the file oxiphysics-0.1.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f7c8d29a75b3b0c95cbd8e7fed843cd22c21aafef2a02fbceaf69f82ec32f91
MD5 b5ec0302ff2d269ae52b3ae31446c04c
BLAKE2b-256 34aee82f050fc8f50d1bce7415cd1c10a7619a9394a6442ca82ec1f5411fa8d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yml on cool-japan/oxiphysics

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

File details

Details for the file oxiphysics-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8511da11a30933243758584aea960e7a65601c1fc8f924f16eef375e751edb4f
MD5 40b6c7b070b15f11a704bfec3c0cb55b
BLAKE2b-256 5fde5cafb0de659424d065b68997ac57accddc547e8baeb2f6f0d6fc149f6a0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: pypi-publish.yml on cool-japan/oxiphysics

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

File details

Details for the file oxiphysics-0.1.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: oxiphysics-0.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for oxiphysics-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5c8f0bc280da2f538aad9244b52271871e846429f967282ec28424877488a204
MD5 0223b15ad6bf1ca8cff9761402b97f2f
BLAKE2b-256 8c781e976e8e721bd673fa582f75d976a0ac0a0b90385720620c4d2b0fd68c54

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.1-cp312-cp312-win_amd64.whl:

Publisher: pypi-publish.yml on cool-japan/oxiphysics

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

File details

Details for the file oxiphysics-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0ce289330dcf00b41af34036b92202729757ef8799462a08c33880497aafbae
MD5 3f0b7def035d592c0ad2023d91215f07
BLAKE2b-256 155ce12f7ac797e0b69397db4b299d2467a70891419fec6b1e3bd1dce522dba7

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi-publish.yml on cool-japan/oxiphysics

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

File details

Details for the file oxiphysics-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e00fd77de70a3be3f29f5f5f8e26aa81212c30dc8ab67b12e4455ce21879a13
MD5 50751b56cee0b249a0deea259d9bda67
BLAKE2b-256 9ddd414f012ff677667eec2c15be333ba14640f7298338f57a04adafc5c2b131

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi-publish.yml on cool-japan/oxiphysics

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

File details

Details for the file oxiphysics-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b789a620c95925bf38b5ec874da793d06e5da0e47b90f29c94b36300c68d7da6
MD5 92d7d7ad4ee8601230f3e39f95f8b8b6
BLAKE2b-256 7c9298c444fabbc34dede0658aac060e2454fd3f9bd2854f27465e95b91f0ba2

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yml on cool-japan/oxiphysics

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

File details

Details for the file oxiphysics-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3cc3c8b4a75a5a65e489028d21910450e17cc20a34c0e31911a9a0d2eab95f02
MD5 5f6313417ad639a77b94b500ad227f5a
BLAKE2b-256 28b28b0a9bdde2011cedd6d70adb4c096283f6b47a63ffc10ae9a7ba65e3e842

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: pypi-publish.yml on cool-japan/oxiphysics

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

File details

Details for the file oxiphysics-0.1.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: oxiphysics-0.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for oxiphysics-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7b4b08e869fad8d1bbfaeb60e03c35769284ec0e3811d9bfb1234c33a42a66e3
MD5 58430e7d92cc611d6e7e652e05fd4fd8
BLAKE2b-256 ab3703fd7e126e7e5849e2c543fb695a9272ed361ee731366463b8b24dfd07fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.1-cp311-cp311-win_amd64.whl:

Publisher: pypi-publish.yml on cool-japan/oxiphysics

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

File details

Details for the file oxiphysics-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5823a4a230132a31758427bf62ddc3202fb800af6fb0bef43809622a8a883f4f
MD5 9863bedb73164c96698d676fe92ae759
BLAKE2b-256 7ac4ce0301d50e2c3dc7147242fbf9989c6dd9f07258118531076da0b5d47de3

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi-publish.yml on cool-japan/oxiphysics

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

File details

Details for the file oxiphysics-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1fa126a9411ad58d16c3f348d49ced83f7ce6e94a606410c5356f0ac62530fdf
MD5 c4b5e188251e49dcfc1e87e0d074f133
BLAKE2b-256 cd8d4a0d9e10690292b4bf984d0a5249a93da5fc1cc1a900d2351f6518d83b11

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi-publish.yml on cool-japan/oxiphysics

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

File details

Details for the file oxiphysics-0.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9888bbfccc9af58171f5b65da8c79a8f515a100e94b47cad2c0fa1e29b220ca
MD5 934802a7f93825df0ea0670e5021eab6
BLAKE2b-256 d0d2aeefc2def36e0631acdd82b2d6f9398fd1e86307d7c126e9c351399d0f27

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yml on cool-japan/oxiphysics

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

File details

Details for the file oxiphysics-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 85c1e37368922af020af76b48a3098fc3003a16bbbae22b802e2ae1f39b9314d
MD5 72020fc22dc27735c00995749deffb6a
BLAKE2b-256 3ede86fdef4d197a07681f077d9f035311506359ac025208de337ce30a6f43d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: pypi-publish.yml on cool-japan/oxiphysics

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

File details

Details for the file oxiphysics-0.1.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: oxiphysics-0.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for oxiphysics-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8f26bac607ab5189180315471df5f33efa114ad89b083c945648275e5a8739c0
MD5 32e1a0424e58ac875798d513c62609b1
BLAKE2b-256 d504e02f3556bc1ce74606ddf0fddd3768e77178bd139a75f9a574850f437ea9

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.1-cp310-cp310-win_amd64.whl:

Publisher: pypi-publish.yml on cool-japan/oxiphysics

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

File details

Details for the file oxiphysics-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e684f9c230eaecf3bb8445e1b3c2813a1a26647372bc8435c6d4472ab3f3ea14
MD5 8cc258a8fb5d7ee1c67bdace92a8a93d
BLAKE2b-256 669e214372d925c296a7a2199d7b6b41629270d2f19bc11227cf9f28f43573e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi-publish.yml on cool-japan/oxiphysics

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

File details

Details for the file oxiphysics-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 81064c73702eb7bcbd1fdd63122c65ab66e486f9f00d122239110f4793602a35
MD5 9bb4fbdf20a87e08d56f2db7a3247436
BLAKE2b-256 2b010f881eb7dd4bf38f5cc59239d58daddea2d741c7fa21d7323776302bd32b

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi-publish.yml on cool-japan/oxiphysics

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

File details

Details for the file oxiphysics-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4eebd6865595aeda5e033dbf8ab96c52099fa50e5dc2db8164a9d525c5017c2c
MD5 0da4b4497d06412acecf142b3a07ca73
BLAKE2b-256 f010a71d5e1fd9b1334356d35203796cb2ac4a32020a9d7dc83e98a49be2f200

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: pypi-publish.yml on cool-japan/oxiphysics

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

File details

Details for the file oxiphysics-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 77b7262e4c7f1fa5305b693fc3dc8260b22cc24190e2e55834b42b668f01f77b
MD5 801651fa4d8d03b8a407b6df7c5e841a
BLAKE2b-256 5dd9a2dd85d55b0e81c3d78c5e47f9a30601d7f6bcf101c12a0bf978cfa83f94

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi-publish.yml on cool-japan/oxiphysics

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