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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

File metadata

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

File hashes

Hashes for lox_space-0.1.0a43.tar.gz
Algorithm Hash digest
SHA256 e6c16b035e49bcff29085e6637bea24aea57a660cd77c7122f0bfdd02d91c7b6
MD5 0c20105c4c89fcee0c28fa7af77280e5
BLAKE2b-256 f0d69578ea03a08a0544c0788be7ad053477e1cebacc8ca1f1941e1e88e3fbe6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a43-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e11d6832561b75ba98d92530a19ebfacbed9a6da92b57e09d2a7bbd6c61532b
MD5 82ddb521524bc427e0859ad95a9262fd
BLAKE2b-256 9b2b6b610e466704fe3bae7d315f59811a219bcd2b5c2ee63176677b99730772

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a43-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2803748d1c81879bf1714f335bc22eadea72b2e5bdf284f5db38f095ca33d4ec
MD5 3fd8890917a51c8ab9055075278de903
BLAKE2b-256 6a2967d42338837af1df2bf8e11e013c7bb3cf3e4ac75e507e7b2bd38f265ec1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a43-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 77e763f9552e4bea3f59c804bb25f6b3e685099d406c7c9d9738310384add659
MD5 08599f16583d3786b06ba202f43dea13
BLAKE2b-256 5160f087656dc0886275b4459497144b5a1901a6132f504c9a08ac56a0f00e45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a43-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf9fc6043d808afe1465e8a16202002f74d2bd03f73b357a255c2a7a67effc5a
MD5 9893f32809b71d252b39411187b6b321
BLAKE2b-256 9081a758b0be7e4d053301139231d78014706e2efecf9e683ac16910c349cde6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a43-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1a062fbb0edb466a7e7cf42b0dce50f3cc9f6ac9f46069c2814259bc129af894
MD5 975ce5fcff67b0719c53a0285e9d4bc6
BLAKE2b-256 e1f6f89f0f451208f92b15aac51e7829fb3d41fc1942448b00fe124b4d724b92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a43-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7082555f02d5b1e37846b42da24eeca2fb14deb186e591efefc7bb4118b1eb22
MD5 684987e03fec4369f8f394ab538d9a90
BLAKE2b-256 f46cea79310c5dcea05b9786f3dd469bad2b23edb25811e24da74ee2e040885b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a43-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c1747f9bde5114f1ca38fc475c73cd3857efbaf40ba61626e8fced7072ceca1e
MD5 77d42334ad3464dfc91a22ad47148ce8
BLAKE2b-256 39f41eb51432e8a6edff062cc221d337d5697fbe006dc9fac0f49714d3a8280f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a43-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ba666683183d5872d3475c472e613a71361427b3721ea4769e475318c28d043
MD5 96712750b001548ed76c39d21adcd8bc
BLAKE2b-256 be13ef47523698a3f14b233e64b49c0621f3d1b4e07bbae6238fbcbe8d1bf5b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a43-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bf554350e81a2c4bd7f014d36a419f558fa18bc05f064bb8f489f35fd77b1a4d
MD5 2b7eb516b1ce9225728d248a6090fe67
BLAKE2b-256 3f7366f536241b308781abb62f1f5ecf446a3c7d442987fbc26c8f94ea57dc87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a43-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b966818fd45e270385eb85700249e82760073ae305fee3973f0f88c5b028a639
MD5 9199ac886786e3710313b97e715d4bba
BLAKE2b-256 4869c5470f70840692eb72277fa7e1326de511bfee16a84c3e7ba89c09861977

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a43-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e2737aead5d6c518f3713a0a7c382313c6a9b38096bcaac2f3ea2ce8f8fe634b
MD5 2da8f286b90b563ffeefb17cdf8e922a
BLAKE2b-256 8e4969aac93687fbdfe83f14e497cae16574b2c647a76291b343f929d9bb0b0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a43-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4e54c9837969ac76d05104e94d173e62ab925f9a7449affae466fd774041a67c
MD5 745472d3bf737b3b069005978b2db566
BLAKE2b-256 ac70d7f39e4ba45ffdc9767ccc9fdc7169dfbec26098532c0075d84d4ae5bf07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a43-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 56a964df70bc40651c319ca0bb289719bc213dc38eabced4724d84e6add09d0d
MD5 a72188eed319f33105e9bb3376499942
BLAKE2b-256 e82ebb3e4fdeaafd10e4fb902b8926e0600feabff59c2e714cda649f6fec5d77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a43-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d6b2afce6be7bdbe1bdd251dfffa3f4bb1dfdd79107fe34e17b29fba1acf503
MD5 69865c331308d84eaf6cfb8db0c7b619
BLAKE2b-256 955b8c3739e7179b82d189c286a4cf08a339e1082f112f45089499d0a44dea24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a43-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e2e6dda6301ec470d1cc9558303bc7378a46f62cfa17299f0b0da4097effeb2
MD5 1081c2c68de9083fffcbb4f94530e54e
BLAKE2b-256 44003356ffcd7c6b93d00a8c2c54f6b58a84ea0466be9a47066dd449fbf5f47d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a43-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d2064a5ead82fa333df160ca3bc043b3ff0c2e5e183f196076fbc39c12bcceb3
MD5 45701a03ec978569c7ddc43b40f395a6
BLAKE2b-256 e9457e505b4302d518ee23736ef0e8262699b7c007a6afaa75ebdce6d52ec995

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a43-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7824be25b84e1b5c5e83c1b5ac6ce6f54b2e769420a2181fb2438bb996e37d98
MD5 0d3ec226dc7c32097bb3e1d435c66597
BLAKE2b-256 a516785efb0c9261c3f1825f28599dcd014643a8e59c7bf4e2b6968cd82c961d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a43-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 34affaab3e3500d1e2c912167c3187532548cec315b0ab5522fa61592d889af7
MD5 bfcdc5909a701610a1a1715d9ef081a7
BLAKE2b-256 bd50e37a2da72b4ce85e9f95b47b0d4ccb81c15968128af0182797045b2248c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a43-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2cf8891a49e4c64acd56daa348004ce111996ab86aa2fcbc0d0f63758983a685
MD5 0b90b4237607edb7eba1076a82eb29b8
BLAKE2b-256 cea4bbe9528a3c4d90a2e7eaa6a07ef7d2c59e607b084ce86bd47397bbb98edc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a43-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd99c4a351466a515b9e6df0d0cfc6da6428d2d216bc51a78686befd30b4cb17
MD5 74ecf511ebd7aaff4214a0191b2472a2
BLAKE2b-256 e0e2e61c1e59df761411ca690024bfd522c1e251967fba52279651c670291f33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a43-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd229eeb26120d102a20c9563cbc061718389b93abf65f368c00c523418f7cc0
MD5 a1d0709c358321932baa824e925770e0
BLAKE2b-256 4cd49c52f395b1fbdb84f55f583d591fbd3f61a2108791126fa01b60a15094ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a43-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 dfe0e7165936740f22a82b99177fbecb8aa99436709588cb1cd38fd86c205498
MD5 c8377a72c8bee9f39f5331355560f565
BLAKE2b-256 43ee6bede65503a06042b4e4c2e805dde02010c4adf6772532870669fc759ef0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a43-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45c4c186882bda97b7a83fd877a5f37afe7116538e8c51431b309def3eb93a19
MD5 1558b008a3d108ec21c52001f490122f
BLAKE2b-256 73b5ac88197d4f37a4c35d4eb24252d7dea10bf4ff606bd9615f0a1f999a3a28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a43-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 468d74e816d58302efb365b912bd81601d0b09249d316f407073768f0a4774c0
MD5 c78dd5c23ac59865fa75343ab7f53f2c
BLAKE2b-256 1304bfe30f5617b6384a205b02564a2f59a2f84572322f80027bf0be54bd4302

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a43-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dd1b0de90ffbd27dfc0f4595bd142e4aba12f6abc9742a2fa04ec0b7a30f4ecd
MD5 7211555a7a7413444e4036c03d97050b
BLAKE2b-256 31d205ad74061d54d086b78647492b68965a3d9e8ec0c5c8491f2b1b70c424d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a43-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 efcf1adab88839d234bda0278382bc34756553511a10e91d7cd8868c069f7686
MD5 903ff71acb90444ab52367cb878d0192
BLAKE2b-256 28e6858f2e4f0446d5e4e3ba4b696eee9a71df0087386a3e50974cc03c67d684

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a43-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 44ff58105287c647a669dcd0167a6b1c2fcad84f578171d1259c8f4113c437c4
MD5 1292a1a91bfb302a71f27bc75946c396
BLAKE2b-256 70f338ce76d2ec157254140ea6335b05c08eb5f0a4c7eed3a67c7632fabcbfde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a43-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d008bdc3391064e1c37ad00147b9aaee0dc4bbed685b4221a3710debbcc15306
MD5 92ffb8bd2b472ad03b3344f0df3ccc08
BLAKE2b-256 65cc86831bb91ee23d6f89595eecb43c3cfcedd221bd909d3de700e70e792884

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a43-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96a87d498b58efde209b95a677d8219c5becc82cca24ce137c21dacb5c5db00e
MD5 44abfbfd4f3f124acd543b41a0edb12e
BLAKE2b-256 67c13f60b777243c3adf7228f224ddb389a93373683ef6c30211f156c75039c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a43-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 54bfcd5c1b902efebd14722d971f41a700001e58d0e2f034f321962462d6d555
MD5 10782eb72f1426cc5c74b86a795f3136
BLAKE2b-256 75c6e6442ff32f0c4728d633331e51084d17ab6b16bf926d97b90027f979f64a

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