Skip to main content

An astrodynamics library for orbital mechanics, mission analysis, and telecommunications

Project description

Lox – Oxidized Astrodynamics

Lox is an MPLv2-licensed Rust astrodynamics library with first-class Python bindings for orbital mechanics, mission analysis, and telecommunications.

lox-space is the main entry point for both the Rust and Python APIs, re-exporting all functionality from the Lox ecosystem through a unified interface.

Python Quick Start

import lox_space as lox

# Parse a UTC epoch and convert to the TDB time scale
epoch = lox.UTC.from_iso("2025-01-01T12:00:00").to_scale("TDB")

# Load Earth orientation parameters
provider = lox.EOPProvider("finals2000A.all.csv")

# Design a sun-synchronous orbit at 800 km altitude with a 10:30 LTAN
sso = lox.Keplerian.sso(
    epoch, altitude=800 * lox.km, ltan=(10, 30), provider=provider
)

# Convert to Cartesian state and propagate with J2 perturbations
state = sso.to_cartesian()
j2 = lox.J2(state)
trajectory = j2.propagate(epoch, end=epoch + 100 * lox.minutes)

Rust Quick Start

use lox_space::prelude::*;

let epoch = Utc::from_iso("2025-01-01T12:00:00").unwrap().to_time().to_scale(Tdb);
let provider = EopParser::new().from_path("finals2000A.all.csv").parse().unwrap();

let sso = SsoBuilder::default()
    .with_provider(&provider)
    .with_time(epoch)
    .with_altitude(800.0.km())
    .with_ltan(10, 30)
    .build()
    .unwrap();

// Convert to Cartesian state and propagate with J2 perturbations
let state = sso.to_cartesian();
let j2 = J2Propagator::new(state).unwrap();
let end = epoch + TimeDelta::from_minutes(100);
let trajectory = j2.propagate(Interval::new(epoch, end)).unwrap();

Installation

Python

uv add lox-space
# or
pip install lox-space

Rust

cargo add lox-space

Features

  • Orbital Mechanics — Keplerian elements, state vectors, SSO design, Vallado/J2/SGP4 propagation, TLE parsing
  • Time Systems — TAI, TT, TDB, TCB, TCG, UTC, UT1; femtosecond precision, leap-second aware
  • Reference Frames — ICRF, ITRF, TEME; CIO and equinox-based transformation chains
  • Ground Stations — Visibility windows, elevation masks, pass prediction
  • Constellation Design — Walker Delta/Star, Street-of-Coverage, Flower
  • RF Link Budgets — Antenna patterns, modulation schemes, path loss
  • Python Bindings — Full API with type stubs and NumPy interop

Documentation

Status

Lox is pre-1.0. The API may change between releases.

For more information, see the main repository.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lox_space-0.1.0a47.tar.gz (808.3 kB view details)

Uploaded Source

Built Distributions

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

lox_space-0.1.0a47-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

lox_space-0.1.0a47-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

lox_space-0.1.0a47-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

lox_space-0.1.0a47-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

lox_space-0.1.0a47-cp315-cp315-manylinux_2_12_i686.manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.12+ i686

lox_space-0.1.0a47-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

lox_space-0.1.0a47-cp314-cp314-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.14Windows x86-64

lox_space-0.1.0a47-cp314-cp314-win32.whl (1.5 MB view details)

Uploaded CPython 3.14Windows x86

lox_space-0.1.0a47-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

lox_space-0.1.0a47-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

lox_space-0.1.0a47-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.12+ i686

lox_space-0.1.0a47-cp314-cp314-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

lox_space-0.1.0a47-cp314-cp314-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

lox_space-0.1.0a47-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

lox_space-0.1.0a47-cp313-cp313-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86-64

lox_space-0.1.0a47-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

lox_space-0.1.0a47-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

lox_space-0.1.0a47-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

lox_space-0.1.0a47-cp313-cp313-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

lox_space-0.1.0a47-cp313-cp313-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

lox_space-0.1.0a47-cp312-cp312-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86-64

lox_space-0.1.0a47-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

lox_space-0.1.0a47-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

lox_space-0.1.0a47-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

lox_space-0.1.0a47-cp312-cp312-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lox_space-0.1.0a47-cp312-cp312-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

lox_space-0.1.0a47-cp311-cp311-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86-64

lox_space-0.1.0a47-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

lox_space-0.1.0a47-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

lox_space-0.1.0a47-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

lox_space-0.1.0a47-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

lox_space-0.1.0a47-cp311-cp311-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

Details for the file lox_space-0.1.0a47.tar.gz.

File metadata

  • Download URL: lox_space-0.1.0a47.tar.gz
  • Upload date:
  • Size: 808.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for lox_space-0.1.0a47.tar.gz
