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.0a48.tar.gz (831.5 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.0a48-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.0a48-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.0a48-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

lox_space-0.1.0a48-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.0a48-cp315-cp315-manylinux_2_12_i686.manylinux2010_i686.whl (2.1 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.12+ i686

lox_space-0.1.0a48-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.0a48-cp314-cp314-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.14Windows x86-64

lox_space-0.1.0a48-cp314-cp314-win32.whl (1.6 MB view details)

Uploaded CPython 3.14Windows x86

lox_space-0.1.0a48-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.0a48-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.0a48-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl (2.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.12+ i686

lox_space-0.1.0a48-cp314-cp314-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

lox_space-0.1.0a48-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.0a48-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.0a48-cp313-cp313-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86-64

lox_space-0.1.0a48-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.0a48-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.0a48-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

lox_space-0.1.0a48-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

lox_space-0.1.0a48-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.0a48-cp312-cp312-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86-64

lox_space-0.1.0a48-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.0a48-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.0a48-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

lox_space-0.1.0a48-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lox_space-0.1.0a48-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.0a48-cp311-cp311-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86-64

lox_space-0.1.0a48-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.0a48-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.0a48-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

lox_space-0.1.0a48-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

lox_space-0.1.0a48-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.0a48.tar.gz.

File metadata

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

File hashes

Hashes for lox_space-0.1.0a48.tar.gz
Algorithm Hash digest
SHA256 7803c0381587bf92492dd275f84c515a49b655607380b453c5c153f19b14bde7
MD5 4d79cf4d02c5b711ab09e71d806fe171
BLAKE2b-256 8158b14a5e6af48d485f334d49c8108bd32c42a3e35c65a3b0d3a3cf25c8be7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a48-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08b571d64f432a529a531d794745602680035f9ebdfb591f72b2665bb8002432
MD5 3c67b1abef09e0f97d8ae0910dd4d708
BLAKE2b-256 3b35ad3e8194680d07754ac7e277ccf5d17210c09ebf975a1164eb0d19729b5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a48-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5cff9502a96fd2a31e4c99cc0748472d6dfec1ac25e9a9f21f6046d60d4e8482
MD5 281100863bedc38d99cf1444c23a9a3f
BLAKE2b-256 356643f56d20927947f3a5316a2a835f4d553b676eecf87a99bcd599d5c3c7f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a48-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3b5f4a365b3b84d1d23d8e5750f5b08753867f74374d6dfd347250b486551acb
MD5 abeac8258bbd852e43ed4fbfc7de138c
BLAKE2b-256 3d2742b51f573b2a8445ba198642c041054542c9c99ac0d38d720cbd8f2431da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a48-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 880f66f23d5de13fc4dda4bbe5bd07c7c5df20913f15e39e4f2efb646ae71ab6
MD5 4779d86333791bc9c7b65f556811016a
BLAKE2b-256 6317989ad8dc81f1ed25e400d34ec9066ca6f1e5e3d9a994ca9b3da1dd88455d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a48-cp315-cp315-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6f6188fe3626a80399fc354f185ba1322d2474ce20490f15f56b44bcd96119b6
MD5 104f61a9802b0005a3df08949aceebf3
BLAKE2b-256 c1edc5092b3cc3186b8c898e765489623a4ab7810db7871ea2a561a91ec0d3d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a48-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 280953e0758348ff21ebbed2e0cc2337ebb8833a0832c25134059212d8619b0a
MD5 f895b9d2af9bdec5d332fd069a5ef9fe
BLAKE2b-256 845d4f4c8a70eff0a328a373f8d20c8ffd83f205c50d13635c8ebcdfc36c0fb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a48-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5b04930751a57c6c3c868d6aec8006ba6e429ea7a8930f5f138d006b56f0c4b8
MD5 7672dfd122dea4128f41634679381309
BLAKE2b-256 0a83df381ad86293f751dc26a76295863c3458910c6642772b12bab059022230

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a48-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7848f81a85594f41ea2244761fd2b4a872c36c909ccad341dac279742de71e12
MD5 ad12b389266ff61576bbeea456fc2878
BLAKE2b-256 26d27670974830c4abb30f3398bafe2d65c9207dcbe7eb87a92d6b1a9ce50cb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a48-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9300eb720a0af65e6f3b28723c84c8a71a21bb2df04f51f5819bdaf624cb52c6
MD5 f55e2d94778de88e4130b5dc78785a8e
BLAKE2b-256 50414c5e9bf11fd862dca545f86f2ef21873253da69a7c1e8c71946d8148c20a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a48-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 41ecd48f4b08019d32f87ee14ee511493b6deffe7ab79b4fead5f9e3323dc8ae
MD5 21e761628815f8b28f7401724a079c06
BLAKE2b-256 74232ebdbb06b609644b42ff395dfbe4ce921fbe7d3fe668c7da88d9579ab15d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a48-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 794fe45b532ca9268f971bd5148049d979bd464512135336a3017e103eec3750
MD5 39c112f3ca555d0ac2e5ce3e08cefd02
BLAKE2b-256 43859d9e4416d8be1b5ef4e5df299945b44205533d97690db89fc8f57f6f533e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a48-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e20f6ba2046c86dcba12a46fecae4b581e7f0d4caac0d27fd4b147e58daee800
MD5 f99d7b5aafaca19a8606ce9100fa7e9f
BLAKE2b-256 6a32e18b6500e85c2b0152834b0c1ef1ab0297588f7f302f231fa68b810f48e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a48-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5836a8d5ad209390bbc29b95115b89beae27ff34f7a98692e0c3f735dd787dff
MD5 7344d6d74c05503020e80752bd561f4a
BLAKE2b-256 4a9f407ee5d8516a1ad1eebfa384dd1ac6a3ac79e1d2e095897b8fc9f0fbfab3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a48-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c68a4c5b0b8e5138cfe7529481fee7ff27a2c50b222db801d315ea8b98e7033
MD5 be6acc649060438189a1a241ed98a886
BLAKE2b-256 efcd2c4498073425302c5096ed818fcd29800a5b12c7d77d42f395877538507d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a48-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6efb2971fb0c3bedbdc580e7b869c4cdff1a207d4576e561bf49a3ae3d95014d
MD5 8c0e11d0e96beacc94beb8ec8b4423fd
BLAKE2b-256 0b9feae26f3312ff79a80ceb7b72078ece1dd3d68ab2f969700fc153ddfcdb7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a48-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b4d0074df0008cb5d1747827de185b0efd0f34aed3999ceb371974bbe45778f5
MD5 2625a289aaacc959271f04d0e67eb855
BLAKE2b-256 8708b1a93ca3ded2e0fd6db14b6160dfb0ec100cacd679d505200676d8475202

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a48-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc6cdbef37211a2d8cd4b52faf9858b654feb80a64a8e2c0e6f9b45c2bacbfa9
MD5 9851254dafaca1c97fa1c7f87b945788
BLAKE2b-256 fcba3f200cd33053dbc491e30d15547090d7a855b9fc318aa80a2cd8f2ee75d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a48-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 93f51f4658cc52e024a7df09f1c893c2b713e97fdac826de9aaf0a33c19fecd5
MD5 fdb8e299625bdf3ebde0f783b713f574
BLAKE2b-256 4068c4c35eda4d0c7eba322fbcc8b4e2e620687c0d73299fb1eb9175f33afaac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a48-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9286d11f5b703ac231de2f0e4075e6613a5c16227ccc353d8f0df2f1d8074c6a
MD5 503b9ea589f4449135beabbb1dc4b93b
BLAKE2b-256 013a02ab719d742480b3d04570fc0b7513e699be096debe3f9dd43b637052bee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a48-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 81f5c96ee91c3f46eff98b201287748ac57df53248182b260d4e9924de578b3f
MD5 0965b3de22c5bb167c1dd45123884dad
BLAKE2b-256 9b64c1249a72bce768c2beb00e27dcae01bf4e3da53bb650e2994f2646ac7717

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a48-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a5e32e81b1caa1679cf416915f669c2fba62b68a50aa8766f60f43a0d5b98b4a
MD5 aa17c44428473a866ee3a4201607264f
BLAKE2b-256 8618a3c62e2eeac10e8a766e9b7abbac5a06d2b4968f802f0ce575ad913f1df0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a48-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21eab6faade63266b0119c88380d2898e5411ef305e16716c4354cd60937294f
MD5 ac0135fc9c2bb6c1de20fdf4c9ecbdb4
BLAKE2b-256 9372bb869f3300016e5ba25b42e24f4be1820ee26d5c3b00e32c73288a527966

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a48-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a8b4a2d6505453d3f4d808dd7c92696e7c0e88e882aa5e1e7303fffa95c717b7
MD5 f974aa60c9f8f05e577baf8b2953b9f0
BLAKE2b-256 e2ca569d5d96e80ddb8a111e7522a5209f2d441988ad111fb7e9cda3ac59d833

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a48-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 59549e40adbcc5ff0b4a80c07808afa00cac7b9e8b98fb19756cb294c1d7329a
MD5 a5b7893deb8910176ec392919bf2901b
BLAKE2b-256 bee34669b950f21d126c58ce90e25cb56d5e93fa1f93cd4bc820735ad77509aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a48-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 629eb2f5bebbd98bf7984601cb4d884ad00b388fd193373d75454e9dddf3640b
MD5 2b9dabec0d7df07bb1ca5829205fea56
BLAKE2b-256 da7a946910f8d30da5088be86bfb036d58498ce3a465decc9f09ad305c259ea3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a48-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 164545150cb30ec07905570eb59a237cababfb37a97e88d05d9f57c833840c2f
MD5 c18d9c7757d2608904168ca808a93bc2
BLAKE2b-256 7ef6b4f1634d369f95b31dc00c92b42fa1db9ca966dec8a2da11d73a0a8a27c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a48-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9f594daac111708aa9db145798e447b5fdb4b01a105f7688be9cecd619d64884
MD5 e09214744c47fd66749102bc41730978
BLAKE2b-256 e212ec100d92c5fcf007b0ac6272af2c077eb72d6a517a4646e649bac57a4028

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a48-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b3fc0dfcce41e00b4fccb28287d053013ad1d20a9297f8a6fca32037484dd36
MD5 3047eb153f1d9cae4b09c7175feb6df4
BLAKE2b-256 7061ae23980ffb6e2f80708841b60d8d0897075cc50075f4bfd7eb85df31e748

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a48-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e980803abe67a24ff2339b131e2538aa006d050a5abdaddb624997700b15399
MD5 4dfd3cd5aa62d90878a2de5656739b34
BLAKE2b-256 9a4f8884f5dcb93331f10cae11924ffa48154059375e87c9007e7e59a315a04a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a48-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 23f7737105ad0db89fc1dc8e3aa57ca90fdef1df6a2b28e42cfb81cb8791d734
MD5 9c5740cc72b52b8358e0eb204292711c
BLAKE2b-256 381daec7387c62c419f85de596f1f6e6634bb778dcbb85836eceefea1201a762

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a48-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c49fcfab0b43b7cbf2e68ddcc5cdab223e618c557c06a512f44667460631a139
MD5 0112f1e57af08e76653a7e2ebd8849d2
BLAKE2b-256 f38cd1c24e9b45b0bdcbcfe5b6ac98457b79a453e6eb6ff7bb215d6d9524cd16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a48-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cabee80b555be350d152fe58e7199100175bd2c1fabe8f712e1244e397078984
MD5 bc2a245ec58faa02e9ac9659d00f4eb7
BLAKE2b-256 f35b986042b76067d8150800d3f30222937c62fabdd70dd58bbdbada51b38819

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