Skip to main content

Nyx: High-Fidelity Flight Dynamics and Orbit Determination

Blazing fast astrodynamics from mission concept to operations, analysis, and automation

    pip install nyx_space

Flight dynamics operations demand an unforgiving synthesis of computational speed and physical fidelity.

While heritage tools provide the necessary precision for deep space and near-Earth navigation, their monolithic architectures and sluggish sequential processing bottleneck modern Monte Carlo analysis and autonomous operations. Nyx answers this limitation by marrying a high-performance Rust computational engine with a productive Python interface, achieving sub-meter accuracy in high-fidelity scenarios. It is validated and proven to match GMAT and industry-standard commercial astrodynamics suites to sub-meter tolerances.

Requires Python 3.11 or later; works on Linux, Windows, MacOS (Intel and arm64).

High fidelity example

Note: You must swap the paths in this example with data downloaded from the Github repo: https://github.com/nyx-space/nyx/tree/master/data.

import logging

from nyx_space import DragData, ExportCfg, Mass, Spacecraft, SRPData
from nyx_space.anise import Aberration, MetaAlmanac
from nyx_space.anise.analysis import Event
from nyx_space.anise.astro import DataType, Orbit
from nyx_space.anise.constants import CelestialObjects, Frames
from nyx_space.mission_design import (
    AccelModels,
    AtmDensity,
    Drag,
    Dynamics,
    ForceModels,
    GravityFieldConfig,
    IntegratorMethod,
    IntegratorOptions,
    Nrlmsise00Flags,
    PointMasses,
    Propagator,
    SolarPressure,
    SolidTides,
    SpaceWeatherData,
    StaticSpaceWeather,
)
from nyx_space.time import Duration, Epoch


if __name__ == "__main__":
    logging.basicConfig(level=logging.INFO)

    # Load the universe via ANISE's MetaAlmanac (similar to SPICE's meta kernel)
    almanac = (
        MetaAlmanac("../data/02_config/ci_almanac.dhall")
        .process()
        .load("../data/01_planetary/earth_2025_250826_2125_predict.bpc")
    )

    # Acceleration models are independent of the vehicle mass.
    accel_models = AccelModels(
        point_masses=PointMasses(
            celestial_objects=[
                CelestialObjects.EARTH,
                CelestialObjects.MOON,
                CelestialObjects.SUN,
            ],
        ),
        gravity_field=GravityFieldConfig(
            degree=50,
            order=50,
            filepath="../data/01_planetary/EGM2008_to2190_TideFree_sha.gz",
            frame=Frames.EARTH_ITRF93.to_frameuid(),
        ),
        # IMPORTANT: Solid tides are defined in the body fixed frame, so we must initialize the model with these frames.
        solid_tides=SolidTides.earth_moon_system(
            Frames.IAU_EARTH_FRAME, moon_frame=Frames.IAU_MOON_FRAME, almanac=almanac
        ),
    )

    # Define Non-Gravitational Forces: force models depends on the vehicle mass.
    # Configure Solar Radiation Pressure targeting Earth and Moon frames, accounting for light-time aberration
    # because the direction of the photons depend on the position of the sun at time of emission.
    srp = SolarPressure(
        [Frames.EARTH_J2000, Frames.MOON_J2000], almanac, correction=Aberration("LT")
    )
    # Configure atmospheric drag using a standard exponential atmospheric model.
    # Load the Space Weather as provided by CelesTrak: https://celestrak.org/SpaceData/.
    # You should also provide a fallback for propagation that extends further from the
    # data set. This can be specified either as Solar Minimum, Solar Maximum, Solar Average,
    # or a custom number for the F10.7 (in SFU), Ap, and Kp values.
    # Data may be provided either as CSV or in non-archived gunzip (gz) format (decoded on the fly).
    weather = SpaceWeatherData(
        "../data/01_planetary/SpaceWeather-2021-01-01_2026-09-06.csv.gz",
        StaticSpaceWeather.SolarAverage(),
    )
    # NOTE While you must specify the flags for the NRLMSISE00 models, the default ones are typically what you want.
    # Call `help(Nrlmsise00Flag)` for details on available options.
    drag = Drag(
        AtmDensity.NRLMSISE00(weather, Nrlmsise00Flags()),
        almanac.frame_info(Frames.IAU_EARTH_FRAME),
    )

    # Combine accelerations and forces into a unified Dynamics model.
    dynamics = Dynamics(accel_models, force_models=ForceModels(srp, drag))

    # Initialize the Propagator
    # The Propagator encapsulates the dynamics, the math (RungeKutta89), and the universe (almanac).
    # It remains stateless regarding the spacecraft, allowing it to be reused.
    propagator = Propagator(
        dynamics, almanac, IntegratorMethod.RungeKutta89, IntegratorOptions()
    )

    # Define the Spacecraft Initial State
    # We define the starting Keplerian orbital elements.
    eme2k = almanac.frame_info(Frames.EME2000)
    orbit = Orbit.from_keplerian(
        sma_km=6800.0,
        ecc=0.0123,
        inc_deg=45.0,
        raan_deg=60.0,
        aop_deg=75.0,
        ta_deg=90.0,
        epoch=Epoch("2030-12-29 01:02:03 TDB"),
        frame=eme2k,
    )

    # Define the physical characteristics of the spacecraft necessary to compute drag and SRP.
    # Surfaces are in square meters, masses are in kilograms.
    my_sc = Spacecraft(
        orbit,
        Mass(dry_mass_kg=123.0),
        SRPData(area_m2=10.0, coeff_reflectivity=1.2),
        DragData(area_m2=10.0, coeff_drag=2.0),
    )

    # Propagate until a specific orbital event (periapsis).
    # This demonstrates the root-finding capabilities of Nyx to stop exactly at an event,
    # bounded by a maximum duration to prevent infinite searching.
    result = propagator.until_event(
        my_sc, Event.periapsis(), max_duration=Duration("1 day")
    )
    logging.info(
        f"Periapsis found {result.state.orbit.epoch - orbit.epoch} after initial state."
    )

    # Export to SPICE BSP format
    ephem = result.trajectory.to_ephemeris("prop-to-peri", ExportCfg())
    ephem.write_spice_bsp(
        -200_000, "prop_to_peri.bsp", DataType.Type13HermiteUnequalStep
    )