Algorithm Hash digest
SHA256 3e3679b68b72589c52b78663f4fe20cf1b8694595a887798509f0203459465da
MD5 756a0982881fff5dd1c223b2916bc76c
BLAKE2b-256 ceee7366bd8d62ebe4e45e55f60006e3905053ce7569d64c434cf3b7dd24d90c

See more details on using hashes here.

File details

Details for the file lox_space-0.1.0a47-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lox_space-0.1.0a47-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ef61f0c6c389f26482944bdd5223c33303e69bea7289cfbf154808c27c01d1d
MD5 2b4ce284c5580418e29581c8eb7c94fe
BLAKE2b-256 fd4a95c99d31809f8ac62070ce298d03e791df7807524573df16f150cc5052d8

See more details on using hashes here.

File details

Details for the file lox_space-0.1.0a47-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lox_space-0.1.0a47-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 41c698f9a454d107be634652f7404d5f13db5974b928ce841592e0e50bd1621d
MD5 2f5ed0d1820ea3695aef3f16fb5b9dfa
BLAKE2b-256 de3def20b5a89b9062cb05bf06e19b7dd8573b58ca1d28b5897238ae20bf7f9f

See more details on using hashes here.

File details

Details for the file lox_space-0.1.0a47-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for lox_space-0.1.0a47-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 080bcd829a14408274d3ae949c5643ccd06cb52a19fdba03ea5566d5df60cdf2
MD5 c06e9d8a6effdf7e85b7059f35baa0ad
BLAKE2b-256 b51ddbfef21e0beffe5ae266c4d1c8ef7b69b650817da064c47a66d87bf8c3a7

See more details on using hashes here.

File details

Details for the file lox_space-0.1.0a47-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lox_space-0.1.0a47-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 56569d6596a34e14452241b57e074d779cff6d58c121bcd52534a209c398e43f
MD5 96cf117869aeb40b98faea1bef18ee61
BLAKE2b-256 444eb3f55e3a07097cb565a72f62f912353de0615bb60318b54de0930e59954d

See more details on using hashes here.

File details

Details for the file lox_space-0.1.0a47-cp315-cp315-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for lox_space-0.1.0a47-cp315-cp315-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 326a1af543ee8f26e001b0e8a66e6bcb84af2c13aaa49d00a4b6d7ba3d1047cb
MD5 5f125827d712e09e796457f031e8eda7
BLAKE2b-256 24e547ff71892bc5efd7dcb09b927ad9e3a03c35b9c9d042b3a8dd3719d229f1

See more details on using hashes here.

File details

Details for the file lox_space-0.1.0a47-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lox_space-0.1.0a47-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e39cbe1cb4ca26ea2e4a56a4fabe392ef9b44643b7faa4ef3e137a1a66658fc
MD5 1d3da637e318cc15b97b44d8e150ebc0
BLAKE2b-256 ecbd00f12b610ee28cb6c2786ad64de815169e71e12023ec1ab6cee380cb4690

See more details on using hashes here.

File details

Details for the file lox_space-0.1.0a47-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for lox_space-0.1.0a47-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cba89506c165c49c266a2afb2c967dafb95c5ed0e405f64ffaef7d3acf13ecdc
MD5 fe361cba89bd28c158cb94ac5592e2ee
BLAKE2b-256 7dbbe4a39b31ca7a11be3ec2f9951e71623d8913a0380174fefc9dfbe716f5a5

See more details on using hashes here.

File details

Details for the file lox_space-0.1.0a47-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for lox_space-0.1.0a47-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d239c0f5304426c5a04c778c312f949d97fe6fe98c591b685ab5dcb96ab9423f
MD5 d07df1390b356b1b04f1986f272734c6
BLAKE2b-256 30d6ac2d389af113485aae40d52b1cade2c804d4c6d3ab46740410f77f481374

See more details on using hashes here.

File details

Details for the file lox_space-0.1.0a47-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lox_space-0.1.0a47-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c53586b1b4416f4c3b0a2c2af4dadf8b2fe5f80252ad5fccd802749649d1671f
MD5 88a5da5f562813711f9013e9cc60a73d
BLAKE2b-256 2bc769ebcc9a638ed53de369b64376fce6951f1b31684cf32337323bf0b9c59b

See more details on using hashes here.

File details

Details for the file lox_space-0.1.0a47-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lox_space-0.1.0a47-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 61d20f9eac7a26fdc3b1aa83e2782a99d50a6a91d1372859d973ca487a22b2a7
MD5 3722f51f1725b3e964a7a4eea6f7a888
BLAKE2b-256 96563ef60e224f91909f80ee8e5d4d3f3cb65eadcd6d419695080c3170f10c4e

