Skip to main content

Python bindings for the OxiPhysics engine

Project description

oxiphysics-python

Status: Stable (v0.1.2)

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.2 | Updated: 2026-06-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.2.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.2-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.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

oxiphysics-0.1.2-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.2-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.2-cp314-cp314-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.14Windows x86-64

oxiphysics-0.1.2-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.2-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.2-cp314-cp314-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

oxiphysics-0.1.2-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.2-cp313-cp313-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.13Windows x86-64

oxiphysics-0.1.2-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.2-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.2-cp313-cp313-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

oxiphysics-0.1.2-cp312-cp312-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.12Windows x86-64

oxiphysics-0.1.2-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.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

oxiphysics-0.1.2-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.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

oxiphysics-0.1.2-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.2-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.2-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.2-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.2.tar.gz.

File metadata

  • Download URL: oxiphysics-0.1.2.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.2.tar.gz
Algorithm Hash digest
SHA256 dbe43081fff7ff4892c20ac07e5c91e9dcca88b820e2953e235876f68f8bf508
MD5 2a94bbd28254bbac2e22b641411ac641
BLAKE2b-256 53fbb8bf64191223ceafd3f63c18964622588417028ebd937ce1247308d1d017

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.2.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.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db06562c9abcab58ff56226008171ae4964c1a3b67644e0ce8d6dc9f21afc734
MD5 991ad3a090c691c7e2830505d16971c9
BLAKE2b-256 a8cd535cd029b6e38242254363415568ebd800d0d176ac24226a9b6444b1186a

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.2-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.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e0219bcb4d2c4f30fb981526829da0e6fbd3bd21241d1870009e71ec89284f3
MD5 c24f88b64bebca819df797ec3c98c0a8
BLAKE2b-256 60e021196064a931651e4e9ba2b50335448c3b6f669a3ed635915d1092a6ba22

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.2-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.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0ddf5f68c16a3bcd741c784bb9f09535a2618c9a616017bf7b5e0af639acd1b
MD5 e70753d1059e21f87a026628d3d2e5c1
BLAKE2b-256 d80cb3822951047b13cd1c133e6a62f9f83de7c06bd3aec06607a16f6144354c

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.2-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.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c02061640e908e925560384a6a605638f847cb524d71e122114a25c9b094565f
MD5 e8e5b6c86bc4ad572c7906c814af8f93
BLAKE2b-256 ef5847a983da0aebad61810b5fc94b133ca1770c6945a3799ed00811b522bd66

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.2-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.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: oxiphysics-0.1.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.4 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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4a6f28381cfc1708432fe03eff16897e70ed170998cea6d2c1ca6757ce471a78
MD5 10c86f8b42995535f04c5613ec3e2de6
BLAKE2b-256 745c6367fba5a55c804158c452505b2726c3f700c396e537d59b2afeaf038ea2

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.2-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.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15deb4d60e9a804c9fbabb9e8c19c90ab4efc737df4f93fc93d752936f94f099
MD5 b33232f096e1f93dcbbb1a1f583bf160
BLAKE2b-256 013e5566cfc1b87263f278eddb5bda0177813c21c4e595374d9588d4e662612a

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.2-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.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b08eec41911b5fd4f57462cd5cdf00007e84aebc6fcae14a80e56cd862f5e62a
MD5 d8a30adff9362f5279e470a31fe7e325
BLAKE2b-256 b7c9aeb1e83998bc089fd1b0fd6fec47f2a119bb7cdce496f0b532e020e0011f

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.2-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.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e8965b6e20a2f97185fff7dc6f6497151227129c7fd551d57c7f268d1597ab5
MD5 f35b65976e3b9ac543e59d9e840fea90
BLAKE2b-256 e94ad4d33da421a64951d8dd9bad07f0d9e6994a62c65ec32bd39b7042e7bec2

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.2-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.2-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 31c6503fbaea46c87760a001df07edf4cb5a0b7f32168b5b04891eafafdd1707
MD5 26f90cf810cb3dba4ab73df275c682bf
BLAKE2b-256 dc3d68efca5374d022cb41b9dada5a4d7e3ca7105a19adcfd2ed341218761a0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.2-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.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1d13b18551bb02ed667042b86d16fba2e8a2e5e35a267eb153dc7749b6be49e4
MD5 be4e88a66b52ceed35d4e8a324d2fe52
BLAKE2b-256 8c82aa291aaed861d42a952a5fac11a73a147756df52f13c475272532c7efa13

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.2-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.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: oxiphysics-0.1.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.4 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 30bbd7dee337af8c0f6eaecfcb8d4bbc090cc1a1a134986eec2148d204207834
MD5 7c0d6752fee0d6ef152ee053c4ae93b8
BLAKE2b-256 23100117d7c3bd9db6bc6de59ce955347e54b2d36408929a327d1d745e9c78a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.2-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.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f16e69b17b17fbdc0522595802e8db57f9c51b40936266c6d9a4aaf8ccd4d687
MD5 95fe5966599f7caacfed80fdbc748e5b
BLAKE2b-256 44499d483d420e3f1f4309e80efa8b9681fb2725a8f24aa79f9f1e10928964fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.2-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.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 72adfe9b161239fb5dc21c067122d018c7d8b759ab974636ede6220d1cd14520
MD5 54007af448bb53a2f3762b73b885698e
BLAKE2b-256 717e56525746fcb7354b96b3d7e8c76867e4ae4aad3430bb452cbbe863a920b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.2-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.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c1e72a55ebd8a44bbfc2cf899a6ba7f67de5241152e2a77d422bb36005491f9
MD5 503048fac108cb6d873277d91bf88d04
BLAKE2b-256 25fde8fd39e5b708930ece7c49c59c264ade209372fa6e9f93345ea6f2349c1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.2-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.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b223c9e4a9607f7427fc13a56767b98452340da74e4aef8c715f41ebb666e500
MD5 18754304392627250969209fd75f0afb
BLAKE2b-256 dd5dbb10afdf2b039f55fa1f5e5017f24e1609a0466d94d85df76aa351c0619d

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.2-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.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: oxiphysics-0.1.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.4 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ba5e1879ae3fd464ec8628b9328992125fc2ea3347eb4db933203e85fe839cab
MD5 c815525cccdcaf9ab888604dc4ccae4e
BLAKE2b-256 f26fe20bff81e905d818dcd0135b020b0bed200e88e2a1215af87f4daca256bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.2-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.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3b5eed4ae8a50a27c2c4a9c01d429d0b18e5fbafbc161b46a1fb31190c96c70a
MD5 47b2805a87a602b65e25e2421332900c
BLAKE2b-256 610735277b683ad880aac6881ca61effe1655976a9cd14bf9651d51487dea065

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.2-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.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e851fc4d3cde7b83c381b414132f90ed318d3d0140c7cc059086b1e84d6d58b
MD5 0ea19cb1356ea9f03d6df63ce5d964de
BLAKE2b-256 ede74876f5f83336bdb848f83827673812dfe40caeae43ff383bdcb0989ee6ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.2-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.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d99986dcf04682707574049296ca2422128b9467eeebc4b3c819b0b3da33e8ad
MD5 63940b6015a740a6ebff5ebbfddfa260
BLAKE2b-256 4215291d1124e4e8c21c5df5157aa239b247bf3e1a0dddfc60e097f8e91ecb75

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.2-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.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 657cf40d6face1c12cb02622cc1dcb170504bd922527fedf80b10cfe18db4816
MD5 df96095b92e2765c9afe9471640d5616
BLAKE2b-256 b07b5b1c3096bc5cdd3eeba1e287c5f987a9fbe73a8a220541fa1e208abe7448

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.2-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.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: oxiphysics-0.1.2-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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 faf0d3bf31173f72feb16feafe89a0075d69ffc2a50a46e8f39a2515547adb3c
MD5 8b4cce2e872a7098686c0ec4641ecbdd
BLAKE2b-256 62d4adda05ef1f89634e9f635ccd7d5ae01d0281e9dfbbf939909fd9acd747ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.2-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.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7fa2868507d96f0e4c18fac51b30bf9032d073e11323e33565a446152fdbb387
MD5 cebbe7e94c7bea829d744fff9cc24421
BLAKE2b-256 0e684ebaab889beca64920de3519ec323283a0a2970a247ad7fd7b8714951e5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.2-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.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8aa94f58694eeee34a9ecdbc8f8ccd9bd6c569ce4b98a77d9224c5d9d076a5b1
MD5 65db7a0e2275919306ab1ae00d97af2a
BLAKE2b-256 f7bfac60364a62da3c737234a7699096b2d43296e2624a52ef94c56c6f1ce433

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.2-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.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d42af6537b6c7c6bb2bf2f59532e2085cc79fb492e828353bf5434b048de28b4
MD5 d997770484327f7d7d37df95b8981eba
BLAKE2b-256 9a117f7b0f747ecf51008252326f4136fb6002847d3df4724a2870de16deb6dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.2-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.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f51ceb7f1948ccba67282883fed80ff5989af70f373600693f9d6d30e2723c9f
MD5 3ca169b6261ca62615c5b3ff920bcff7
BLAKE2b-256 503514782a9d89218faadb32b6bb95601548b0ba54d2611f83ed2cc38fb96ab0

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.2-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.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: oxiphysics-0.1.2-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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 57ff9714e5ca5702113f3d300d56eb1e9a78bb6044e94b378e795faac64afa9c
MD5 5291c8aadca95961fa1ef94e109bd55e
BLAKE2b-256 8f8dcbcfe1dd9bce2e29937da264d0a477ab1d5fda98a3fee13243bbdfa96acb

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.2-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.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7cbe621e64b4cd2aa8ff2e4f0b622720df804d983587d5cdb7dcc8f7b229794
MD5 fe90a9d6ce202c8144a758f721dc35bd
BLAKE2b-256 bd7f87c117a774622b784e23b18bbceac97da731c8e5e23ea7457fd388406775

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.2-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.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b1b76c71217af273e7436774e9f7d385ac9587bf7c1d5ed13eee1a36a7d56388
MD5 422277f3afc1a651d516bf88a37cacf6
BLAKE2b-256 b5ce64fe080560ec079eb8022f413babeec695a67f0734d42075dd7394c598bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.2-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.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a014cc986919b5a1099b10d7bb468dff4fce2baed669e3d9fbbbabba3d44a417
MD5 f0f9cf90793e35209f06344fa37a2996
BLAKE2b-256 75b1d024ea414a4ee3d75d72350373adf24bfb904e71e553d4e6f121e0080a9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.2-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.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for oxiphysics-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 24f5052d8313504c5e80582c8edf9e41a0ecd006d1db9062852651750602283d
MD5 4c1eeb12ce569de9aba3dc0f7eafa774
BLAKE2b-256 847ac9892d2f6b80be99f651c61e99006f45597a47be3bb9696a1d28fb7b214f

See more details on using hashes here.

Provenance

The following attestation bundles were made for oxiphysics-0.1.2-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