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

Uploaded PyPymanylinux: glibc 2.28+ i686

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

Uploaded CPython 3.15tmanylinux: glibc 2.28+ i686

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

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.15manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ i686

nyx_space-2.5.1-cp314-cp314-win_amd64.whl (8.3 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

nyx_space-2.5.1-cp314-cp314-macosx_11_0_arm64.whl (7.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

nyx_space-2.5.1-cp314-cp314-macosx_10_12_x86_64.whl (8.4 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

nyx_space-2.5.1-cp313-cp313-win_amd64.whl (8.3 MB view details)

Uploaded CPython 3.13Windows x86-64

nyx_space-2.5.1-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.1-cp313-cp313-manylinux_2_28_i686.whl (9.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

nyx_space-2.5.1-cp313-cp313-macosx_11_0_arm64.whl (7.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

nyx_space-2.5.1-cp313-cp313-macosx_10_12_x86_64.whl (8.4 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

nyx_space-2.5.1-cp312-cp312-win_amd64.whl (8.3 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

nyx_space-2.5.1-cp312-cp312-macosx_11_0_arm64.whl (7.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

nyx_space-2.5.1-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.1-cp311-cp311-win_amd64.whl (8.4 MB view details)

Uploaded CPython 3.11Windows x86-64

nyx_space-2.5.1-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.1-cp311-cp311-manylinux_2_28_i686.whl (9.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

nyx_space-2.5.1-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.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: nyx_space-2.5.1-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.3 {"installer":{"name":"uv","version":"0.12.3","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.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 856df5e1365a87b18f8e44edeba25cc9ba010567302d163ecef4515cd50b3a47
MD5 580972113d62b2ab01133b45da838c7e
BLAKE2b-256 0923840557f04778341d2fb3c9b70b1682e7296e89fe07f71b0317f3c790d1b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.1-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.3 {"installer":{"name":"uv","version":"0.12.3","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.1-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 90b32026595dcf245e6c28844108fb68786224d962cf16a47946ba03d6e5cbad
MD5 ec49883f15683d861ed5ab716f7c7db4
BLAKE2b-256 7e8f395588075d590ab38474faa3ae480ba6cf56f297722963ab20584be8a3c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.1-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.3 {"installer":{"name":"uv","version":"0.12.3","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.1-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ec18f78e80eebd7a19c101b39a6476ac1492e1c36bbb3c12d583d30a6d2ac88c
MD5 fd4fd55e569268761ada7800fef27c24
BLAKE2b-256 6f17721848369b5ddb19e4665ee2e55a1072327ec1573d411fbf933474ebe1ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.1-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.3 {"installer":{"name":"uv","version":"0.12.3","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.1-cp315-cp315t-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 de8e6cef7737ad5a91a50b4dee62d9afded3f4f93417a756a180c0b6cf552dcf
MD5 23046317da1c6cc7a9ad01e29a8e1f2a
BLAKE2b-256 dd20e7487eb2027b11f2a068bcb186362fcf5d6de8403cf820a69fe45e2209fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.1-cp315-cp315-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.15, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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.1-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ebc348d710d3bdeb2298ca9cec73917a18abbf367b908d62cdc505dc5425daee
MD5 d8fe39888b7e3d762e1ea0354d550ddd
BLAKE2b-256 556dba46d89c08a637c57668bcbc06e49b7eea4c9556030c3384fb8df7f797e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.1-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.3 {"installer":{"name":"uv","version":"0.12.3","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.1-cp315-cp315-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 eb5f1a226716a86a4fee4adf1cec3cda17a590211188a1c87bb7f1046a9c3e0d
MD5 3de54cf0350b267c90455f9063d49057
BLAKE2b-256 e55fd386704eab4d335809ecea98440aca4797f8b8b1df2ca61aee667ab6e2a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.1-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.3 {"installer":{"name":"uv","version":"0.12.3","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.1-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 63fd199fd4d9cb64b54143517a0262b6be7464b8bb37ab1983cb405f953f421d
MD5 7b7c787138f1410d1623cbc448ca32d5
BLAKE2b-256 db93563851bb9bff39158a2747642919d31c9ac4b4ee836172f1e52754c86015

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.1-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.3 {"installer":{"name":"uv","version":"0.12.3","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.1-cp314-cp314t-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 0dc90f3dbf353c2009704307ae583b1aeb563c6fb0a95d38dea3ed14342aca61
MD5 98fdbcd4823d927221b7141396384ec9
BLAKE2b-256 620ba95f703625468d42565f864f9979c0754b95b460de2395e9d990fe2d0f7d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 8.3 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cd23ae2b4253f56046f9232e44de6690aae3eb33fe595453287aa0208fdf81bc
MD5 b3baf1952b6bced1cc26e0a554985032
BLAKE2b-256 4edd52890a7b1c8568a38d6e3b2598e7e52bdcaffa4d9719f467630df1964b30

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.1-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.3 {"installer":{"name":"uv","version":"0.12.3","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.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7edf9f874ee96644d559f8ba5aa6d25730bb95a2c7ca32f0aba3fe53632d0b9e
MD5 e8bc176bb1cd8ebf6138f2da38d82705
BLAKE2b-256 3851ddcce530b9f974eaae9c780dcb1afa04806aa36a49f23d9c055d55f4bc25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.1-cp314-cp314-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ef1f69291013dee3a8bd07eda5106bebf6b43ea6a83bb7a8fb2289b21c765b4d
MD5 c17fc513d0d2c0c7dd7645eb3f732f72
BLAKE2b-256 4a8308e16a28e1410243813d0de88f5951d382938f9a734a09c66307569241b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.1-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.3 {"installer":{"name":"uv","version":"0.12.3","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.1-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 f7f6f4b867915d8af00c085b5ab513a2a0d20da5d4ca0b61969915f03eb924a4
MD5 31d0035aa35ce7291ff90743c432fffd
BLAKE2b-256 517c1864c9e42da947cb4bfc6183db19be93e6a375849941b8ff695bcf81d0b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.1-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7a717eb12fef27a5f03fa4119675f024fb89340f64d8b43aa86c681e1f23529
MD5 113d5e3e2ecb0c6cc6b0a46f540b7a51
BLAKE2b-256 3351b391daea13e7f1ccae587835e20eba866cc36b4c5e341a58e84874a5a508

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.1-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3eff50cf65bc86978596c4114ac29beef1bb8fb6ed88025d64b15a9b91adbe0b
MD5 070227044d12a09e3f61f5b1c97955ec
BLAKE2b-256 23bfb475ca609b2d8a3e98c4febcd65d7342419c21d7d6c69115611d8388a246

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 8.3 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c916a0a6773ef358b0d63a4672862ecec7800f9c81223cb516a75a9e438079dd
MD5 8038b002d8e8fd57eab1190293d9f65c
BLAKE2b-256 292ca34767dde03a47de817ae0cd02f0d49157a7ea12ae5208a9ff29d1aa6dc7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.1-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.3 {"installer":{"name":"uv","version":"0.12.3","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.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5b45768a92d8a489712740c77cc5ef60c5769e8e4668357607efffe799fe4e7d
MD5 d8ac15e6baa091a3a2536e5478b35d6f
BLAKE2b-256 b42e3262e1d18077b1a0282c530bb477e9b6f2d901e35ce28c592317ac0affe8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.1-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.3 {"installer":{"name":"uv","version":"0.12.3","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.1-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 9c953c05e765845000d812adf1080e745c32cc642b57f803a5018cdd64d90f4e
MD5 d3dd0d3e930e583b5db49da12354e7cf
BLAKE2b-256 a7223cdf6332f6497cc8ff63475402cba75e75898e6094d947c61f1df5976c2e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.1-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d0cff288e72f217b927479dd16f30d6174f33ae8972a5c0f92a49d9be4d9802
MD5 7773aec2705028ebc80cce70ad182037
BLAKE2b-256 593230fda408067b74d773bb0b7e46f9fc6c203e2c95d5f23b417acf2fb788c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.1-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6e6534116c1eb625809d34f8f100eab08d9efed253137c927c2bde8822a6e1df
MD5 9d8064f39bcfba0dbc9a792f0cb3fe7a
BLAKE2b-256 5b5a3f1e1b33cc1d12df8c396e0b7283dfdb1f9a056aa48de1477c1cdb1b0579

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 8.3 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8f9d1f5365c6dc5af33ff4942815ea0f0dad3946caeaf84a88f990874061299d
MD5 6a57e70922292124c5e92f72cbab6128
BLAKE2b-256 13df95c40e8cef5b15048d961d5a440108e9125ccce2da77da09d66f2d19b111

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.1-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.3 {"installer":{"name":"uv","version":"0.12.3","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.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8b13015a6deefe2793ae66981296c54ba38f473908165a087d1d4f475024b18c
MD5 18f99c3435f3417ec9e4ea518fbd326b
BLAKE2b-256 51f2410baa1d7c91380e5d308978911c0b312b0fdf116e3665bc5b77f2ee06b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.1-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.3 {"installer":{"name":"uv","version":"0.12.3","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.1-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 268b09027ca4ae6fe8858e2a183fa465207dfb890f98dccb24139ad2d4a6c2a3
MD5 782cf96e05d2b2ab3cbc0fe19c500dd1
BLAKE2b-256 a9db0a7c694ad2f47e5f110e13f6bc0125517579899e1683af93cd967bba2a1d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.1-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31e7b95885f7fbb685a376dc27cb944e628cfe31c7385b8dcf2bb16078481ac0
MD5 fb8a17cf2df83a119c820f983cf5c7f5
BLAKE2b-256 4f685113334ad9556ba84a9ec478dacbf41598f8edce9be2aa19a31f218ef698

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.1-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.3 {"installer":{"name":"uv","version":"0.12.3","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.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cef52620b054f3f8a683eb669090615ce9233d22bee33be6799424e87c101acc
MD5 2477d38f0cc8f89dab190c065d9de2c0
BLAKE2b-256 14811a45d374ab9ff6f79f9db9c23514ddde1f6c2912d11e64f26ac13f3e8c51

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.1-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.3 {"installer":{"name":"uv","version":"0.12.3","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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 407e966498c11bb8b64f4bc1cc8182f8c8cdb8a8ee2670e91b1cbea816ec89f4
MD5 838cae310155232a61914a230eca3040
BLAKE2b-256 532373715ddaee7bb5f3e6750f519783ceb0062d447d5d8c683036e321c6de5d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.1-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.3 {"installer":{"name":"uv","version":"0.12.3","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.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4961ca1b49b5fd841ce5fe3e76934f0fb76f236b17510f7d3b132de1a8a4585f
MD5 b80b57c302f3628b7581b364165d2351
BLAKE2b-256 13f57d6153c0d079542298a90453615d4490f6961741d97926915ed2c4113df9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.1-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.3 {"installer":{"name":"uv","version":"0.12.3","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.1-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 9c65615d9de843d1ccab659a94522132512b217ec8f3944cb542fdc5aa11dd3e
MD5 c7ec4756a0f5d379a295a1e0734f07ef
BLAKE2b-256 0cbed6ec951e4f1f367459d99ed5185e6d9c661f445b8adaaa3bf054c3018f12

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.1-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.3 {"installer":{"name":"uv","version":"0.12.3","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.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d9a5909bf84480e62bd4943ee2faebd11e3c02a1d72185440c842d8a62dd9b5
MD5 31913764a4cc6f4db2fa5f4d546e5d19
BLAKE2b-256 22d4f933c1863f171bc8c7c9c212fc3a4988287ffda6d92c0af84db56dc4ec0f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.5.1-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.3 {"installer":{"name":"uv","version":"0.12.3","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.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9eed53355fde69781661e5c2a0f73517b0379a006ec9cb2af8dd4222b2d356bf
MD5 6fe548a0bf5bae02d0e0adfe09ba9ba5
BLAKE2b-256 911a28fa81f30f1bfaaeb2adfd9f76588d8e434d11f64f9b6042aaa4cec639aa

See more details on using hashes here.

Release history Release notifications | RSS feed

2.6.0

29 files

2.5.3

29 files

2.5.2

29 files

This release

2.5.1 This release

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