More examples:

The Engine: Determinism and Precision

At its core, Nyx relies on rigorously validated physical models. Propagators support variable-step and fixed-step integrators (such as Runge-Kutta 8(9) and Dormand-Prince 7(8)), handling complex dynamics without wasting CPU cycles.

  • Gravitational Modeling: Supports high-degree and order spherical harmonics (e.g., EGM2008 or any SHADR file from NASA Planetary Data Service) and fully configurable solid tides compatible from the Cislunar systems and to gas giants via configurable Love numbers.
  • Non-Gravitational Forces: Features robust Solar Radiation Pressure (SRP) and atmospheric drag models. Notably, the NRLMSISE-00 atmospheric model is fully compatible with the CelesTrak (Cssi) SpaceWeather data.
  • Time and Frames: Built on top of hifitime and ANISE, Nyx guarantees strict nanosecond precision across 32,768 centuries, avoiding the floating-point inaccuracies common in legacy systems. It fluently handles GPST, ET/TDB, TAI, UTC, and many more.

Orbit Determination: Statistical Rigor

The orbit determination module in Nyx allows estimation of position, velocity, coefficient of reflectivity, coefficient of drag, and ground station location and crust movement. Further enhancements are on the way. The OD capabilities revolve around an Extended Kalman Filter (EKF), supporting both Deviation Tracking and Reference Update variants, coupled with backward smoothing.

  • Measurement Simulation: Generate synthetic radiometric tracking data (Range, Doppler, Angles) across complex ground station networks. The simulator applies stochastic noise models, including white noise and Gauss-Markov bias processes, properly deriving thermal noise from Carrier-to-Noise density (C/N0) rather than artificially inflating velocity noise.
  • Consistency Validation: A filter is useless if its confidence bounds do not reflect reality. Nyx natively implements Normalized Innovation Squared (NIS) and Normalized Estimation Error Squared (NEES) statistical tests, alongside Kolmogorov–Smirnov normality checks, ensuring covariance realism.
  • Interoperability: Seamlessly ingest and export tracking data and trajectories using CCSDS standards (TDM and OEM) or Apache Parquet for high-throughput data pipelines and plotting.

