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.0a49.tar.gz (852.2 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.0a49-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.0a49-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.0a49-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.0a49-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.0a49-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.0a49-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.0a49-cp314-cp314-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

lox_space-0.1.0a49-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.0a49-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.0a49-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.0a49-cp314-cp314-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

lox_space-0.1.0a49-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.0a49-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.0a49-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.0a49-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

lox_space-0.1.0a49-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.0a49-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.0a49-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.0a49-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

lox_space-0.1.0a49-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.0a49-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.0a49-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.0a49-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

File metadata

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

File hashes

Hashes for lox_space-0.1.0a49.tar.gz
Algorithm Hash digest
SHA256 e0b6507dc51a33ff464b87734985c6ed2f3c26519dda11961358cd7673e083b5
MD5 0ffdaec18c98aedf083b3696b049e976
BLAKE2b-256 14a57406049d7a9f8e1481afea16077aa95551913bb0f2fdf0610849f2c8e75b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a49-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68f811734ae182e82ebf0e1a639748dd35186d393dcf9020f8239980a63dbed4
MD5 bae8749877af5a60ac41df82d8251878
BLAKE2b-256 4628eca3900d8532fdcbe9d1db4b2b90dd557d2311f217c8d4e47bed2a0eaa48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a49-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 212c529576e8c220894eb930d3905eac6fa585e3b1878cd0ceaf4e0253e1bf15
MD5 1e32d1b5245cdb487756f7e7c4f41a6c
BLAKE2b-256 55348d4ac0ea8cea0536e592c724c86e4d26d1b9f0c24e046b8aab9f90db8c13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a49-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0107063759aaaed7341eb761c9717ad519c6345e53f2a80bda87a0872a1c8586
MD5 aa0317db8163d0d876dd224c24c394dc
BLAKE2b-256 229d7deceeed657089e7f0a1d7fa931434ca57e61280203fcf9b6fd7a27cd83b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a49-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 86a2a2735ed81c672d768452814c253cb151dcaeddb36a788c827627f10c7608
MD5 a4e446b389c0c48d5b12f75b4ab46932
BLAKE2b-256 9431253961acec597438ddcc0f8185c84101b5aea419dd694a76da88a5e1ccee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a49-cp315-cp315-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bc7a098ba170bf4f69909c7c30661000a9a43339734c9fa16ad8b4dd6d2ac785
MD5 365b1e33066f52fd4690e7429121e31a
BLAKE2b-256 8e46305ced8290b8cd53acddda60d22b457571f23e7ad59adc0e69837b5c1f06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a49-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 626a4547bc92b1f5a313d436de9516814d515db1c6246295ae5b29c93ebcdc1c
MD5 c7f8290ae7b512aef51adbeceb108070
BLAKE2b-256 711ed3f2420da3533f8c716248bef9887d6d91cf5b8f1e08a15faeab9947a185

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a49-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9c428665764ee42a4f6fbe4376566899aa321ba0e560fb62470c9b40f8601017
MD5 7d28d77a762482d422eaa910ba9a6924
BLAKE2b-256 798a504a4306fc1ba619efcf39640d26bb5342ddcde68be57e7d00465b60b489

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a49-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 30a2d20a98766feb47ea8dc53411dd2f41a80580ff86370eea0d62d060fe0a38
MD5 7eeb295528c458b845dca1deb833f636
BLAKE2b-256 f15f85718ee8ff5391e7b39d25480671ffbd19bf7d82f0b707fbd89b4717f1e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a49-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 37d7880cc46951812f9f8527a1ac34358bc96688d354de79a9e4480c1609a7af
MD5 10fdadeec94b380b167a89b7aabd7a54
BLAKE2b-256 3680e57052da64beeaa1eea65af97ba7013b88ec1b7be38b9fdff3aa5086beab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a49-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a78de92304a71b2cfd37ce690020337e69393acbf97ff585e88598d23ca0619
MD5 b8d433b30e15d018bb175e206b574b8a
BLAKE2b-256 ec270c01d4319d2b475602aa5938f7b2d9930c9d13c8698822f72e4749d9b459

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a49-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 53951fe05bd6907cfb2fa0bbf30a619be4ebec8a26654fcc4d10b9d642bde1a5
MD5 fd3c4d63d6ecbeee5ddf9414cdda244c
BLAKE2b-256 f74b6d118b7aa203354368f80caa638397106818e57d4d5bb95f8e16ff582804

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a49-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0aa2bfc8cf18efaca5e221f96e848ca10883f31173e63111bd2892e25e0941ea
MD5 ff984d813a92408877b8999515e0c6c5
BLAKE2b-256 2aee4bbe7847385937bb26b907f1fc56297fc4094e929a5de252d8eee2675f57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a49-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d198e08684d5aee6d1afeaceaf4bd992f3f0e1c1d2303bfa286ff4284b94101e
MD5 78b4728d9ab43f1602b380e37ab82dff
BLAKE2b-256 f3a4cf539b209dadebac0a57a96202921afd7ac31594a5cd40e498fe784929f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a49-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2881c6f34b3c78464cb8a3850696cf2145839dc70d1f70e33e6858908539d2ac
MD5 bde796dc2e64a8ed7dc504b6b702fa19
BLAKE2b-256 5557c682cf8f0575ebb9c31adb51052a12be858bd41adb529cb33b87d8961081

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a49-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0f627e2f08a51d2475eabe726848a7a1d34bda37a04071d6bdeec5cf2b81c144
MD5 a604debbf9b313d65a730f793c0d0b97
BLAKE2b-256 4539825ada0f5de666d9e02515c03d93fb187e808eca80153b345dc1baead23d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a49-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 57d1aa65614e58758a9ecbebd7614ac3eac871c8544a74aafc6a41fad9d5cdf2
MD5 5d865b56a029c17c58152c657c4c170d
BLAKE2b-256 36e3dacd3fd6472716b56123e4a5f35802fde1ddd3c895acdc2e909848a935cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a49-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 095e99e81e82f0d7568332418b5abbbd0dcfcefae6d0fa0067545067d12e0b5b
MD5 88d08b84a770d3db0c1512e82d05b87d
BLAKE2b-256 e439a17a215de252f5ecfb216acfcd18fbc153d1da415042365421682465b303

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a49-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 683bfc199d4b48c856caeb66fa026dd3d1b1e8417c5309873229a7b82fe19be9
MD5 f8b0755b5f51276cd417b5c3acc4f067
BLAKE2b-256 0ca7394077fbc7e3207735cb86a3089abe8a9cf136246021af32a706c83e0cdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a49-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 937ad4647e944df96252b23e8f4f175ba9c4d94b82adb7f5dac75c61dd88baff
MD5 0b56f1df882f51ae913f480a0e83e59d
BLAKE2b-256 f4580be8e6b4bf0f5efa945eb5af67be77f4965aab5a1e68e40ecbc3b9d320fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a49-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8a1e5c1add26e046031e095df23f6abba87025b015ed5592129cd73b8400666f
MD5 3b863934fadbe85fc1b74c2c5b3dfce0
BLAKE2b-256 244a2d459ce300d36c4f9dae1d5000b22c77a7ca9d19cbd8b6584bb2af1d0510

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a49-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e394599dcddfca967be53aaf878ddb10784e6da969dbebe26781acbd0f6a1ea5
MD5 8633ed592a782d3753e185a91e93be57
BLAKE2b-256 a55aad3a05db79e8c685ce9720e8a83160f95313edfa8f0eba732bf586819b97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a49-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2c02bf7bebf60d2e65392e8a70637a703afd3210fefc4b2e3596c1061dee6839
MD5 9303490a047e7ec9c7f9a6416de9ebe4
BLAKE2b-256 eec08a0fc417fc7c8c1b02c6fc4ef0e6f27e875a6facd8cf2b4aacf2a35c20eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a49-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 00075c91a501db179c410eb26fed7c0bf68b153f7c3d76ed7759a2fb0a440935
MD5 7b247e3f313953ae6988669500d9e33a
BLAKE2b-256 4bae4f6791d711ee3356b11a62e0dd83bb455f1bc8bbba79fd970a33b30adaad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a49-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e891e7c9e557542e2d5e1ef091fd078e5c76f385cb04360830fc7549acbabcd8
MD5 3de713cc0a470573b359ecc0de6026b0
BLAKE2b-256 96ca86ac39d024963bcae39b6d069333c88426e5e633ab80f00c63eaac4539dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a49-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc338c85279c4d8885a776e0ded590aa7a02f3755487a89bc67f8b7f6d9942d7
MD5 4d876541f5b60153e1654dd5573c2c73
BLAKE2b-256 61b3d1b4c5ca32a27aad5c2d5bb3cef3c611b29b1dc44513b26537165fe0e071

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a49-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c57ca9bf687ce42d604dd5746ccacd73e73dee78c173894727e9a96035319f31
MD5 5c9382903dbdedc250e53650ed7e8601
BLAKE2b-256 b97295288bbc7972f5a753b889af448fbe15c14451151639fa194595abcbe107

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a49-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2f4b018f218f2b53241ac77439a480fb1664a8ad8eebf74c6e2493acde0218c0
MD5 4afc16da479aaeda6e896d45f00f9d72
BLAKE2b-256 128e2083a7a8216f76ffd9227f873dbf6b92e1f6b233c1b8f31643431ecd39fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a49-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be7c047d03066ebdccf32f99fb4aeedd6872a2e444d6636f673897636f88bae9
MD5 b91baac6ee963a09485c69ca81916d35
BLAKE2b-256 2b656f21a03a1dbdeb582921d03d4c98ea41a47ffdfaa5d242e4f5754b9e6e48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a49-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4cf9b73c8fdb297c54e5ebb2a00b2c22fcd6363e06db098d8c5366e8d050f219
MD5 1b8cde3cf7f400deddb614e022bcfcdf
BLAKE2b-256 9b3d365f7f22f73af388d12083f3db5778a2843a7eb29745739c5ed88f0e6512

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a49-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 453934b536233d8c1660eb4171bfec48971fa1660b1ff0d6ac8d92619957b93e
MD5 7f1b0ba5ea56a24d9b163962574baf57
BLAKE2b-256 3b1f438b0641810ca1797ecb4ded8448c58afe7bbd116b3efd0be0cc46c6969c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a49-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4c261181cb706321d6805d9984f9cd6145c077e50b302445824f5026a8d84b4
MD5 dcb71b11e079937d411f770aeff93f6e
BLAKE2b-256 bfcc39ef8e8091303c9f459afdae806bef398fec93e64277a6e88dd23bfeb84a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a49-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b53c3185ba8b48b8b8812afa228b8e51bd0c1e87550bddfe89aad68dc67849f1
MD5 3bd2fa2461aeb024eecb7f8993aa49fd
BLAKE2b-256 328eb9bc4bc3a757a22fa6deef112cefe35e7339c2b14ff1e000b859b5c2d489

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