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.2-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.2-pp311-pypy311_pp73-manylinux_2_28_i686.whl (9.2 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

nyx_space-2.5.2-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.2-cp315-cp315t-manylinux_2_28_i686.whl (9.1 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ i686

nyx_space-2.5.2-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.2-cp315-cp315-manylinux_2_28_i686.whl (9.1 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ i686

nyx_space-2.5.2-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.2-cp314-cp314t-manylinux_2_28_i686.whl (9.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ i686

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

nyx_space-2.5.2-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.2-cp314-cp314-manylinux_2_28_i686.whl (9.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.14macOS 11.0+ ARM64

nyx_space-2.5.2-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.2-cp313-cp313-win_amd64.whl (8.4 MB view details)

Uploaded CPython 3.13Windows x86-64

nyx_space-2.5.2-cp313-cp313-manylinux_2_28_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

nyx_space-2.5.2-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.2-cp312-cp312-win_amd64.whl (8.4 MB view details)

Uploaded CPython 3.12Windows x86-64

nyx_space-2.5.2-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.2-cp312-cp312-manylinux_2_28_i686.whl (9.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

nyx_space-2.5.2-cp312-cp312-macosx_10_12_x86_64.whl (8.4 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

nyx_space-2.5.2-cp311-cp311-manylinux_2_28_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

nyx_space-2.5.2-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.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: nyx_space-2.5.2-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.7 {"installer":{"name":"uv","version":"0.12.7","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.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c303b37290e5798b7f2ce866bada7166f7f52e4329917f420404b61291d24c83
MD5 c7f4a7930c691e7e5fd09869fceab0b0
BLAKE2b-256 786b26318ac82e63ffdb67e099a70e77651fc8104fb0926a4832cb01c6d835be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.2-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.7 {"installer":{"name":"uv","version":"0.12.7","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.2-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 1a36cd97de59d1bf071a672b1c068829c6de59826238e93bf96177fa29756652
MD5 c692348339f6b6a8aa45b7db225c96a6
BLAKE2b-256 90b79cc60e6a3fe30de44b0bb427f6c962443d6081682595f87f06a1b9026e48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.2-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.7 {"installer":{"name":"uv","version":"0.12.7","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.2-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d1727b96a3e5e53138d66e687cdd45636485002e734cd2c3d07826e3b6ab9aec
MD5 8a35b3a47a3a924ede51e35e4e967a46
BLAKE2b-256 d34f3e1c543716c41299314a3048872839a93735f4a45464f95e3225de514eb1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.2-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.7 {"installer":{"name":"uv","version":"0.12.7","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.2-cp315-cp315t-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 b1bfc0b6a284e0077563dd57d998b4d48c38b9054f383555e72669cf2a422cd8
MD5 256aa147bf96ae286208e50db453a446
BLAKE2b-256 ba76e0261775b5dbc53ea17939d2ae5386b8b20b899e1e568ac446c5b925bbb0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.2-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.7 {"installer":{"name":"uv","version":"0.12.7","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.2-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3bf108fa7174c2a8679800c29ec0c52ec4a0442d14f614acff3abf134d0561b8
MD5 010437151a97905b990ef123bb2a6997
BLAKE2b-256 b74c31aa7176ec890ca67758d77a82bc7f60f6ccf1cd7ce463b70ff73a8e1575

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.2-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.7 {"installer":{"name":"uv","version":"0.12.7","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.2-cp315-cp315-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 c5012fb71c49f02ad33019d16063b79308de7ebf2f364509e08189c9ac8064a0
MD5 1fc9993a590ba0a1ca33bf6a6bfce2bd
BLAKE2b-256 7220e17726d6533263ed704d33c00d24f3223e1d52b70297e5eef61e850ff600

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.2-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.7 {"installer":{"name":"uv","version":"0.12.7","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.2-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3c9bb25435f3f7cb62f8e5ef6b370ae09b10afd38249fb5c1ce86b7e39e2bd92
MD5 32b7f5714a375ad88e62d55006ec3dba
BLAKE2b-256 9f7616d22224693f9951f8843eee543953ce43929af6e7010afe32630d2cb0bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.2-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.7 {"installer":{"name":"uv","version":"0.12.7","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.2-cp314-cp314t-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 97778bc9783bb32fa44fbfa1266a44fdbb84f9b953dd3d39cade847f19c284aa
MD5 0694c0aa213da5beb116787e70139347
BLAKE2b-256 6fb6e8ad1ab7c319b4f952ebf47df4ef8cd2cc937201a53a0043379743120d58

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.2-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.7 {"installer":{"name":"uv","version":"0.12.7","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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b92815328096245c3a89f8f7c406ca3437a5fd3f793d2c12ad7b6af98419a6a0
MD5 bb35792c52b1d5f5e08f4cff3aebece9
BLAKE2b-256 efdffd30f141ea39b49e20f3a8f2f9d8a5b5aec9780962c7f20a65121d719fd4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.2-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.7 {"installer":{"name":"uv","version":"0.12.7","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.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9d24d666bb5a4a02a69419fe12b16874d69c0c13e7369f8261618d529abca694
MD5 50661f5661c7bed50d07c0124106b12f
BLAKE2b-256 aedfd31f4c6635151f46283c910cd5ca613eaedffa148ae364df646b01a4f4d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.2-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.7 {"installer":{"name":"uv","version":"0.12.7","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.2-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1f9ab57c2207780b17ba65af6189cd85ddaa53f7bea63780cf4509bb128126db
MD5 992f2a0daf3c9b02aac1f334fd84a8f9
BLAKE2b-256 79d5c6706f1f482726bb4c4c297d6495c167e60d19949181fe98c7bddb89f987

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.2-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.7 {"installer":{"name":"uv","version":"0.12.7","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.2-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 5c4064dcf71655649e4ec4879eaf9df229f50b72982a0a9251b4a7fdd6d7e7fc
MD5 e53390c7df6163b357ea2463c4da5472
BLAKE2b-256 dc0d8e35968a88efc237c7d600bf20723d850f2d5275cfd4c9e9f16f7b67ad2e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.2-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.7 {"installer":{"name":"uv","version":"0.12.7","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.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c37cc1a8b546b246b6c50e4baa2fc8eceb73dfdd726e5a419cff46927c099461
MD5 c0934cb27e2881c5c9fcff522bba82a4
BLAKE2b-256 36f2f0c0cf9533b03d4c1458ef6e5a5846a36583a545ee855e14f2a515559600

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.2-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.7 {"installer":{"name":"uv","version":"0.12.7","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.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 211a421d203cd50ac76c9d30d1d70839ecd73da1844b7786fefe2b044b079f5c
MD5 9f33c8a2adba7d92f9dc4bf323030c00
BLAKE2b-256 5cc77a8931ba2707d44f0aa4be9f1db02efba201d11418d22a0d121658aaa06c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.2-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.7 {"installer":{"name":"uv","version":"0.12.7","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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c2d2a62a012c4ac12fc1a976620a197e767687cc314f99b093b6ed77276ace82
MD5 e7f2374d23df3d8b616fba617a178876
BLAKE2b-256 9902805ed060644fd51bc4e6f2b83af7e9d5d66d0ff303fd011b91454d053ae0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.2-cp313-cp313-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 91ce6d66b9af8c002f5ea8cb978fc7364077fbf6f702d53b5be7c0243d5c6351
MD5 0bea623030ea5cbc1dad663c7ea96699
BLAKE2b-256 30de6553161be22704b3c518ff141ed4261b2b36e2891fa9ca9188e9a809cd1e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.2-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.7 {"installer":{"name":"uv","version":"0.12.7","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.2-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 f94802bc5cee992cdd9633cb4a548da0ad176bd5260e6a6e63e4cbaaa99d8114
MD5 f82e2bf15a858810ccbefe3d3ee59ed0
BLAKE2b-256 53087131997211382248f70195b23ef5786a4d789b84911c1d7badfd855da513

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.2-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.7 {"installer":{"name":"uv","version":"0.12.7","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.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88b86ae80b01b86044118634ea0d65f7af05fb1b64811589bc574e056b3799a0
MD5 86120b701f66b111e9f1777d7ea98c8f
BLAKE2b-256 f427b1de52a3a16fee293ad4e5b95647734dd13a4626adb48bd502361f2aa1c5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.2-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.7 {"installer":{"name":"uv","version":"0.12.7","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.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 31e39bf05d2484230a67e5f8e8c350fd31bac217e30a0d123b1da570f3c33f53
MD5 ce157f7a7a52da874aa73ddf21daf48f
BLAKE2b-256 a3691f2788aa4f40baa202cee1b154fdb31160af8672eab09b76e499e00a5242

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.2-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.7 {"installer":{"name":"uv","version":"0.12.7","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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 882f5baf225ecb393413f251a183d7452f26a0727d2f28a157ae5ea3ad10a284
MD5 268bf3d695f2e9b3d6ef24c16d6023a8
BLAKE2b-256 860e13a7c4c87bc60857b856128ba746bff930df72383313c446232d8f874216

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.2-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.7 {"installer":{"name":"uv","version":"0.12.7","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.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 94c0cb7b8464500bd633cd57713b4bbc950e3bb95acabafc82b06b7043b14a5f
MD5 fcbed86f0bcb4890e04c0ae0319c1766
BLAKE2b-256 932293fe73e64064f2f50aef03ace30bdd41e46aef615ddc6e1b1aedf085ec3a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.2-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.7 {"installer":{"name":"uv","version":"0.12.7","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.2-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 dab8320d5b5eacbcb4787b1075111101d03aecaf264f19146000d57fb6f7a25e
MD5 e747ca8ed5cd29ce7c3cbd78ef112473
BLAKE2b-256 cf49dd3d47fc9d5e877430cb8588d2584c5b34469c5885c7ca9df7eea4c9be93

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.2-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.7 {"installer":{"name":"uv","version":"0.12.7","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.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7cac234c79fcb6a05bd527e9bb2edead51734d0c6603733534571f74dcc19a90
MD5 af1a7e5dec3b3205fd030ecdab6f57cc
BLAKE2b-256 f9ae7c782f21f1b832e868039911cca33eb611a8bb5c8ff05c414a3e38c682e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.2-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b9b7eb7fde391d4dc4582a874b7ae2d81102370b1b21f8a6f97182a3971fed1a
MD5 76469336465309946e60d94dcb2e776d
BLAKE2b-256 27175249e827435b75074ec46c14edb60558cf6468076ac32eff2a59dcf888b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.2-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.7 {"installer":{"name":"uv","version":"0.12.7","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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 01ad3b8ed97e8ae9de202b47946b9ac67c44c2086771cdbb5dbd4bc6181e81f9
MD5 faa3495dc8898f30a630d216b9b402c2
BLAKE2b-256 fa868f4a2e2676270827895e28b028b5c4f36a64108c34e244198ab7b775628a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.2-cp311-cp311-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.7 {"installer":{"name":"uv","version":"0.12.7","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.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2745283d96a0f5e103f3ab94d8b6fbd3f27a398f2a7d981997342b2d27f14e4d
MD5 8ba6e25bce6cbc358adb4dea34902612
BLAKE2b-256 f3427ef23f4e111e3ba03a15d4db4b2972c5d4f570c5ebe838b60f1239e52c99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.2-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.7 {"installer":{"name":"uv","version":"0.12.7","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.2-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 6112f41552b7facd11b3c35c200e06c7df35cda26cb17c1fba510f845dc87a5c
MD5 1ebe4b6e552f829a18aa7e13c7ba3856
BLAKE2b-256 801ca32b61d13de877323305ed3712f720fb8872834003e697ddd792bc1a7bc6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.2-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.7 {"installer":{"name":"uv","version":"0.12.7","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.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5aa2f05eb2c0838fc8bfc0ca228a65b18dc7c9fae3bb912556399f7ed7612a26
MD5 02da9660036900fd7179cdeaa5c583ce
BLAKE2b-256 e4364faa9ddb97bdcb7a0e7742b863a53dca3d275e77fd99c912e58f77597d6d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.2-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.7 {"installer":{"name":"uv","version":"0.12.7","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.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a7a8f166a61bc5123ace264f83bac91f601b52c5dbec558587f82a9e8a4edc92
MD5 b8eea7e8ad5084cdeabb4695c755beb6
BLAKE2b-256 9fa2210807cc175ca54d0a30287c081570593746a34fb98f6b1cf2326ae64de6

See more details on using hashes here.

Release history Release notifications | RSS feed

2.6.0

29 files

2.5.3

29 files

This release

2.5.2 This release

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