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.0a41.tar.gz (687.5 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.0a41-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.0a41-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

lox_space-0.1.0a41-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.0a41-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

lox_space-0.1.0a41-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.0a41-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

lox_space-0.1.0a41-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.0a41-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

File metadata

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

File hashes

Hashes for lox_space-0.1.0a41.tar.gz
Algorithm Hash digest
SHA256 2641da91e81bb7e0a3e46d05108c9c827d80f8150a817008267d798afb9ccf0a
MD5 232b3afea53e5f05fdddaa8e811ec2c5
BLAKE2b-256 0b6afe357468b1feff15922a5e501271fce64da43479521090197ea650fbbb86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a41-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7402a44e9ab1d1420469ec3a84bd27b71aeff8664b0bfe536d5432e37fa3038
MD5 d7b2469c4af7167b600ef928bd5c83db
BLAKE2b-256 87292aee387c503ac677f3bbe2b8041514b8526fd9b973f05a0103b44c56ba0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a41-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2cb03753d7e8a9d27fb3e1b0a86c722920ef00bd7edea4986b9024109cbc06b3
MD5 8db0f3563d7b44a2c6611a9839913186
BLAKE2b-256 1f6001f3ba44c77346057cd25f12aa122695a8f3e883f57a94d99901007ae888

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a41-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2a7c4e8004774f92ab7662f8bc2c32b75084be267e43863ccf182cb632cceef2
MD5 242fc6c3bb1602c1207a654e8d65e1a6
BLAKE2b-256 70ed203975bb7ac302c10fe28207996dc7a4e2574a099e1ecca1dd3e60ca3e56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a41-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ab3b940f9e2dde6ecc58d93ad04af4f5b829502475c61427ebfd43e7cf3eff3
MD5 de34a14337e7efb946ea23546eeb7ef0
BLAKE2b-256 c0bc9a9c4cd51239a8493fa4a2b9dc52de8ce771bc70bc0181cd70a8a9f6681b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a41-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e35f0ee49ab98edb225e2729a33ace66c1c9c550319def000877d15dd98dbc45
MD5 7c3072c6a7dd03c5dcc10b2415b04dc6
BLAKE2b-256 cd0d8ad0a379284c4ca349075486f6218af6ba4838fb44f0122238a403f1a7b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a41-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 fb2d001c95c106d0c52bed3f8dc30828d4f464f8dc42fc17981420f7a9e0a227
MD5 6c12ce470a1ea592513df85fc472518a
BLAKE2b-256 b8778b7b5864a3398ceeaa32e781314940cb0d218b8b3866c6737a7bf160d4f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a41-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a90f3914680238a198c01082de2fa32f0269ae93d780dc31b0d8a80830bc982
MD5 e68a9ccb710c2219b26c6f91ee6bcb6e
BLAKE2b-256 5af888f1e82d04f0bd703f9167caef9da9a561bfa65ecb833060b030510fcf95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a41-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c48aab7949c9cc88644b76b6b830285a006e2aa93263cfb572579fc39c0c0aac
MD5 3f509dbbf3889b8178e121b73f95752a
BLAKE2b-256 e4b8a332b09455dd9b249ba4f250004e5513771037ee1b866883893d65be32e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a41-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3bde6d96cad815d3609f422b9055ea3fc23d23a5786966ee7e8711dadc666bc8
MD5 fe2851cffdede4f9ff80f1ae872b47ab
BLAKE2b-256 2d409f6310e96acfaf896571f3bd766fbaedf38c6ed63be901b34945d8ce4d68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a41-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f11964d0687c23430bda531e79391f5fa62b2192ed5fe0635b54e9a775e47d5b
MD5 cbaf57c7d30c41a3456c19fbd0f5587a
BLAKE2b-256 f752e8376b383208bae894286f56ebf8eb1319aa88275ea767c5d15500de79c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a41-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e5f2ed2f3fc7d1ac1a95552b7749d6d6a36a1b76683a0604cd32bf34335d759f
MD5 fc35f83b0d74bb797dd368f2c5cb9fd1
BLAKE2b-256 2e44ffef293e6bc24f9a5bb503d3cced1b8499c1c7176a4b9bf76af3b69d86f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a41-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8bcdd743ff4b03d74ddc6e1cefa603ca2b0e3b30f89c2fef0c1a459e9df7bd4b
MD5 1c948a6c326e6db8e6a18ec6518ca00a
BLAKE2b-256 5fdcb7a9a785e81425beec736f92b97e9dabcdd9b28a35ee17b0d3a657e17c61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a41-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 269eec31d315d3a44e98ae951736c884a9baea3248db3d96d39b1604a3668cf9
MD5 ebebde6de37c3913d1eea1d1e0ffe62a
BLAKE2b-256 cc6109aa576550e61e63e233b619a81bebcadd553881ecf49f3463daa50ba9ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a41-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2694cd7ae703da5c23782f407f129db24eec6bfa66695ba3b4b72c94fcd19007
MD5 36ffd8014125b8742683ec4286cf2710
BLAKE2b-256 03c9483bdc6fe92f09a7cbd5369576f7ee2d738cb4716903e43b482de7df10be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a41-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 97b541ab4e65510af521f39bb96c871ab12e0c81f639a84750a8d5dc38867de7
MD5 d7ac6e1a819cd792c16dcfd0d92a79b7
BLAKE2b-256 b1aff6761efed59973f9d991ee6cf0def560539f73b9cc030fa74662a825c23e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a41-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c872944b5de07a5a2334fbdadda07fc96a6b14926c2438b38bb570849aa6d3f4
MD5 8403f6d194f05ffb9ba5c12b83992129
BLAKE2b-256 22a85b60ec79b1b91ec2b49d5a34defe8d7bc0444e9b09e2f3c2339b31720c4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a41-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 25faab6542673b3468e860b215778cc6cd681a9191411837919b9ac2e704516a
MD5 b058a258b870f74fa470a1352e88fe7c
BLAKE2b-256 191f73300e0e152ca784cd012ad0e4853d7057e9232950e5c92c8bd366f55f7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a41-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 10a2d6ec71b894d75145c7ed3e1446a1b6b81aeabaa53f50096fcc5ec95a457f
MD5 4ff44b91e58cba403df793f28317a7ff
BLAKE2b-256 6f68f377d3e1cdf6881289c7213ec3be32c87e38ddfa7166576308e0cd5ac7c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a41-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e593983368b9625ab88b7e10652922574dc45084053d2d3ea61214013d784ac0
MD5 f66806c46b8c4d9f5ced42191329677c
BLAKE2b-256 b5cef26eebf3d37775474e093f9483d6c5d06c674cdc0353edb80a96939ac4f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a41-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7ec603089a4247fee63ebce3574ca9998b2fea10c0355ef1644c9f5ea95eeea8
MD5 c4109d724bdcf868e6894e40594a98fc
BLAKE2b-256 3b29e22adc2372c3a954b2986843d1e1f15d8c8f4bd94c2452bec5a2efabf2f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a41-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 033373c2d795ee3af9639f2f69eaf8b3295e33b3f454f6fa90942dc8c8adc42e
MD5 dbff0aa2344c1d147b4389ff4ed2141a
BLAKE2b-256 87b59de24f1605a728a862cc21dd6e4da030e358a323d17e9deece6298bd88a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a41-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a9a563d0a781c12e677a569bc726f788839a130574d981ac39d26ea6df9191d0
MD5 9acb0d46258d889f4b51b35482d2beaf
BLAKE2b-256 e5c5180456874015e46e7f31d5aa9aa62b424f43a65f6c4785a7989eb86c2a28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a41-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66a6485307f929434fb04d8b56d99827f16237dcf25820cc420fc89ddc1e27b8
MD5 ea66463f32cc226ed7fecab36d028899
BLAKE2b-256 bb9f048abc43180b1c6e184b44b662713a3ae8f79c1495808dc27dc3ace5f526

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a41-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0dd6cf3ad33d4622407e09199715e7a955b04be3bd0e044ae35d67980768e6e0
MD5 dd1a10cd3a9d71c3212075b24f9f02d8
BLAKE2b-256 4ef3521802e55537c673f4756a967c1093b85a309e6595c50c83e5ca05d9728a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a41-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 df67323f23f1912467d37558fdac65e089de822683482bbb0592bd6493b78752
MD5 1d8b6a4caadd82e0799a8962d18eeb16
BLAKE2b-256 dab22a240f8378cb4b91ab736411c5f3ac4c89bb194e4c3c8f6aed40dff7f798

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a41-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21fecc109047bdff2ac9ff975909193b97ea2530e77c6b03c1632b2352d84e0c
MD5 bd38112e2eddd1009a70fcb3ccded83b
BLAKE2b-256 3ee1aa1177049f6a45d0cdf67f6d78cfb3a37ee10c93beda393bdd70c9c4f2e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a41-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 df9ac028f6b883c11d4a7267c55c8b063f5caad9bfed214e88f375e0b9ec474d
MD5 32b14fad7b097da88a890feeee120700
BLAKE2b-256 fe68898538ddbc402c117860b7fc23b350827c33fc82604a5fa49577f5444db4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a41-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3fd5ecff7552b0b5b6c1750b9b52119d0749349faafc582e4f91c0601df4e734
MD5 fbb3c7ef5caba85c014c3f1fe19a11a2
BLAKE2b-256 1b969af48e46014ce07bf7f6aa27e00689ee1903e23937e4c469b1a4a42c3caa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a41-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 04c4af5c3ee3b325e1c2bae4208e8f39b9d0b1ad9229595951d61c1a7a4d222d
MD5 6698d64d6c8029077f9a6cd8534276ee
BLAKE2b-256 99162da5fe2e58d4c649308c25cb721da005de14e3aac9f8fed3a9334f66178c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lox_space-0.1.0a41-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e8ab81a3909f87f61d8e3d757850d23bd736d3c243d2295f3c5294d2d31c0d01
MD5 bdf06d66ed4a033125f8c20df7ef5eee
BLAKE2b-256 44e990a4f7c4e0e6564ab70f5558b46b895c43f7bc61ad7b032616c2a3cc2741

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