Monte Carlo and Concurrency: Bypassing the GIL

The true bottleneck of Python in flight dynamics is the Global Interpreter Lock (GIL). Nyx circumvents this by delegating heavy computation directly to Rust.

When executing a Monte Carlo dispersion, Nyx utilizes the MvnSpacecraft generator. Instead of naively sampling independent Cartesian coordinates, it computes the Jacobian matrix of the orbital elements, constructs a diagonal covariance matrix, and transforms this into Cartesian space via a Moore-Penrose pseudo-inverse and Singular Value Decomposition (SVD). This preserves the physical correlations of the state, correctly translating Keplerian uncertainty volumes into operational Cartesian bounds.

By calling propagator.many_until_event(...), these dispersed states are propagated in parallel across all available CPU cores, completely bypassing the Python GIL for massive computational throughput.

In a benchmark stress-testing parallel execution, Nyx propagated an ensemble of 5,000 dispersed states for the James Webb Space Telescope across a 6.5-day high-fidelity deep-space trajectory, including gravitational pull from the Earth, Moon, Sun, and Jupiter barycenter, plus solar radiation pressure with Earth and Moon shadow modeling. Nyx completed the full Monte Carlo run in 3 minutes 17 seconds on a 6-core Intel i7-8700K (12 threads) @ 3.70 GHz: this throughput is truly built for rapid, operational stochastic analysis rather than overnight batch jobs.

Missions

Nyx has been used in various capacities on the following missions:

Nyx offers the operational robustness required to land a spacecraft on the Moon, providing FDOs with a toolchain that respects both the laws of physics and the value of engineering time.

License

Nyx Space is provided under the AGPL-3.0 copyleft license.

Under the AGPL-3.0 terms, any user is permitted free and unlimited internal use of the library both for evaluation and operational deployment within an organization. In other words, there is no limitation to use Nyx as the core flight dynamics engine from preliminary design all the way to operations, provided your company maintains full internal control of the software stack and its users. The license's source-disclosure obligations only trigger if Nyx is integrated into a product or network service made accessible (directly or indirectly) to external third parties, e.g. if you build a commercial software package incorporating Nyx and distribute it externally (again, internal distribution does not trigger the AGPL propagation clause).

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

