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.6.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (9.1 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

nyx_space-2.6.0-pp311-pypy311_pp73-manylinux_2_28_i686.whl (9.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

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

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.15tmanylinux: glibc 2.28+ i686

nyx_space-2.6.0-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.6.0-cp315-cp315-manylinux_2_28_i686.whl (9.2 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ i686

nyx_space-2.6.0-cp314-cp314-win_amd64.whl (8.5 MB view details)

Uploaded CPython 3.14Windows x86-64

nyx_space-2.6.0-cp314-cp314-win32.whl (7.8 MB view details)

Uploaded CPython 3.14Windows x86

nyx_space-2.6.0-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.6.0-cp314-cp314-manylinux_2_28_i686.whl (9.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

nyx_space-2.6.0-cp314-cp314-macosx_11_0_arm64.whl (8.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

nyx_space-2.6.0-cp314-cp314-macosx_10_12_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

nyx_space-2.6.0-cp313-cp313-win_amd64.whl (8.5 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

nyx_space-2.6.0-cp313-cp313-macosx_11_0_arm64.whl (8.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

nyx_space-2.6.0-cp313-cp313-macosx_10_12_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

nyx_space-2.6.0-cp312-cp312-win_amd64.whl (8.5 MB view details)

Uploaded CPython 3.12Windows x86-64

nyx_space-2.6.0-cp312-cp312-manylinux_2_28_x86_64.whl (9.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

nyx_space-2.6.0-cp312-cp312-macosx_11_0_arm64.whl (8.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

nyx_space-2.6.0-cp312-cp312-macosx_10_12_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

nyx_space-2.6.0-cp311-cp311-win_amd64.whl (8.5 MB view details)

Uploaded CPython 3.11Windows x86-64

nyx_space-2.6.0-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.6.0-cp311-cp311-manylinux_2_28_i686.whl (9.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

nyx_space-2.6.0-cp311-cp311-macosx_11_0_arm64.whl (8.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

nyx_space-2.6.0-cp311-cp311-macosx_10_12_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: nyx_space-2.6.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: PyPy, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.13 {"installer":{"name":"uv","version":"0.12.13","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.6.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7315a57d4ca14a222e1de7500296da6bd54ed7b353e2cc1fcd98890d13fb7526
MD5 7343a5416cd39e484ca8eaa0604ab921
BLAKE2b-256 1df9af71b49e3c416dde6e89b53af603b14f824a157119e53e031f03b2e94413

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.6.0-pp311-pypy311_pp73-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 9.3 MB
  • Tags: PyPy, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.13 {"installer":{"name":"uv","version":"0.12.13","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.6.0-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 8b81efbdb51ae1fe539d18cccf48f43680ab8ef17ceb7cdeacfac8b781ddf115
MD5 d7a264aec366f7cdcccf924ca94008c6
BLAKE2b-256 5b9373676e9a95a4f4c5383ea6111b2083b15608b6b68f86ccb58b08819f500b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.6.0-cp315-cp315t-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 9.0 MB
  • Tags: CPython 3.15t, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.13 {"installer":{"name":"uv","version":"0.12.13","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.6.0-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 68bfec1ccd33ef242d4a7503bf0704e3cc27437ac00785eabb14dd17d7980307
MD5 2d1dd208d590a726b26dc0ea532bf8bc
BLAKE2b-256 9c6dc6bdcb3f0999c94c7e898ed1d80400208b261e9a461f0275602059873ab5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.6.0-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.13 {"installer":{"name":"uv","version":"0.12.13","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.6.0-cp315-cp315t-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 103e1b2d281d134827e44f4563e3e3bd39e8afd912636183c53674226461093b
MD5 9435e7cb3a27b245c075a48e0b7a7363
BLAKE2b-256 aedc0e195846ade95f38e6192d8ca8b199d48e346c2ee8d162b1af67f898f2c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.6.0-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.13 {"installer":{"name":"uv","version":"0.12.13","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.6.0-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dc876bf0bd605a8b9c50ec585f2698a762b4234f390c5f596cc3224191bead05
MD5 60b68f6cf77d3fc95dd18981a9d9e0bf
BLAKE2b-256 a2f1f8de238c8c7e58068e98445f56bd9b376e823f689912be226474e592dd69

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.6.0-cp315-cp315-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 9.2 MB
  • Tags: CPython 3.15, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.13 {"installer":{"name":"uv","version":"0.12.13","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.6.0-cp315-cp315-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 996e8f9242a357d9d6f0aeaa348f0f28334baa4b62b2493db1f1794410c35e4a
MD5 c5faf63aff715b795285dab158afd876
BLAKE2b-256 7abe0d6f0773465506d6fe5c7f7ac69bd5236325ab62fb6fc62c8a93eeb09423

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.6.0-cp314-cp314t-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 9.0 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.13 {"installer":{"name":"uv","version":"0.12.13","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.6.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b768719d3b498259d7f42b3bf5b89ad1ac9299a2338fdf849e00c87a82a9bc99
MD5 07561c86d23430f065e1d321535dad8a
BLAKE2b-256 e85525f31a9b15c43dc3495c4950e75a5a894d8436e1740f56b630de72d385ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.6.0-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.13 {"installer":{"name":"uv","version":"0.12.13","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.6.0-cp314-cp314t-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 dd68b77468b9298689aebcfa4dc59cd95536b3835789777c251868d2c3b8880b
MD5 ab45341ac52a0ec605bd07086fc3a23f
BLAKE2b-256 543554a39e9e26f7755ef7ebebd675a425e9ade73442698fa7ab3e78135da05d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.6.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.13 {"installer":{"name":"uv","version":"0.12.13","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.6.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 edd0770aca2a48dcb758e56d9626e12264a9c48de14bd1ee77429c70589829d9
MD5 6ec0d65ecd082db4765eb4a8d640c34f
BLAKE2b-256 f6136fccaf81fd7fba35b10f420999eca6f445ef70b062bfe15a848f0ee8a6e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.6.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.13 {"installer":{"name":"uv","version":"0.12.13","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.6.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 514689fd078b4efea34238c894815457d058438a1e27baa8871652e706b88d85
MD5 aeee5d4bd0987dc34ce44d5ce9afcfac
BLAKE2b-256 f87d6b8e72dc998f7c2d3907f2ea2304a65091883242bd3065a1e8c305e004d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.6.0-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.13 {"installer":{"name":"uv","version":"0.12.13","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.6.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ac3f0604867139d5931f14f11d90ebeec510a4cd70d8221aaeecf5406d6275fe
MD5 c00b9c6ebe3f650b7e3183b1cbff3cba
BLAKE2b-256 4442f98f314f17555ea78c389ab09ad775a5126d4e38469fa9d9d50a652a83a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.6.0-cp314-cp314-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 9.2 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.13 {"installer":{"name":"uv","version":"0.12.13","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.6.0-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 4872d727a64165d92864a29e87fd6b1fc27e663fa806ff1e85da35d638c7b748
MD5 95b6dfbe436613e14229ffacd0b18908
BLAKE2b-256 0f09d3e185d189059166b23644b4f41ba1f67952bf695a254a45bc0a6b552637

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.6.0-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 8.2 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.13 {"installer":{"name":"uv","version":"0.12.13","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.6.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2bbdf53861ab7dca82b79a11271e4d1f93be493e9293afdd60e91992b11754cd
MD5 971f74e5c05d2780fff81af53da79034
BLAKE2b-256 1eef102a0ad18542930575b2c76b419432e8ffe7a8e6a7cf0a1249fa2223430a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.6.0-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.13 {"installer":{"name":"uv","version":"0.12.13","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.6.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ce1e7ab51be0fe8117aff166ca1fc0c7932ccf231eb000c835ea929dfd293905
MD5 ab20a48110ea1da5c079de143c9ff2ca
BLAKE2b-256 4dcca3b3c472f6b030400e5afe09471d11400815bc4f49d1a78ccac60527a188

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.6.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.13 {"installer":{"name":"uv","version":"0.12.13","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.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 73c31c3b29b2711b1c6de7d9a5ec8a62cfd0146c262dbf8896a72ad0a7022740
MD5 81af3b6909b6d748d4f5314fedee9c16
BLAKE2b-256 88a8d6c817cf57183265c6697f6553ca7a8bb20031d5a7c479a2ce7391b90068

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.6.0-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.13 {"installer":{"name":"uv","version":"0.12.13","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.6.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3db0716fff5eba9d7b690fd6b45b572f6ec80dc67daf6d1d3c81dc6715cdb1f3
MD5 d1b996a6249b057ebba8bb63993411c4
BLAKE2b-256 274471b787d2434f049b5f506966cf1342e840e55d187178c751f22de02029c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.6.0-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.13 {"installer":{"name":"uv","version":"0.12.13","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.6.0-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 76505e0cd89bac835c0f438203f1ec24176f92ecaebdce7c7aaf368548846558
MD5 b1aad86878fec7f1ed5e730e7f6e2da6
BLAKE2b-256 807a06fd7e42924bd67515c2e2b078165875e60a9d0af98a14ef6ba1eb7e5af9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.6.0-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 8.2 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.13 {"installer":{"name":"uv","version":"0.12.13","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.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fadaf5d0c38be0f503f7772674c67d51d688727a6e079a2d75a5c265463f8315
MD5 a86071342efdcb991914b11d6efd8562
BLAKE2b-256 b02870e625b78dac736088dc0adc3b7845951364a2f6fc074986ae36fddc0212

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.6.0-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.13 {"installer":{"name":"uv","version":"0.12.13","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.6.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c36cb9ff6ae1162a7d3fe48346146b4fbeb7439a386242298841dd72b6debf06
MD5 0cbf74b5631eb7b0feecd2d11b3a2a10
BLAKE2b-256 09d8ae00ba6e641860d75ef7396cc4d91e5a64fee400cd785c16b42d1a45e44f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.6.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.13 {"installer":{"name":"uv","version":"0.12.13","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.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3d11a7253fa0dbc488b562277b85a2928e84b639c2010d32db9581274ecd9283
MD5 26cd0027386a5aa6dba81f6f88c8f8d8
BLAKE2b-256 1285c196735cbd2630cba94eddcdfafadb602f87647e9f710f9a914582f146b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.6.0-cp312-cp312-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 9.0 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.13 {"installer":{"name":"uv","version":"0.12.13","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.6.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e7a940b2248d41141db3c0b09772adfd04281117e2e00b58cd5cba28ccffa947
MD5 8d51b8224e133612c665ce07c1dd1c0c
BLAKE2b-256 357765b94b95126f6c19f54c0dad72c9fbc4d8b3a2ed37d957e8c62478e93a74

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.6.0-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.13 {"installer":{"name":"uv","version":"0.12.13","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.6.0-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 0bf729f95530d5b7d271b2680058c74be117ad37735caffa3801f2ca7bf3fcf3
MD5 10645cedd31ac42369fad215f022a671
BLAKE2b-256 283f62bf7e8bccdd27b10be4de329354785fcd5e06fc45231a455aa8d2dadb2c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.6.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 8.2 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.13 {"installer":{"name":"uv","version":"0.12.13","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.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 25032b107033c3657c29bd782a5011d7d68bbf1f0c7f03648df474dc6f5f2811
MD5 559724ae6b82e58deb9310f4f53e375c
BLAKE2b-256 a07e16ed22101fa0e0dd0b33fc5eabe5be7c2ca1d1fb05cd08e92a40614cd026

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.6.0-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.13 {"installer":{"name":"uv","version":"0.12.13","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.6.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 128cd83e52660e1656678c073b8d019af715e21eca059005336ef15e60e9827a
MD5 c7cfa7d5f8009b82ac73e47a44945fbc
BLAKE2b-256 8a156e83fca33642decd8fef4d4245495cf2a8368c261d1e4526123a8fc1e108

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.6.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.13 {"installer":{"name":"uv","version":"0.12.13","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.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 84ca4b48bb298b76d31cf10336e1a41f06b6cb6ec4d6e69d40ae160005ccc349
MD5 afa16242621f21cf281a40c821673755
BLAKE2b-256 a20978de588a32eab15dfcccb1e917e5fd46fc780cc2da141d93a6b0b983074c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.6.0-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.13 {"installer":{"name":"uv","version":"0.12.13","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.6.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 71bf7ab6d725a0486fcf180e4cfc23f38d2465ad8ad8d5a9f91bcb9db2981566
MD5 ae145879128dcd1c70f43b60cce0dd30
BLAKE2b-256 2826a589de21681361acb1ea4d584a34e67238cfae1ab2c282bf397b5b8c88f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.6.0-cp311-cp311-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 9.2 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.13 {"installer":{"name":"uv","version":"0.12.13","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.6.0-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 66f6ab795ef37de03c1612a161284cfee30d525c1475dce7860f1ce123ef69db
MD5 8e6e1cbf2ed3b3d3658c5024304a35d8
BLAKE2b-256 8578f5384f075d10dec5805d019047ef1314ed553e7617492479593b29b3f023

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.6.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 8.2 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.13 {"installer":{"name":"uv","version":"0.12.13","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.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 46c9b25c56ecbf8a71624e50874e17ccfd777d60f5898dc58e272b15898c69da
MD5 e28be84737305cc96fb431c229aef310
BLAKE2b-256 3ff5a84dd0819aeb4043e32bab55da8cbcf3e2199c91777e49d3aea4548d3fff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: nyx_space-2.6.0-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 8.6 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.13 {"installer":{"name":"uv","version":"0.12.13","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.6.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7abef37eb0b7265fef61d1c11f359d9112be87b8d084cab4d2c0e31e06083572
MD5 5f1c84a483e96bbdc420ea6a7c9441b5
BLAKE2b-256 96f48421a019ed5de1bc54f4f78c44f19249159016d7ee309be341ef3c6756d2

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

2.6.0 This release

29 files

2.5.3

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