See more details on using hashes here.

File details

Details for the file lox_space-0.1.0a47-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for lox_space-0.1.0a47-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6932dd83954a33c30f6c354007f0d226c7598cf53cb29010ec74dd20aeb60faa
MD5 8030c946cf2696e2a7fa767aa80be448
BLAKE2b-256 458c3694d6ce37629ce40d4c1d106ee9bfe0b11819d2c3b592139b62c2cad2a2

See more details on using hashes here.

File details

Details for the file lox_space-0.1.0a47-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lox_space-0.1.0a47-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59811c7fa0d12e713a6809e214c5504cb45d32b3bc8773066361db720cac8f1b
MD5 f5d51eae8a203152e0ea2fab971716a8
BLAKE2b-256 8736bd3714bc01917d2da8ea4a3aa20658ce91544833c40384223633fcf74fcd

See more details on using hashes here.

File details

Details for the file lox_space-0.1.0a47-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lox_space-0.1.0a47-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 71cb54a925a864a3da43a75897228986bd87923417b6df2381665cdd3d4ca2d3
MD5 7b73352c0f470227d69272df99f60c97
BLAKE2b-256 34a0b45dfaf2f6a029787520eacc87767730e5ef88d1915ffc2b1c982e528919

See more details on using hashes here.

File details

Details for the file lox_space-0.1.0a47-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lox_space-0.1.0a47-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 abca6c51c9b0e46e2688a38c8b22cbc5aff2ea8d60029cf39ac3a4a121e8bcab
MD5 b3e180157e871d9022986e634fed6a0f
BLAKE2b-256 4e3b6a41667d7b9489877165cc70364ba4ab12434c61bc84f9d109150c859ae1

See more details on using hashes here.

File details

Details for the file lox_space-0.1.0a47-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for lox_space-0.1.0a47-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0ebec8867943e2cfdf679eb95f37b7caabe7f8908cf663d8801fa03a0f191dbd
MD5 6e205cb20547394fef9eac758ed9f41c
BLAKE2b-256 7c3a062c058e1941e31915f2f960f6eed113973ba783dae96c0ac266370efaca

See more details on using hashes here.

File details

Details for the file lox_space-0.1.0a47-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lox_space-0.1.0a47-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4f9baaafd6d12ca023465e8794d0f8c678241ebebbdf5dbd4f33613a410d073
MD5 fb2483d8e9a88c456afb4b976f8e41a6
BLAKE2b-256 0aa6455d559383a4ed6992cb5ce97daa934971259fac902787b6a0bc29fb4b9a

See more details on using hashes here.

File details

Details for the file lox_space-0.1.0a47-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lox_space-0.1.0a47-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf93d4c3a27efed830c5bbdc1e26b1f6b7eb077ae029141aef2999091c4a6876
MD5 27267f58202c79425978a6a3a5281179
BLAKE2b-256 1a0380c01805307699ba57f428d5756640793e97788eead014bce193cadd7745

See more details on using hashes here.

File details

Details for the file lox_space-0.1.0a47-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for lox_space-0.1.0a47-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0f308f06fd5ad31e5b61e4f705d1440d23b70603b61bdbbd741a30c452beb242
MD5 0263b5dc2e3f00a98dd983c3deca2103
BLAKE2b-256 53e3b1b65c3eefec5016fea1783bffe2f47f23c7998e03f12c9f89f146d68b11

See more details on using hashes here.

File details

Details for the file lox_space-0.1.0a47-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lox_space-0.1.0a47-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ac3c30228f61ecd9e6e2f23222dfa46ef7936fe224553b2dd439a55bcf46ad0
MD5 c76dd595b879698398ac85c025dcf2e7
BLAKE2b-256 9b9b8c8820113d0084a5bae8e629970e6ba09deff6a99f91b658c97a4b721fdc

See more details on using hashes here.

File details

Details for the file lox_space-0.1.0a47-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lox_space-0.1.0a47-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ba86196a6ad03d94790f29e3b8965d93594f192f5b33ea1a5993065e03baaf0c
MD5 3cdc37d1e43a736a69d7aba627f53a86
BLAKE2b-256 a97bdd823084ab94e4f9c2a53e873df5801019ce4d90a502b51dab93d670b3ae

See more details on using hashes here.

File details

Details for the file lox_space-0.1.0a47-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for lox_space-0.1.0a47-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 47cf0456ac17127b90a3ef09a9317cd5efa3d6cbb3a28e62f97abae8089d1e30
MD5 8fe46447c18729be3f087e147f372e82
BLAKE2b-256 a40d16a73b118ba255198d764a6b18d1c95b98a87e63eaa872beee11ef5dac1b

See more details on using hashes here.

File details