nyx_space-2.5.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (9.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

nyx_space-2.5.3-pp311-pypy311_pp73-manylinux_2_28_i686.whl (9.2 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

nyx_space-2.5.3-cp315-cp315t-manylinux_2_28_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

nyx_space-2.5.3-cp315-cp315t-manylinux_2_28_i686.whl (9.1 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ i686

nyx_space-2.5.3-cp315-cp315-manylinux_2_28_x86_64.whl (9.0 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

nyx_space-2.5.3-cp315-cp315-manylinux_2_28_i686.whl (9.1 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ i686

nyx_space-2.5.3-cp314-cp314t-manylinux_2_28_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

nyx_space-2.5.3-cp314-cp314t-manylinux_2_28_i686.whl (9.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ i686

nyx_space-2.5.3-cp314-cp314-win_amd64.whl (8.4 MB view details)

Uploaded CPython 3.14Windows x86-64

nyx_space-2.5.3-cp314-cp314-win32.whl (7.5 MB view details)

Uploaded CPython 3.14Windows x86

nyx_space-2.5.3-cp314-cp314-manylinux_2_28_x86_64.whl (9.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

nyx_space-2.5.3-cp314-cp314-manylinux_2_28_i686.whl (9.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

nyx_space-2.5.3-cp314-cp314-macosx_11_0_arm64.whl (8.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

nyx_space-2.5.3-cp314-cp314-macosx_10_12_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

nyx_space-2.5.3-cp313-cp313-win_amd64.whl (8.4 MB view details)

Uploaded CPython 3.13Windows x86-64

nyx_space-2.5.3-cp313-cp313-manylinux_2_28_x86_64.whl (9.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

nyx_space-2.5.3-cp313-cp313-manylinux_2_28_i686.whl (9.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

nyx_space-2.5.3-cp313-cp313-macosx_11_0_arm64.whl (8.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

nyx_space-2.5.3-cp313-cp313-macosx_10_12_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

nyx_space-2.5.3-cp312-cp312-win_amd64.whl (8.4 MB view details)

Uploaded CPython 3.12Windows x86-64

nyx_space-2.5.3-cp312-cp312-manylinux_2_28_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

nyx_space-2.5.3-cp312-cp312-manylinux_2_28_i686.whl (9.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

nyx_space-2.5.3-cp312-cp312-macosx_11_0_arm64.whl (8.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

nyx_space-2.5.3-cp312-cp312-macosx_10_12_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

nyx_space-2.5.3-cp311-cp311-win_amd64.whl (8.4 MB view details)

Uploaded CPython 3.11Windows x86-64

nyx_space-2.5.3-cp311-cp311-manylinux_2_28_x86_64.whl (9.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

nyx_space-2.5.3-cp311-cp311-manylinux_2_28_i686.whl (9.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

nyx_space-2.5.3-cp311-cp311-macosx_11_0_arm64.whl (8.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

nyx_space-2.5.3-cp311-cp311-macosx_10_12_x86_64.whl (8.4 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

Details for the file nyx_space-2.5.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: nyx_space-2.5.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 9.0 MB
  • Tags: PyPy, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nyx_space-2.5.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5cefa4a967c154fb4af36162b4a78ea8fe5f6de8d38b44c61fc8a68da792697a
MD5 22af796a0f135385c35871614fa32d27
BLAKE2b-256 7ae02190a24379d0d561098d51bcb825ca3a9ba429754070f634bdc8e4baf505

See more details on using hashes here.

File details

Details for the file nyx_space-2.5.3-pp311-pypy311_pp73-manylinux_2_28_i686.whl.

File metadata

  • Download URL: nyx_space-2.5.3-pp311-pypy311_pp73-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 9.2 MB
  • Tags: PyPy, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nyx_space-2.5.3-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 3f35f14a792316167d13cced7926747df3e80420f94df65b9aa6b60c64047b5e
MD5 c6ef8cc917a797eaf070e3bd23b317bc
BLAKE2b-256 faf9d9c94ca0203e68fa2555b513e6ce984131319145d89a2f19890b10a8da83

See more details on using hashes here.

File details

Details for the file nyx_space-2.5.3-cp315-cp315t-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: nyx_space-2.5.3-cp315-cp315t-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.15t, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nyx_space-2.5.3-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dddaf95f6bd350527ea87e0af9341bd0fba06973759ed90d7708395e66f1da50
MD5 90daf4113fc1c0c7417f0d40a98e0588
BLAKE2b-256 0e035063d58574febce856b1fff089fff1a008f5b667f97aed1a993c411c7309

See more details on using hashes here.

File details

Details for the file nyx_space-2.5.3-cp315-cp315t-manylinux_2_28_i686.whl.

File metadata

  • Download URL: nyx_space-2.5.3-cp315-cp315t-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 3.15t, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nyx_space-2.5.3-cp315-cp315t-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 e1a45bc66ff096f2bf9df19181f98443cd334d4e88957f4f079c4b3fed8adc2c
MD5 2e4baac038c780e3b17942e0cc88c84a
BLAKE2b-256 70cc29bddcbb41f24fcf87b3c9a8cd4ee34dc829cbed5ed76dfd5dc14aee3acf

See more details on using hashes here.

File details

Details for the file nyx_space-2.5.3-cp315-cp315-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: nyx_space-2.5.3-cp315-cp315-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 9.0 MB
  • Tags: CPython 3.15, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nyx_space-2.5.3-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3a45615479047a2807b958633f79ec3325b85858eac9e65560da43eaecb52c2c
MD5 534f04d48c3a2b37a23eaab5f89aa0bd
BLAKE2b-256 2a2a642d709d19a95c52c84e78c4a8140c6da7398ed3e71904aa28571ba0cf4b

See more details on using hashes here.

File details

Details for the file nyx_space-2.5.3-cp315-cp315-manylinux_2_28_i686.whl.

File metadata

  • Download URL: nyx_space-2.5.3-cp315-cp315-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 3.15, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nyx_space-2.5.3-cp315-cp315-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 b3c38db0b5b608b6ea03dc4d83b51c1a7b286a7e2c115d49806192af1523dc7e
MD5 e9847fbcf677e5e60809437079aaed81
BLAKE2b-256 3ec21d48f3ebacc835d383ca35e580d977a660b893be381f8d01ffae49f97c81

See more details on using hashes here.

File details

Details for the file nyx_space-2.5.3-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: nyx_space-2.5.3-cp314-cp314t-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nyx_space-2.5.3-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 58116e16aa22f12ab5dca3a9868e2d19e13343c86c7f80caf97794cfa7fd476c
MD5 7a9dba4a41f102d425dbdd3cc3039b45
BLAKE2b-256 f889231afcb3163b30f56d841d7d0defa50a595ad210bc88596f0fa24d0759a3

See more details on using hashes here.

File details

Details for the file nyx_space-2.5.3-cp314-cp314t-manylinux_2_28_i686.whl.

File metadata

  • Download URL: nyx_space-2.5.3-cp314-cp314t-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nyx_space-2.5.3-cp314-cp314t-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 6d8b90d1d176f03d18f939ff5c4712706a958b50a94f692ca07ca10ec7877228
MD5 e61e404307acebd9c5622f8b745dca72
BLAKE2b-256 2d8e2a3818f53fc9d50c40c1b609ad5db1c79609f5b99864388de5d5a3110a5d

See more details on using hashes here.

File details

Details for the file nyx_space-2.5.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: nyx_space-2.5.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nyx_space-2.5.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 dc54213ccecd04ebbd1bae2941581ca774c18edbd43f54bf359d6188ca790954
MD5 8a29c5b9b0f2f8a6b9175441d3ca8187
BLAKE2b-256 442953b62e215e0bd4b2215f28345420722163a92c9e684ce89a900b16dc4d76

See more details on using hashes here.

File details

Details for the file nyx_space-2.5.3-cp314-cp314-win32.whl.

File metadata

  • Download URL: nyx_space-2.5.3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 7.5 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nyx_space-2.5.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d9e9c253cc11276f091443dd7a0b7b108d878174eb03553fb52413ceed2c8732
MD5 3c373c52765115b5fc466685887ab4b9
BLAKE2b-256 e24e5cf3e79b6f1e024acb8cd389bc2e2aeff2c4bff2b21e405fb28b5b04ef06

See more details on using hashes here.

File details

Details for the file nyx_space-2.5.3-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: nyx_space-2.5.3-cp314-cp314-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 9.0 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nyx_space-2.5.3-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b30586b5d94b8fb84d6577e7c80396b9a63b67cd96f25b58afbc2a2a27d6c41a
MD5 0b056b6838e0a7c0b0009df7b0f9f425
BLAKE2b-256 900ca949d0c312fd267c96cf79a27752e2852b7402037532ceea152b7a87f1a6

See more details on using hashes here.

File details

Details for the file nyx_space-2.5.3-cp314-cp314-manylinux_2_28_i686.whl.

File metadata

  • Download URL: nyx_space-2.5.3-cp314-cp314-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nyx_space-2.5.3-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 fc7c993fcfd95d7678f6bc115a512bb931195285bd935f95ba0ab5ea6eee2d9a
MD5 f56706ca2a0d78502eeb8fd232167e78
BLAKE2b-256 5461bc7e54b8e1e89a112cc4825ce2abfc769b34c4db6e0e08c2939be9fda2fd

See more details on using hashes here.

File details

Details for the file nyx_space-2.5.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: nyx_space-2.5.3-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 8.0 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nyx_space-2.5.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca82430aba184e50098ac1120e9651f21099ae439c95f3ab8e4dba421dd12a11
MD5 57debef7fd857ed301e105874b68b9e7
BLAKE2b-256 6ad564e46106c6eaa2ca2d6b1662e15c46eb0da9d2174a5432b62814a0a5cd7c

See more details on using hashes here.

File details

Details for the file nyx_space-2.5.3-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: nyx_space-2.5.3-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nyx_space-2.5.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 23499d0ce64c00eb37d01505c2c9c79734ee30cbf219ad5e2e68a9cb0e5504df
MD5 519f04f61325c6eff7bd38aaa209fa2d
BLAKE2b-256 69b23c0a5073a112ef2dbb780feb37fb11381755703a93bad8517d03c9a140ba

See more details on using hashes here.

File details

Details for the file nyx_space-2.5.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: nyx_space-2.5.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nyx_space-2.5.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1457870972271741a6e6d5f2183994908d94fe208505ae2e1a2979a99a53fb40
MD5 767520e1cd609624505d16edfdee55ae
BLAKE2b-256 458d5f68164c0f5289b27904ca07292f3b1775e40d3eea028ae4833fa7f4435b

See more details on using hashes here.

File details

Details for the file nyx_space-2.5.3-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: nyx_space-2.5.3-cp313-cp313-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 9.0 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nyx_space-2.5.3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 32307b9db59bb2b86014ff91f506719288eedbac7ef63ebb21222480b61bd1f9
MD5 cfa2b812ff115f574b6d123a5dfff742
BLAKE2b-256 ac48e30393380a3197dc9e7ab0c47e1123a7ded54be464103a7671147f6561c3

See more details on using hashes here.

File details

Details for the file nyx_space-2.5.3-cp313-cp313-manylinux_2_28_i686.whl.

File metadata

  • Download URL: nyx_space-2.5.3-cp313-cp313-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nyx_space-2.5.3-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 859ea741ab14ba41b658c38ac00e5595d3ca0210a0d561d79a4ddf496bc7e1b1
MD5 962a23469dfeadc6eee69b8010b10156
BLAKE2b-256 c8d42b2dd751cf9d58668c1728e91b809a447621238fa029f6e08d6994027868

See more details on using hashes here.

File details

Details for the file nyx_space-2.5.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: nyx_space-2.5.3-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 8.0 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nyx_space-2.5.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29cf932b9b1acdafc019f9bef7271eac041e499c8d481abbc3af0b479aeb3888
MD5 9cf8d5a762b3eea2a6182d8aade74a79
BLAKE2b-256 6b9e68a1aaf1c05faa00b61b5b1d13e1529726926dc30b54a37ed57339d13ea8

See more details on using hashes here.

File details

Details for the file nyx_space-2.5.3-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: nyx_space-2.5.3-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nyx_space-2.5.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9363b63d77c219bfe34d74882d93fca0a8a63c7ee98704c3cfe3b8692bc0a4a1
MD5 a8208d288039588a8552b9bd6e751a0e
BLAKE2b-256 9b84df8d360cca52766c273fa2d9bcc40b90f2c7bbcaf54a3eb9089f82b20762

See more details on using hashes here.

File details

Details for the file nyx_space-2.5.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: nyx_space-2.5.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nyx_space-2.5.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 43ff0f2fba32edb591fb6338db8d6c0f5dfbbd73be53defece1c8ce4e8c61e0d
MD5 b5e989bd61be44df34c11ed9d8689934
BLAKE2b-256 b948be296307f3b1a95618d830710f418bb6ab5d278627aed3897fce65192fb4

See more details on using hashes here.

File details

Details for the file nyx_space-2.5.3-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: nyx_space-2.5.3-cp312-cp312-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nyx_space-2.5.3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8e5efc9b87417bbafeaf95b228a43c4f7d216d8d53302682ecee2ef98bf6b89f
MD5 524a7bd4554df4f3cd981aad47dae1f2
BLAKE2b-256 b881bea35241a41699727f00b25e0b090c4e9ab745c4f0928ae469f52825f644

See more details on using hashes here.

File details

Details for the file nyx_space-2.5.3-cp312-cp312-manylinux_2_28_i686.whl.

File metadata

  • Download URL: nyx_space-2.5.3-cp312-cp312-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nyx_space-2.5.3-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 1195ab9d29d9a64d503e1c817cd2e4ffb72b630a2ef0fe96976dcf9ddb96d952
MD5 bf1dfd5b408ab7895bd027e226dc65dc
BLAKE2b-256 ec3dac06488b86508f5f1d6e344d29dfa7186717907205177a51286425acd8b9

See more details on using hashes here.

File details

Details for the file nyx_space-2.5.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: nyx_space-2.5.3-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 8.0 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nyx_space-2.5.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e51a96e11a39e7c3912cb9c3277c196aaa3c79831a1ea50ab57a3a1e2b603115
MD5 273947e62a924a36b7af9f62e0d3c112
BLAKE2b-256 e8910ebaf75afd0bcc440b0562aa75539206f0e13352a675de439385ceaf02e3

See more details on using hashes here.

File details

Details for the file nyx_space-2.5.3-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: nyx_space-2.5.3-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nyx_space-2.5.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f7c23528f267ccdb7052b011c381046ce3025a1377b5d6e16dec5bf644d9585d
MD5 12ed5d717559751b46baa08b17d5349c
BLAKE2b-256 390e16935b187dbb6eeaf00a89cac85e54c2f4b7ee272bcd06f05de172597552

See more details on using hashes here.

File details

Details for the file nyx_space-2.5.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: nyx_space-2.5.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nyx_space-2.5.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7a9735fe085c1fcffddec3b6bcb230e8815569cb09a028ce40b4fe3d292df9cb
MD5 5d3376995398d702ac42f8736b230f3c
BLAKE2b-256 4c003801830e3f0c36f031fd99c04b0db51d58c926fe68da5ff083e593dc6bdc

See more details on using hashes here.

File details

Details for the file nyx_space-2.5.3-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: nyx_space-2.5.3-cp311-cp311-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 9.0 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nyx_space-2.5.3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 70462aad2d8f15675c619493bc83a7e3ddd6f96d30de2dd2942e0dd676c18239
MD5 cecc6afd18b5363d46ff542a4addb212
BLAKE2b-256 f2f0d944bd43d8d28098777a156643490545acbbc861b744fc303deef3ee943e

See more details on using hashes here.

File details

Details for the file nyx_space-2.5.3-cp311-cp311-manylinux_2_28_i686.whl.

File metadata

  • Download URL: nyx_space-2.5.3-cp311-cp311-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nyx_space-2.5.3-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 8279e6dbd10aa5616506019be788d654a5261ad144c7f75cf01cd04c52ca6dbe
MD5 5b20e6ed6492679d1cf398aa80b41fcb
BLAKE2b-256 a1d0b9ef5481a0b9a76b0c1b2964236d3ba94e6e3680b8366e240e293720ac8b

See more details on using hashes here.

File details

Details for the file nyx_space-2.5.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: nyx_space-2.5.3-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 8.0 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nyx_space-2.5.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4abbb08c467a83e7928185d8181a988441ae758cd995d3465ea63a94811da02
MD5 a6ec0d4ffffb3bba159979b90d701826
BLAKE2b-256 5dd81cbaf54645a2d8050d58e354bd761825d359494765a5f700cb29f1f7f8c5

See more details on using hashes here.

File details

Details for the file nyx_space-2.5.3-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: nyx_space-2.5.3-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.8 {"installer":{"name":"uv","version":"0.12.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for nyx_space-2.5.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5a9a12d1f696dfc1460d8043b4d625f15d151dde17833d5b2415183dd4d2cbba
MD5 09fbf95e420dfc234f2840d281500b5a
BLAKE2b-256 547723d120325b06ca353eb3c8f225fee882c8916d9f9e22f9e6ea89e78fed21

See more details on using hashes here.

Release history Release notifications | RSS feed

2.6.0

29 files

This release

2.5.3 This release

29 files

2.5.2

29 files

2.5.1

29 files

2.5.0

29 files

2.4.2

29 files

2.4.1

34 files

2.4.0

20 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page