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.0a38.tar.gz (641.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.0a38-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

lox_space-0.1.0a38-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.0a38-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.0a38-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.0a38-cp314-cp314-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

lox_space-0.1.0a38-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

lox_space-0.1.0a38-cp314-cp314-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

lox_space-0.1.0a38-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

lox_space-0.1.0a38-cp313-cp313-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

lox_space-0.1.0a38-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

lox_space-0.1.0a38-cp312-cp312-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

lox_space-0.1.0a38-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

lox_space-0.1.0a38-cp311-cp311-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for lox_space-0.1.0a38.tar.gz
Algorithm Hash digest
SHA256 ad9a137fb4e6aade1a77ac6a7ad1080aa7ccb46aeb84252575807dafac27caf9
MD5 dd514798bfd0d536b15ab5ed2f337f66
BLAKE2b-256 eed8571c23b9113ae058fed270b0281199e8d02e3f10bb5a5c983eca8ae5e152

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a38-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe54f81a645e1b805ff09faf031ba1049ea5361080e9bd237860c72533e4da9c
MD5 a4e4b8be27d2bdcd8b1b1f4dc7e592ba
BLAKE2b-256 dfb5d985081d8026ed1d27b4f8f74ee9a7f9e3dc5cff3d96aa0ff42aeacbf98f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a38-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e5d3d3c089a9002b5d0215cde8a1b8a2b76c1c45bdedbff4e211ee43ae28d390
MD5 bac0ababefa4838dfbf34b3fcf2c36bc
BLAKE2b-256 c82ec4dafab904f25a321860f63e6ec5281b76bcbfa8a66d7019df417c696300

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a38-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 157fa44251bd2cde8453ea1674fe8abc70178164dc7d296153c5907cb6427385
MD5 0ce995a1160ef5b0eab5cfd1a068192b
BLAKE2b-256 e3f978f4cbcdce6c7d829d5c0f0a2fade64960d99caa708a03f2a3d42e441f85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a38-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a4678d0b9b9e0f28973a8beb87813ea2de9e1b85b8ef2a2ff5b56d0e75b8759b
MD5 57f86d4902da50b2366dd509f97a0c0b
BLAKE2b-256 5c33f29a0faa6e1d1d40a6d3a4519768684d8b1424f219fca8c83d6a55c18c94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a38-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 244e2042c7f90cf90fc8ee4a93507abe8116c5ad6dd0da5dcebc7114fb94e7ba
MD5 0e860bb2713bf610c31fa2bd57461f86
BLAKE2b-256 9cbb7e651d00f8094adfde89c4e293761375f26e9858f06c8eab22b20a01fd9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a38-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 65361fedb10d4d3a63c820bd29e4d0846835d8992a73f91a11e64c3eb84f4aaf
MD5 8e74cea53a80f4a6ed71aea3bb783e25
BLAKE2b-256 6ed7400b3c3549c6e6f619708719c2e47789ea7adb17edb041b6174283b7c0ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a38-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 890901f2c0a80895d078233eb82007d329659ee5080183b23fd76da9d7b4c5fb
MD5 1bc2a820e607c7102521eff1f6624087
BLAKE2b-256 09e0d21fa39bf41f1237b5d0a2e2f5c064aa67f29cd9f49c0f6dd4b6d9e3eda5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a38-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ad56cfcc63d2dac1e865056ec6aea7c0a799abd0caf64da4a39bc354dc78b009
MD5 50b9befa020a8b487a2e9b460cb8c754
BLAKE2b-256 32dc5a35e33992432f652cf4dd1884a9187b94e34cc7664a68b8e4fc5abafff3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a38-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 94fb485efc429638e808a12410af3bd4d2e6e1b26cc124a0c30e54d68368a285
MD5 87dcc5fe7778350ec49167d37a84be03
BLAKE2b-256 7a7452f6adcc07d5473c4f5378b8cb62a83fadac72f6b4c1a3dfe93372748fb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a38-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb2266888fb5a66e5435fc594f1ed5939033a09efbb9b30a9c858ce685f3a9a8
MD5 71835acd975055ea875069bca8ddd956
BLAKE2b-256 7a4b786956143a9c39e49a5a428a4b7a54bed08d0813ce12c310c2911e2bd710

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a38-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6363b6df80b170aa5de8642d143d64816a0d9f071f42c41c689432c84daec78c
MD5 207e856fe8b5768b97edefc001da50ba
BLAKE2b-256 f5cab4123513ae6168fc87891dfec2dca050ed752b25751b551bcbf7c7b70c2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a38-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6bdf1727096a92d0d05ac9dea39596e7983fc42bab21a3727a0ad9c10a740724
MD5 2df01f28f9b3778727d2beaeca933af9
BLAKE2b-256 bdfed8c5363b9d9da38f22441069729bbe8ad95992fe8a3c5f4e922bb808b88d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a38-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4d685db41258306b02407f7e2a9afc52224fc7d393b173228ef834a4de7ecf17
MD5 3c875fdba313f180ce79ff52f6094a07
BLAKE2b-256 4ff676e3e0b3aeb2d9429be04f371576a014adf826285c2b009c7eaff21c189b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a38-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e59f1fb2c4a8466fe00448637cf1e2c208d35630af8faf3f1f70ef20a1e807be
MD5 5d1ef0c346885373a397f698b1ae6e92
BLAKE2b-256 136a82291b81fa4577de803a5e80a296b06d7a63f63038d249f1b172d347b1a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a38-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 81c04ac4c86b3770091a1914619a60f6910efe9af0138e5b8f42cc676b617673
MD5 a65d8f631dccecf7ccaea695a8fc531d
BLAKE2b-256 9377e2cb02a78aa24ece207db33873df9a44ec73e71b60b0be0ce42d7efb7758

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a38-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 82d91c1e82027b4b093eb153b0c44ce090a0417349edf1857ea3fba127aec757
MD5 c2a6d988adb92afb48a58d91e2a1fe80
BLAKE2b-256 146fc81a5db849f014dc2103328b5475211bcb865d463095fb4ee8def64dd20b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a38-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d50a456e8a848104f7bb1e41d16f9aff75ae5de54b0aada14e08d68df3460c09
MD5 3038ff581e93da931806d897a0979b1e
BLAKE2b-256 781940bae3de7df5459c7d415e99b2f4c1a460d0eb65474ad466ef38ac1c4622

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a38-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3e730c53c58d6c239c69b3351a014c17f59b3ea0aa07e6d9b41ed834ca25ab32
MD5 3c20e54a7561093bce8b6468b1f525da
BLAKE2b-256 e6e3896b8f8fc4c5d29015e1d32e9de0ee04e4334b803be8655e4d8a092d4cc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a38-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 eb7d66485fbfb3f4d970db46bf7da35f49aaae5a9dbf3fde19ec30b7f2a1f932
MD5 38caa0b1ce38ff89ff0ee991227dc247
BLAKE2b-256 342deee0ab014fe11f1264d069ff0b491f55d96968bbefe783807ab8a7e219e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a38-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 24ac7e407a99cf880a61321787e6dfd4f674d61c06f6c2e71187b8ad0afdb17d
MD5 7f776c1793f59580be18a3f97c8bd6af
BLAKE2b-256 9bc94db3d45f5218caeac5000508b14427fc8332e7b1446ec2276fdaa3e956b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a38-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fcfeac3a290488165e6966d61e4c1a83ae8e68825cc9b8a4d589c7314bc69015
MD5 31d5d0780f8016c6c223e57b40641e7e
BLAKE2b-256 cc15d30ab83e187c084167c3b7e5abd9dffaca0737ebc36403d9f3b39bc40f20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a38-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 910fcb4150897add17dc9879470b8231292844c8659817a14c4bc685e7ce4254
MD5 f80fd0d7be2a7c57c527f3c8cd59dc49
BLAKE2b-256 8e3d2f55010864ec07d53a5abe3ebbf8a13237f4084d1da3654ed20608f7bcfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a38-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 539579eec43a87eebb5a81efc0f0a9640d208469ee7fe7266fef76e7ef72a759
MD5 d597cc7e898cd26b79dc1696e24634f7
BLAKE2b-256 a56d64c05b31f65fa471b52eac12e70b9e21881383c5b7ffef9b51a27cbb180c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a38-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ffb1ce6a2fc7e32259524b114d1d8229400134d7ac5f3ee2e116426141c73e5c
MD5 fb694fe048ee05c1eb2e2addc7f2ecd6
BLAKE2b-256 b1eb64fc361bca93d0eb3471a02ba4c9c2ed7f3b5cf508150f241ec8593c1fa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a38-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f8c15bf7cdd5cb8763654296d455691ddf387291110dce7e7a5798aeea685cd4
MD5 2155ded0597a362b268c7359a1e840f3
BLAKE2b-256 6880f1370912354dba0a71692d1f4904aaa80b9d9429cff0bc89719b4838de50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a38-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b5012d990cc8827c0d4b702e16e57e5a2847e179843c598ab48c1f528b6a9e1
MD5 5b79f0a21389809df2fcbac4d5d6c776
BLAKE2b-256 a18818a2633423b690785e34b1f097d4035be5ed9f671d86416e2d18446f9337

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a38-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3867cc9bc084d0ee75d661465832fbe2bfb8dc544f784b0df91fea20550ff5d9
MD5 c80243f2c452141a298af3da14309a7b
BLAKE2b-256 707ecd84237f25ef2927c9c594140d5dd2afe364c401bca10dc482d4477e865d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a38-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 57dd947967965808cb67826e990122c007369e84f143fc832082ca5e6840d09d
MD5 a5e51b6e1e07d03f491123fd5f5eacf2
BLAKE2b-256 5985da14f8cfc34d06d30b0accfb72b227ac57f2934717a41147f638626a9ef4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a38-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5fb26beb8eac85de914d6b48276fb9e7b7bc30388e74c0c5ec08850834901aa1
MD5 b126599d2413cd98e6e02149bf8e85e1
BLAKE2b-256 97cfc9766e820a413ad25aaefd0ecb0885bb118fd0871607a68feff784b8649e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a38-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eb3a55aa4200abfde07fbfd00fad08a8120da1f8651a0b3ec90a29d5b40ace6a
MD5 170b6a28a29fe19d85f53801045217c1
BLAKE2b-256 5d23d29b4381ab4f4823700f1a5e080b84a8b1d8265da2f048f6af3ac1f64b43

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