Details for the file lox_space-0.1.0a47-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lox_space-0.1.0a47-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea31df96041de21e0aa6e371914330f6011b8f5491c3ee225d1d7554482d213f
MD5 358a06bfaedaf9c30b6165b33772e429
BLAKE2b-256 811b15a3436357ec8c274343c8e210ef101559a6e3fd835ffdb0b44ece4a95f3

See more details on using hashes here.

File details

Details for the file lox_space-0.1.0a47-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lox_space-0.1.0a47-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec432660fd18eaaefe8a126b7d928c94b9bc1b63de51f7cab84ab5fc4a276a38
MD5 023149ae365f3cec2a8636125cb4863f
BLAKE2b-256 74fd0349f1b441ddd9c7d3690744cad1c5ce7f255bfe364f9c97b4b6cbc55b3c

See more details on using hashes here.

File details

Details for the file lox_space-0.1.0a47-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for lox_space-0.1.0a47-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 795ce2424951c4ba73faf3c4397d123c7ba65de8957ae0724623d0e5222e3c89
MD5 1207be59653364aea63f689814baa17a
BLAKE2b-256 86495739e5d745dca8b43de73d972f2f1f70a7baf471833e9ff2e12f691835e1

See more details on using hashes here.

File details

Details for the file lox_space-0.1.0a47-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lox_space-0.1.0a47-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 856fa6d8e2b5ba3600e55f5a3cc69949ab397e824a9a9a6020c5596a5c45389f
MD5 75c9e26dc2c85c368da60607845df3c2
BLAKE2b-256 ef1a0c365568363f6e1a151ce9df188154f0727e9ff2b0d1d4c3c96d1c8daf69

See more details on using hashes here.

File details

Details for the file lox_space-0.1.0a47-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lox_space-0.1.0a47-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 70475f4c293c98faab2963bccf9dd87fa25dbe940f2e2812113d992c0454742b
MD5 c558745f123393cadda98ea8e3e23bd0
BLAKE2b-256 0c3d5e6be44f3261aac1a9c8b0f2c85ff498034fdf67d150d6f70572274b7564

See more details on using hashes here.

File details

Details for the file lox_space-0.1.0a47-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for lox_space-0.1.0a47-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b771348305d0b7e1b22b57ba81f464de18b3ceaef51c77f62be4a6f4958da54c
MD5 a2e92102ceb8f2760d5a54c0afae01ed
BLAKE2b-256 e5fdd3d327adbb572d42c1e0f01d7ee28fdb7053574cb7295f478e33da2b4921

See more details on using hashes here.

File details

Details for the file lox_space-0.1.0a47-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lox_space-0.1.0a47-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f0620da5e102c7068fbff8d60a5dbf47ad488028ff9a232f68311022632a7c5
MD5 062301f8e44ec19bb24c82788f4e6b7e
BLAKE2b-256 93fd9c4f2c04bb8c1810acac5a7bc90ba25cc33587e11ff6fc3ede7a65deb0b5

See more details on using hashes here.

File details

Details for the file lox_space-0.1.0a47-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lox_space-0.1.0a47-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 03592df1a1d3adef4e196382ac83895c5c916da4d4481eeae2b678cd9c41267c
MD5 a3f439e26f3ee337e36730ac8846f669
BLAKE2b-256 dba8394a5ec9d7307da5705120f6b3d04b5737830ade2ed99859e7cef41042a5

See more details on using hashes here.

File details

Details for the file lox_space-0.1.0a47-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for lox_space-0.1.0a47-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9e3d3a4d596ea3090f63a67d3b843560fa014fefa8df2db1233f4f67a5916592
MD5 1346f11d8d069cc57ad990e2bcdee278
BLAKE2b-256 900cfcc7f2bc58c61f1fd358f82fee8290bf45b63d0ec8089c54b9a71ac8599e

See more details on using hashes here.

File details

Details for the file lox_space-0.1.0a47-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lox_space-0.1.0a47-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c14e943a64bdfd34297ec969550f471b74fa15bae0e4ce44007aa91f5f7435df
MD5 82d3ebb55c864eba925ba348ab5d1e1d
BLAKE2b-256 352da6db653122180d3fbe1482ba33b71a9a0e245672fb83f889b717fbc534e0

See more details on using hashes here.

File details

Details for the file lox_space-0.1.0a47-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for lox_space-0.1.0a47-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 012cf1a0c07dce3e76c9ae85420ea03a812bbd7ec2fe60624432d2a7aef5e668
MD5 c1f4f792969fef41664fdbeb76221c64
BLAKE2b-256 575c099c30708ea9dce6d796153725f6f82e9a7b103c6a5113dca033a4fa7053

See more details on using hashes here.

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