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.0a46.tar.gz (793.7 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.0a46-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

lox_space-0.1.0a46-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

lox_space-0.1.0a46-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

lox_space-0.1.0a46-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

lox_space-0.1.0a46-cp315-cp315-manylinux_2_12_i686.manylinux2010_i686.whl (2.9 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.12+ i686

lox_space-0.1.0a46-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

lox_space-0.1.0a46-cp314-cp314-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.14Windows x86-64

lox_space-0.1.0a46-cp314-cp314-win32.whl (2.1 MB view details)

Uploaded CPython 3.14Windows x86

lox_space-0.1.0a46-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

lox_space-0.1.0a46-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

lox_space-0.1.0a46-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.12+ i686

lox_space-0.1.0a46-cp314-cp314-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

lox_space-0.1.0a46-cp314-cp314-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

lox_space-0.1.0a46-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

lox_space-0.1.0a46-cp313-cp313-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.13Windows x86-64

lox_space-0.1.0a46-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

lox_space-0.1.0a46-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

lox_space-0.1.0a46-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

lox_space-0.1.0a46-cp313-cp313-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

lox_space-0.1.0a46-cp313-cp313-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

lox_space-0.1.0a46-cp312-cp312-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.12Windows x86-64

lox_space-0.1.0a46-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

lox_space-0.1.0a46-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

lox_space-0.1.0a46-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

lox_space-0.1.0a46-cp312-cp312-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lox_space-0.1.0a46-cp312-cp312-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

lox_space-0.1.0a46-cp311-cp311-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.11Windows x86-64

lox_space-0.1.0a46-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

lox_space-0.1.0a46-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

lox_space-0.1.0a46-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

lox_space-0.1.0a46-cp311-cp311-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

lox_space-0.1.0a46-cp311-cp311-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for lox_space-0.1.0a46.tar.gz
Algorithm Hash digest
SHA256 c97f24e30c21b9314a6d1deaa474996b9ec0330a5b26d82a09ee5fda19e483f1
MD5 a3d82c53f744f79f59dfd8f222a6c116
BLAKE2b-256 265f19bb326e88b7a6284590a82dae60377d9efac5b7e7b85894c554972dfa03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a46-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c1e9f504cdd5eddabd7b827f2c988ecd83db3fa106922b0c734fc70d9e3a8442
MD5 79f8b5d7c2d7a7ba12ff8d9c42b6de39
BLAKE2b-256 cf8bfdd9d95e362dd073d825d4199d41ce749e06d8fec52b1561b5423d164a2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a46-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 38fe2f0954a47cf22e844bb9a3d7d3d0b6e1dc98e27637756c77e2cc9ca88097
MD5 cac72e1b23b159635c105205f63c518c
BLAKE2b-256 c00cf6f8c8ec1e0c6e6241327898d0d9947c07c9f8a7937857ddd31a32181419

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a46-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fe53fd4e40a43152de9759168edb871bf54b4c8f4a213d2f72c6fadbaf1ccaee
MD5 aeacb60eb4a3fc73aa47c02c3962b9c0
BLAKE2b-256 228bfed978bf38036276819036b8863d1d9b2b3c3c280f0df115953d33d4abac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a46-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5668d092bacdcfeee6a70da135881c378ae11f39fbb755d6441796a60441ed29
MD5 2f9578c83084eb58bc1c96c2de994f55
BLAKE2b-256 afff8dc403907e63d8a19a85222910cde9ff2ab31007b1922d93a924a36ec413

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a46-cp315-cp315-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 96e92dcd4ae1683ba79fa60ced5dc249018a7b2c207c6fdc1e1466a8a9eb3b54
MD5 c2552b7dd7d1df743872b59210cf9c43
BLAKE2b-256 c1724c2c9587d35e969e454c7f963c5dede77e3a3f8c95c7b7f758c4feb02a2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a46-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 25a561c8a439a2324a714e65aa997888c60232637702cc64823adf30125e262f
MD5 d9048a66d6ba13e5806de08a0c85ae25
BLAKE2b-256 528dab49fe4c1f03b32648daa9fef15d573c9a3545bf3f0486d5295631318c65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a46-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 36059316e2ee8951ac16ba6bf34891a5a5cb4685b36f8f5aabd789034493735b
MD5 712ba46057f82e3fdb278f7730faa642
BLAKE2b-256 be0e39268a596ee3957ec59f604083df7c28e444c4959179d5ae6289e20f1ae8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a46-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b893e986d745010f05f8b2d8f54ec28e990cdc7a8262c2b106b178d5a4b22a9f
MD5 664d3ce0224d7fd0e4fde383b3a4de4d
BLAKE2b-256 262ecb54258f8b1f8feed21f04232043a18576d10a220d34c61e9dc2429d8122

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a46-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2f5fa7d211c67423234cecbcbfa9fb2dabd9cf8b8690a72ea4b5850a7f2d300
MD5 d463524d29de49dae1e1201658f5bbc5
BLAKE2b-256 47615c728d5021850997e490088338165927cd0c36347384df39bbc28d7ec14b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a46-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f173b6d81f6e6894fc3e7fb4351721d08ae6c2c3ccf03af7380507cd6e66d595
MD5 dc313e8cdea63b7ec30997457c0106d7
BLAKE2b-256 75490b7c95664777f20bc0f1971dee38d1ad82229b87119884ee2eea9c82d1b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a46-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0b0a6b776fc374138088f71b58207f7d48fb7a87249a2fed612b5a936ee21bd2
MD5 96de0353fe4906e5e75d6dc2ed5d57de
BLAKE2b-256 2c37b824b0911e9beed0ac9839a8b2ab3dcd151ab0ae360b7e3e91ca78089efe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a46-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f82ae3d6d3834a30fb4f124e75f52d11d252057e07ade513f6a90cf500d84437
MD5 d1e8cb8135677bda47cd25464e83ce8d
BLAKE2b-256 c3c226ca9e09d381012196fdb0feecb6f57b2b37a92f10565bbc4a7016c37982

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a46-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 172f759331e3a4e00857a99cc2a3979f13c53710cce96311ea900468d5ae9071
MD5 e701d47436c7786ec6a127571f89d25e
BLAKE2b-256 10e0f3dcc3c42fde7d1ffa7185d9c82c86056a3759751c8f78e85fdbfd0a063d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a46-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e825919d07d4d763c319ad3f54cbd1233fdeada4d1a58f65acc7b99f05c3716
MD5 8fdfc0c7594e05012fd0854ffa9a6dfb
BLAKE2b-256 e4d1b0045034b87fff9174347e2fa2cf3066f12e3fc0bd175cae7444601f8aa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a46-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3e43a22a7c651235fe8a553bf29f6506db78faaea43615f0326b19cd2bc58a86
MD5 573187e04ab693348b3d1a473a979fca
BLAKE2b-256 a4abc7066d036f9a67424157ccabb671add3427c3b05968362b2de4fac6950dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a46-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aeca28d7d128e0fd497d665166d06f74489cc16445d645f13e1b5031369992b0
MD5 2d756d78f54188af1f853c2124f60e39
BLAKE2b-256 c6831e55729eb1873b2fbe7ae0acf09f6113fc0fdc7228991c04e2e91139dd3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a46-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b7ef960421387d16d5ffd4f92dd0b84353973e41f2b335f4418569a3bf46a035
MD5 6980e02e17e836643d4c7c6f1c79d290
BLAKE2b-256 338fba18a336cfac7d06f38cf934e145011333bd0fc86ef6063274531aac244a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a46-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 db2d54b3bfb9ee45da975276bb1ef2ce07b9728b2daaa3b8dd5f22f3ec12aa16
MD5 f33f04824c4d28e235a791e759972ccc
BLAKE2b-256 dc88b3189f090bb8a46be635eec2ba48201a9095e43303104b8d94d2b785aa79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a46-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4ce5dc8bdfd9e425bf7a7347ea92edf07a65b114ae204a3f504faf70deb5dea
MD5 235fb3b9d59953f6dcbc236f11a68188
BLAKE2b-256 f61c33e65e2a444e3923a778d9e1969338a03d154a3722d15b03f2e8ad5d8d41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a46-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dded80f3057b33bd4d411ccb607cfc99ad16dbf4f9f3bc06b793c1689cc5d624
MD5 43001a5a9d0dd41d069eff177f55f2d8
BLAKE2b-256 827c9014f2d6b303dd02c2fb2f03ab9fe4e8d5cfe201fca306e74dd5484fa2ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a46-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8710bf45bcad707ad6716ce9de8f3365df97ed79ef08f2e08bf9af6cb0eaae82
MD5 0310f3da918e48c45fe7cae3908626ee
BLAKE2b-256 5a7e82a82d8ccaca66f2cabaf3c16a105397286bfa20a8ad323d7ba6d98a616b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a46-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0bc6f61d1551f24c5dbe7ae5b0f6ebf61d74263e4d3e26d6a136f09795cc7b9
MD5 73b195e1eb0154f00b99cf30bf6ce6db
BLAKE2b-256 f112abc81ff2931599de70011be7b29b45806da456430875274a8fa8492c08d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a46-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a216d870be5f3dc42b2e1685797a4be930ed023a1ef88ae7de7988b1f7dfb911
MD5 70c566c3e5a03262bfc503e128070ba9
BLAKE2b-256 8e6297599794d5ce3cf27037ac627793529711bc9467c7deb154b5addf9fd333

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a46-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4f374b19c2ed41c30c821dc77c4d64f41852f9a25f5853653d6a73b208bad674
MD5 0e1a15eff7f286d525a3d594b6f96096
BLAKE2b-256 d37399f01bd587625464fd838a3657ba7912e52ebd7a85ba57fa934a7859332a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a46-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3158d6b79d981e8d35669e9a138386242d50ce50d7296407a45c19489377675
MD5 61c72805540287c5ef3205bca6d91970
BLAKE2b-256 2071c76c18e149d199a450e28f6fa7dfb98c0d7993c129250efbc8ee587c10d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a46-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a1f8a22e31104305a582454a5e0d30be43d744b918b0463ccd2ba390b40f2f97
MD5 21d45cb31a0ee83fdac125b3416fa211
BLAKE2b-256 329e7fc9536d57fbd001bd40be96fb30a40193c07c7d98de25510f40b8fb3224

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a46-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c4efb007248207d83c1373a5d36e03be488a6f2ac17010c75a816facaa824d27
MD5 a80c49abd3196580e0a29ec7ab06e86c
BLAKE2b-256 7e7ce7ac0a2784bee02060dd4e87ae1cbbd181577898e7a64fd844d6963f87b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a46-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89fa14187d2e4f867dc7f8857ee51bf078e520ac7ca88468df272c15f045a836
MD5 8f5501d389bddd9c3db061b53f166583
BLAKE2b-256 2f0df5d844040a34b78f32492abf5f8220cccdc424fd5f99ade2ecfd7c9cfaef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a46-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a8f4907986ce436e4d896bb4d301ac5df9efe5315f3dd086fc11c4b58fcfe3e
MD5 4f467be9847028465071fec2a417c36c
BLAKE2b-256 782b4766a496c5d72cd701084f49d6a382cacf3de5ea6c950ca857718038c1d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a46-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 60b6c2c80f5038db75c445e23c75eadc5f9a5bb1b78c7d0b8f35ff500fa3c914
MD5 c1d93b9f633a3eedc35046e54e8614f8
BLAKE2b-256 ec5863251ae622cf286971fc2bd3518845557342de65f59eaa628becf8d75c31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a46-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32e42d227679760782230de28bf97bf82ba02d416e5b1b6f054be4fa1ad16cfe
MD5 d3752ddbf8d9b9a2fb057c0d44af3759
BLAKE2b-256 dae12527d45c0e80098043f813a9187ff445eba9b4e5a8020a7e6e1d8acb887f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a46-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 416ba9ee011938f1a98ab920c207f4debc764a93f7ff8344ded825c51fd28986
MD5 c8584eaa2b41976bb9f1ca2d92bc08be
BLAKE2b-256 65a692f2a7cd12fe37a39ae97f9330ffe5a03df5c574aa977091c92db8722966

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