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


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.0a40.tar.gz (632.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.0a40-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

lox_space-0.1.0a40-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

lox_space-0.1.0a40-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (2.6 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

lox_space-0.1.0a40-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

lox_space-0.1.0a40-cp314-cp314-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.14Windows x86-64

lox_space-0.1.0a40-cp314-cp314-win32.whl (1.9 MB view details)

Uploaded CPython 3.14Windows x86

lox_space-0.1.0a40-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

lox_space-0.1.0a40-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

lox_space-0.1.0a40-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.12+ i686

lox_space-0.1.0a40-cp314-cp314-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

lox_space-0.1.0a40-cp314-cp314-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

lox_space-0.1.0a40-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

lox_space-0.1.0a40-cp313-cp313-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86-64

lox_space-0.1.0a40-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

lox_space-0.1.0a40-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

lox_space-0.1.0a40-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

lox_space-0.1.0a40-cp313-cp313-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

lox_space-0.1.0a40-cp313-cp313-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

lox_space-0.1.0a40-cp312-cp312-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86-64

lox_space-0.1.0a40-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

lox_space-0.1.0a40-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

lox_space-0.1.0a40-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

lox_space-0.1.0a40-cp312-cp312-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lox_space-0.1.0a40-cp312-cp312-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

lox_space-0.1.0a40-cp311-cp311-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86-64

lox_space-0.1.0a40-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

lox_space-0.1.0a40-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

lox_space-0.1.0a40-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

lox_space-0.1.0a40-cp311-cp311-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

lox_space-0.1.0a40-cp311-cp311-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for lox_space-0.1.0a40.tar.gz
Algorithm Hash digest
SHA256 8fe7ff6fa3e048e92850ea5acb01afd0328538ccdb39825e60a353d2bafbc95a
MD5 a8f70f37bfafa866ade1c321eb8721ec
BLAKE2b-256 5061bac4f361b619cb73bac246684c52a14385ae607f0f92e41ff157fb362243

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a40-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 29c19e6bc63230e268f4352bed8449aa90fde4e795a7df412245b009680f685f
MD5 c6045a601fccc8ecd90b84f96db7564e
BLAKE2b-256 a638af6a984c403f149ad8f5e6240d3456dca1f866f948c8113f5582fbe3d9c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a40-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec4cf3010971ed2785a6013823c4a8675cdd071994fed98537fa8ac497be5e5a
MD5 e3a190cb013713438e119af63471216f
BLAKE2b-256 32dc910dd081686d825fe344ee1d8d3c9680dd05f8493440c633c8ccde6e0482

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a40-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 313be537b869516b87b7810360f446c061ec24a52c7434dbbf4e619affbbdbb9
MD5 cc23ad466ddbae466790ee508f061cb1
BLAKE2b-256 c09dd8bd2cdce57c2a659dafd7a58adf6fd7af120746d66247ac58c8390af55a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a40-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 787d3e4995af77f547b87ea61a3198471e0bffabe19458547e90ba7478edf2eb
MD5 7f6e4b5bc17ecf6e9e7faf93e1001c20
BLAKE2b-256 19c92b3d9df138fe0dd26575eea02452b2b2b7f0381267a120e2e87546da3d47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a40-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 be111ddf0cb95a9701bf0c52e8e35523254de6154fad937a1a37073a3376bde7
MD5 f60f18d7dbf3bcabd7c8b963746f9b80
BLAKE2b-256 1339ad34b8240e83c610cb043daab04c61b0c606b025a8c29b1198bddc14b66a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a40-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 be8e144019957474329ae5b265a08b82c7f3ecf0cd0753aa681b35ce057a999e
MD5 41317d328cb7183f1b0d5603b10530e1
BLAKE2b-256 87bcd280f988b9a4ae5fd72b51c6adf9758177230558e21698e9af8b662c176f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a40-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07d7c44e4e5086e8a4d0cdc70b900d8e87c9b64b4baf63a6218eff9fb35526d0
MD5 11f7dc0d8bede0eaa00bc30889c8cba1
BLAKE2b-256 3fae33773de9941ca77965c8e179dd56216daf1c5e6a40918a255776de39f894

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a40-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb8ab3ec4b1410e397e7c8cbc045ec776bfb6daf65df6845dc6ea96502e236e5
MD5 fe8fed4bb56bdc832547c383ff287b3a
BLAKE2b-256 69194c471ca87f669e21a4451db897c9d09f2dfb7d0bd7f4eae31daaaefec1b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a40-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9f5d5e25254a21fe93d76e3bed0717e6640504ee812968cc4af10af7d2bde387
MD5 1228398dde107fa416b46c885b80e003
BLAKE2b-256 96c0777bdb5c9bf851915a2aa45ce7473b576901c90c80e84d9013bd1d8e146b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a40-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97ea66c8067eb6637396eebd9f5beb453700ebd85a25ba0135c58722c4c04e7d
MD5 a9261ab4a396b56092566895b90c9650
BLAKE2b-256 7bd403f5c7d57049b40ff4d291dda355fb0f4598b94eacbb56466cabf21690d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a40-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 72d39982cf039e9d960f5f36cac175fcfdcb3f42573d2e8b7f566d3334daa0f3
MD5 2670ea0804518824aebcd98352a87988
BLAKE2b-256 e9368e3d90cf6c1f5d1ac7d2ceb2c67773ec07d3cbcf4dc3326cc3558baa57a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a40-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6518a5cd333f79de770bb6017757d5947585e98488457ce5525fcbf0106c3021
MD5 9cdbdbe42a2a5378956f906c0d5afcbc
BLAKE2b-256 7f04383474165bfe39032842c6bdf02127c65ab36926d954539ac88dfce85616

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a40-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 223960f69023263363c76f3c367e6128a6d5e955053654987cdf7437b837d195
MD5 115e32be145482d764552c9439572d6b
BLAKE2b-256 64bfb4c1c5815378d52d2d12cc48ab8c91391fa8200452baaa79d74854bd2c06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a40-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 041ca8d21fe2e41d4d9973f785afc002108508cce934e7c944993e4dde5804fc
MD5 91061dc3b94ff56399cb0df7796b3b1d
BLAKE2b-256 54e28758f258eade210eae11b408436d7f3e62c4e4eb924bdde6787baade0edb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a40-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 14868c1edafe3a1ab6edbe33f09ec9301966a1e14fc5c7bfd6ad0b6fad331e86
MD5 9eba0c182c0f242ea81cae3db9d56850
BLAKE2b-256 49bdac65d8d0f22423dc11bb315a3c1277e4845b2516f3fba0d7d4d251395f81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a40-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0009dcc4f862de2789ce728dcf09ed6f43311e83ac1ca3aa9d780aca5168f6d0
MD5 ae5e5f092129870b0404e517d7ac1a87
BLAKE2b-256 441d013b6dd4b940e07acc9b38436ca41bba15cf343854e0ad61c8287409f189

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a40-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72599bf2c56f1d4797fbb5d6a7f7c0c80ed5071ae3a392e2b581f40d9f00eff7
MD5 fba9a557723fddf9548e7795349247d6
BLAKE2b-256 7cd1f26f08a65c858318fdad33426cb1633844a9e283c6cc9a439693d486d1ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a40-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eb656dc265714d66ce74b9263807aac979baaeba8d50e48c0f90dff243f7e458
MD5 41c91d78e47e4e8225fb971d8205bdaf
BLAKE2b-256 fb060455389226fd2c767c14ebd4e34f2398cf76709baae50b9fbe31ed16dd6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a40-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 af75aec918478a354afaf4d01340bac108f5691ec3094c4864a04130ecc2ffef
MD5 1415b01d18e6bf311834f2e5667d55c8
BLAKE2b-256 ebe2a5727d2aff0f33272b20fff246b10b3d1ae762ae785577c3bbb198966687

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a40-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dabcdfca297d5681f6a512d92565c995cb425ff45d1dce1e65d676f028d64644
MD5 ee087c2c5cff308f80b16637948891e4
BLAKE2b-256 927e0f052c1ad39a2fb17c539693b0d63bf5a76078f5e5e262b01537ec564579

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a40-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8832cb0cae1e43a793a0f48bcaa7fed922106f253161c18bf4d88c87455c4f07
MD5 39705c33d3ba1d950254b4f6866fc5c2
BLAKE2b-256 0fa1492bc3068f4ef37b46cf8ca03daf581ee28096457ab21ca7babf99c73521

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a40-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7109fe799ee171673efc28553e8ed4ff26324cc1fc369287cf775fb2b04c8bd0
MD5 fba9aa22b7ffae23d0c74e30292030e1
BLAKE2b-256 8530ef7dbeb9499ffd76cf7c94a684e1d53e7d1860992eae80ff5b328e9fc0c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a40-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 513dd45c7d0ff1b9dbbf388062d62dc672a38b1f7b4fb2c71adde97e5a44f2f9
MD5 2c501346c2aca9168e0d3e26494a0cb2
BLAKE2b-256 fbe5731050c3a6687cd426fc5acfd120782a7b81cb76f4f267d555e24a6c7e0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a40-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ba9765ea6c71b46f36c2d26522eedb4a8cde4068f8224977e65d2a71a2bb912e
MD5 bd1bb83b79d2a260b239107a866a437f
BLAKE2b-256 08419ac7203cc3e0e3b8dff2da6b3235eee7237e58fc22e91305a05fd17929c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a40-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 26aab54daa48163069306ecf7b574cee02fca7e444bc58ff2baa10d4db87a8dd
MD5 0edd0dabc06ec4f1ee670eb07a702426
BLAKE2b-256 a9d1eac646375933593490aa84a7c48af81d4bdc0758182970dc117e48e5ee8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a40-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8cc826ed1fcd6b908faf9ea1f85732f1dd4c7d56d77e2356260a28f553fe4db8
MD5 36397135bae3a6a25a165b97f7ed90dc
BLAKE2b-256 a67ec60d504bbe4cd26574dd644caece2b77fac0e715f5a73d31a4449ef02fde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a40-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8366153ff93d5842356750232de1ff527e52127b1282dfe35d0197ea1b80def5
MD5 9b149d0b52e22e84454dd4043c1aca72
BLAKE2b-256 53341ecbf87f9b39ec3c2ac138dcf70da4cbe905d9ba753f409049d074b80914

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a40-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 175c649d7cb4dceb552171453519bcc2b97b4a8b8c2fa86adf3ae54dc9726597
MD5 7913b847479e6de4a984a74cf3f48ab1
BLAKE2b-256 09c3826e09973e0a0fdb447562fd59bf6747429b5aae82fba20680e1606be599

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a40-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5f40b93735789340f6105b6eca9667d8380c20c0d0bbdfe9c63bd7022eb5f60
MD5 8caca47d6c00dd86e9ede0de937a6182
BLAKE2b-256 dce8b1cc30766a98aa5a7f10a7c5c9aed45e918ae52dc6830c920c4da6d083a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a40-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b2945706fddb6e50aed0d0b106289752315046db9cc7a865e194789dd01f8c4d
MD5 e4f670162a7d705483f4f23a89393582
BLAKE2b-256 ae9032b3ec91e776fa5aa42b7d5bab8ff2a7e2c46bbe69287b39041bce8f7388

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