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.0a42.tar.gz (690.8 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.0a42-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.0a42-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.0a42-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.0a42-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.0a42-cp314-cp314-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

lox_space-0.1.0a42-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

File metadata

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

File hashes

Hashes for lox_space-0.1.0a42.tar.gz
Algorithm Hash digest
SHA256 25ecce80007ae49016539b3bb84f974704683a750cac97bc9bb04a08fd865fcc
MD5 729e15ab16e4d3feca64e4e8988e4748
BLAKE2b-256 4f17b8280b3465efd5a360e6d54014fba004a662837aa0b7ed3986dc77011e2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a42-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf0f90dad972f87b8f407f2a7849b4d5da442bf18d5225c09e36822ec91bcf68
MD5 120a8acf2d4b4478bdc78d54be8fc46c
BLAKE2b-256 7e9ebebc867e62b6dc9810ddf5bcb57eba8d03cfddd4ec90a396486721910046

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a42-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 050ff334b5275072a3ae906dba1eee2a88b520b505af473668c2bdb946de8757
MD5 0004a8e6bbcddca781c3f6bc9027f60e
BLAKE2b-256 b67f1cf52c30fdd42df8bad73f3cb98216ec4668b7655598b9dfa1b270e5b794

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a42-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 48468f77362c6b2f7c9c9e624c10c3e08bafe01fb9547f913a4608eb1b4ac9c3
MD5 f977a20dcfc29aaee2eae50d2d2c6506
BLAKE2b-256 0cd7207da08a8aa5d743a5d8bee797ab6354d02a008e91f3b1c5a6081ac0ef7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a42-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c75c4df31d7caf831fcbd54b1cbe66b4ada05b6903165b13ab012449ac1d83a5
MD5 ba85c98128b0cbeff805f99c1830e8de
BLAKE2b-256 52d66c6587ad9336b8c9ada1589c4529c92456cfd14c88fa2566b36e75634b12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a42-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3f6f92eaaebb45588da889036fbd281e0bf062789ee5e2f63a8985835d55c192
MD5 99f66035201df70661549ecc25065a5c
BLAKE2b-256 e6727af2a221c8308502ff8d6c0dbecccd052c3cafeaa7cb30b5f74feb3a15d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a42-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 1a4271424fa2a0a77c9864b7383dd21df566a93ec15610d6597d67601a37b863
MD5 69863ee581be119e23f5ba97ad0bdd2b
BLAKE2b-256 ab08fe8a6b99e8c7ffd875ec4e78c4601c4a30f4e7b3f79c07b7acb42639d825

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a42-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b95b03630401801573fa0b091222a373d9d15e3e763c35e432d38e3478700026
MD5 2ef457cd56a6d44ca24c1a36633eb7c3
BLAKE2b-256 e1f4c6c5c47765fc55bdd4f32e83736e3529629616c72b2f89c83a333bafc97e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a42-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 91a59fc6a499fd56e078e1155bc8a84f716cdbf4c6b0e5a0bfbcd272c7adac79
MD5 1568032934667068760b192439537ba5
BLAKE2b-256 9e6f17899c72a2910526427b234fca6a99dc5eeb49084d87634cd80640fe107a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a42-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8fea713c636011b885be910c69b315e6f556d57a62446374efe9d95b49c701e8
MD5 7bc79290b96f70caff8d82ee07b4ac54
BLAKE2b-256 47b0eb80e43dca799dd010810521d385967b7e90a78e89486243a57c91aca76d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a42-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d90c9a0c929fccd084425226786ab519ed834db967e536f3bb534302791a597
MD5 68d3a71a4c2c6dd80e3ae5b36b3617cc
BLAKE2b-256 991667a77082411cbbc9f308a22ba47e1de639cffacac4505c3df13878da70a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a42-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5585356d6e5ba690e30e724f8c639a056ce85485246fdfd288f72266fb6d0568
MD5 0a8548c3402c06fc1b61f1114d0e799d
BLAKE2b-256 3c91eea3710bd509773bf204c6bdf8cb039017d08302feaeacdf078b49d04992

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a42-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2eb596af2c6e0d1873cb98901f2e15e4059a9b433318a4661279513eb765b9cf
MD5 2394c1301327f7e900f43310af53f541
BLAKE2b-256 6b9a6c09deba31205be5c0c6686915d444ca950c4d79c379101faea833dbaaac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a42-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 454cb3735fda0c46c7aedf44999fcd9cc62b30af11e37606789ca359515a4417
MD5 d6c09186ce8581df8b8dd185281f58d5
BLAKE2b-256 cc2f812d5aa8c7d701af152fa30fef90b0d06bf976169fa8a8b0b5f4a8573f06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a42-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9a34b6980be6d709232947e8cad8796fce4bd7cea152befbab2f8e4fff0434f
MD5 7769a6eb0e8aef7ef9001ca11bbab06f
BLAKE2b-256 7be9e9c306862c18537dc5e1414260ddc1fda941970d6c4a6d5eced6bf40cc6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a42-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a456b4885f447a79d6c7eb58334bb2a0879cb7fa7bbaf311e49d5c003c3b34cc
MD5 aef3e3573b6c62bd844b12caf5884c8e
BLAKE2b-256 67e1833efb42c1f38b55e4b4875d79132ef1a34a9f54bb47083fe6329a1a3b50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a42-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2af2a018d1266915fbbb41c090330fc682c6ad297c4f7146349f6974f6bf83c7
MD5 3c761dc4673e3658f98f297a8168675f
BLAKE2b-256 9a102d16c60f321f60f315407d90641e18fd84cffe63face5e9949cfa52779f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a42-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6d8a901824fd28247b46bfba5ec81b730379ede5c7f8bc60c460c7a7832feb6
MD5 d1dd7be218f98815a56b659f222bbfa5
BLAKE2b-256 d5d42b5b7e87d5f28330cf88db791c68bd308a2901954cc71bdaa16d0c8fd4c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a42-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8a68e8ab3842ce839da87064cda5e3b2efd0b79c512151c823e07ca90a67d1b7
MD5 77144f9d6ec4ca1ec6a1e115a013ba33
BLAKE2b-256 759847e70befd3fc4370a9094dc78c5fc70a18733fe566f7ecaaff669aeb98f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a42-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 36d98013616a0d7dd5dbc041f3896cbd011d3c2eda50420c050aa99e57379478
MD5 4a9341dc16bd27ee10c8d41f6147226a
BLAKE2b-256 88312d5c8a217934ce239a0c690ce98d6ee16498894860d9a72712f50ab69587

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a42-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4999fb9e050243b6f1553d3ab756a2e84eec75c567bd1a6665cce40c12e0555c
MD5 e6c8b9dbd1942a6dc01fcd81d7b884da
BLAKE2b-256 e3c988d2a72801268d7af8953525fe548fa21021deecbf93f88437465d7545aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a42-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7db81820b5b7db09dc0fee4a485b8bb4fb9e2bbaa1ca3a0a2e25c1895e8438f8
MD5 a855432739c6c62173f54a82af3a9af4
BLAKE2b-256 9f6f246f8fa87c6ae991fa25d04bd11a5c0ed9be3bf6a725c290937d6d1ab570

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a42-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7d2c107620c3c72b18364e71503801d06af1e18e87b0e9a524c497d2add99d94
MD5 0c395e041d46c992235391147b76656b
BLAKE2b-256 2786c0ce2f7ae12df9c4bcb615db86b4c9a28e96b0de411f47cb612fec30823d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a42-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a180a18206c51e397b6fe4b24e2d993954d52961bef91651d248cba45e6da2c3
MD5 a6b76ee1a1f1902aef6688f4fead1755
BLAKE2b-256 81598a86f862e037953b2752c7fc83650b6d424d8179e9b97d473cfe6938a7ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a42-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9fb20e230eea0eda3ecb7225bac5d6e9445d5fb1f2465f2632d48b9e920ec244
MD5 6573652b57a160a6f7dab9223403aca4
BLAKE2b-256 3f4f038212f3b76d5b94a38ee90a5557b2bf40415de6bc53aece19186d93c98e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a42-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 63b9ce3e4d75c94908b5771c205be3e5527ecba965e9292c1985464895574c6f
MD5 7273a556e5aa45ab4092cef1d77a458f
BLAKE2b-256 7b67b9dcd6265dc1fe7a59f7f196f8238cc682252ac59d22c7c128eb0b2a63c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a42-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61330b8bd552c247862b4cd6f9e8d48410438fd2f6be5fe823cba542982aaa59
MD5 3652de002f430a3c39c78cd828133f16
BLAKE2b-256 a1387d4502ebda4d7aa449f85e9425198bf82b511ffb3c13a7116eead1c14f61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a42-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4d171cdab3cb9cdb9b4a6d6cc3802f8193b5338be9f003ea37dcb4e477e7bd6d
MD5 d0de2bd6cce5a2e1981652de6e5990c5
BLAKE2b-256 ac525733768c31197a9506b9ebac52d5a8d4d24ea99abd861e5961d4dbabf3ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a42-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a073d8c57623c21d496cf065225f437e74b347e55b979a0913410e5ecf2dd5a0
MD5 b2c6e383075f646a578ce81e1448e943
BLAKE2b-256 9f0947ee2d4a3bacb22190611e4e15bb77dde83a645c447ef68bdd7ced2f9feb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a42-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02a71c644168b8ee6d7eeafd87334ae78ab3667b67130147ec86a3d64941de6c
MD5 f8b20cfdcf8cf227a0c7cbe32905370a
BLAKE2b-256 88f1ce56dd2cfd7f6419cbc7c850fa821760d256f82ca5936620443f0f0c4c41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a42-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d4b0a4ca6582194cfebcdd5fa75dc926d427820309a7d6893cdf2a5d64039c7b
MD5 ab9d3fe2172e12b6ad4824bff560f150
BLAKE2b-256 5740c001e3d5bec6903131a18b16b2b4e3d257f4d03b7e7af0cea8a9cba0477b

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