Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

adam_core: ADAM Core Utilities

A Python package by the Asteroid Institute, a program of the B612 Foundation

Python 3.11-3.13 License
pip - Build, Lint, Test, and Coverage

adam_core is used by a variety of library and services at the Asteroid Institute. Sharing these common classes, types, and conversions amongst our tools ensures consistency and accuracy.

Installation

ADAM Core is available on PyPI

pip install adam_core

Astropy, Astroquery, Healpy, and plotting libraries are explicit optional providers rather than default runtime dependencies. Install only the bridge you need:

pip install "adam_core[astropy]"      # Astropy Time and UT1/IERS bridges
pip install "adam_core[legacy-sbdb]"  # Astroquery compatibility workflows
pip install "adam_core[healpix]"      # Healpy-backed public helpers
pip install "adam_core[jax]"          # Historical explicit JAX bridge
pip install "adam_core[plots]"        # Plotting and date-axis formatting

Native wheels support CPython 3.11-3.13 on manylinux 2.17+ x86-64/AArch64 and macOS Apple silicon/Intel. Windows is deferred because the required libassist-sys 1.2.1 acceptance stack depends on upstream ASSIST's POSIX memory mapping; musllinux is also unsupported. Python installs reuse kernel data from the active environment; pure-Rust consumers use override -> installed-Python -> cache -> checksummed wheel resolution, with ADAM_CORE_KERNEL_OFFLINE=1 disabling downloads.

ASSIST propagation is provided by the separate adam-assist distribution as adam_assist.ASSISTPropagator. adam-assist owns the orchestration layer and consumes libassist-sys and librebound-sys directly.

Usage

Orbits

To define an orbit:

from adam_core.coordinates import KeplerianCoordinates
from adam_core.coordinates import Origin
from adam_core.orbits import Orbits
from adam_core.time import Timestamp

keplerian_elements = KeplerianCoordinates.from_kwargs(
    time=Timestamp.from_mjd([59000.0], scale="tdb"),
    a=[1.0],
    e=[0.002],
    i=[10.],
    raan=[50.0],
    ap=[20.0],
    M=[30.0],
    origin=Origin.from_kwargs(code=["SUN"]),
    frame="ecliptic"
)
orbits = Orbits.from_kwargs(
    orbit_id=["1"],
    object_id=["Test Orbit"],
    coordinates=keplerian_elements.to_cartesian(),
)

Note that internally, all orbits are stored in Cartesian coordinates. Cartesian coordinates do not have any singularities and are thus more robust for numerical integration. Any orbital element conversions to Cartesian can be done on demand by calling to_cartesian() on the coordinates object.

The underlying orbits class is 2 dimensional and can store elements and covariances for multiple orbits.

from adam_core.coordinates import KeplerianCoordinates
from adam_core.coordinates import Origin
from adam_core.orbits import Orbits
from adam_core.time import Timestamp

keplerian_elements = KeplerianCoordinates.from_kwargs(
    time=Timestamp.from_mjd([59000.0, 60000.0], scale="tdb"),
    a=[1.0, 3.0],
    e=[0.002, 0.0],
    i=[10., 30.],
    raan=[50.0, 32.0],
    ap=[20.0, 94.0],
    M=[30.0, 159.0],
    origin=Origin.from_kwargs(code=["SUN", "SUN"]),
    frame="ecliptic"
)
orbits = Orbits.from_kwargs(
    orbit_id=["1", "2"],
    object_id=["Test Orbit 1", "Test Orbit 2"],
    coordinates=keplerian_elements.to_cartesian(),
)

Orbits can be easily converted to a pandas DataFrame:

orbits.to_dataframe()  
  orbit_id     object_id  coordinates.x  coordinates.y  coordinates.z  coordinates.vx  coordinates.vy  coordinates.vz  coordinates.time.days  coordinates.time.nanos                      coordinates.covariance.values coordinates.origin.code  
0        1  Test Orbit 1      -0.166403       0.975273       0.133015       -0.016838       -0.003117        0.001921                  59000                       0  [nan, nan, nan, nan, nan, nan, nan, nan, nan, ...                     SUN  
1        2  Test Orbit 2       0.572777      -2.571820      -1.434457        0.009387        0.002900       -0.001452                  60000                       0  [nan, nan, nan, nan, nan, nan, nan, nan, nan, ...                     SUN

Orbits can also be defined with uncertainties.

import numpy as np
from adam_core.coordinates import KeplerianCoordinates
from adam_core.coordinates import Origin
from adam_core.coordinates import CoordinateCovariances
from adam_core.orbits import Orbits
from adam_core.time import Timestamp

keplerian_elements = KeplerianCoordinates.from_kwargs(
    time=Timestamp.from_mjd([59000.0], scale="tdb"),
    a=[1.0],
    e=[0.002],
    i=[10.],
    raan=[50.0],
    ap=[20.0],
    M=[30.0],
    covariance=CoordinateCovariances.from_sigmas(
        np.array([[0.002, 0.001, 0.01, 0.01, 0.1, 0.1]])
    ),
    origin=Origin.from_kwargs(code=["SUN"]),
    frame="ecliptic"
)

orbits = Orbits.from_kwargs(
    orbit_id=["1"],
    object_id=["Test Orbit with Uncertainties"],
    coordinates=keplerian_elements.to_cartesian(),
)
orbits.to_dataframe()  
  orbit_id                      object_id  coordinates.x  coordinates.y  coordinates.z  coordinates.vx  coordinates.vy  coordinates.vz  coordinates.time.days  coordinates.time.nanos                      coordinates.covariance.values coordinates.origin.code  
0        1  Test Orbit with Uncertainties      -0.166403       0.975273       0.133015       -0.016838       -0.003117        0.001921                  59000                       0  [6.654136535278775e-06, 1.2935845684776213e-06...                     SUN

The covariance matrices can be extracted in matrix form by using the .to_matrix() method:

orbits.coordinates.covariance.to_matrix()

Similarly, if you just want to access the orbital elements you can do the following:

orbits.coordinates.values

To query orbits from JPL Horizons:

from adam_core.orbits.query import query_horizons
from adam_core.time import Timestamp

times = Timestamp.from_mjd([60000.0], scale="tdb")
object_ids = ["Duende", "Eros", "Ceres"]
orbits = query_horizons(object_ids, times)

To query orbits from JPL SBDB:

from adam_core.orbits.query import query_sbdb

object_ids = ["Duende", "Eros", "Ceres"]
orbits = query_sbdb(object_ids)

Orbital Element Conversions

Orbital elements can be accessed via the corresponding attribute. All conversions, including covariances, are done on demand and stored.

# Cartesian Elements
orbits.coordinates

# To convert to other representations
cometary_elements = orbits.coordinates.to_cometary()
keplerian_elements = orbits.coordinates.to_keplerian()
spherical_elements = orbits.coordinates.to_spherical()

Propagator

The propagator class in adam_core provides a generalized interface to the supported orbit integrators and ephemeris generators. The propagator class is designed to be used with the Orbits class and can handle multiple orbits and times.

You will need to install either adam-assist, or another compatible propagator in order to use propagation, ephemeris generation, or impact analysis.

Propagation

To propagate orbits with ASSIST (here we grab some orbits from Horizons first):

import numpy as np
from astropy import units as u

from adam_core.orbits.query import query_horizons
from adam_assist import ASSISTPropagator
from adam_core.time import Timestamp

# Get orbits to propagate
initial_time = Timestamp.from_mjd([60000.0], scale="tdb")
object_ids = ["Duende", "Eros", "Ceres"]
orbits = query_horizons(object_ids, initial_time)

# initialize the propagator
propagator = ASSISTPropagator()

# Define propagation times
times = initial_time.from_mjd(initial_time.mjd() + np.arange(0, 100))

# Propagate orbits! This function supports multiprocessing for large
# propagation jobs.
propagated_orbits = propagator.propagate_orbits(
    orbits,
    times,
    chunk_size=100,
    max_processes=1,
)

Ephemeris Generation

Ephemeris generation requires a propagator that implements the EphemerisMixin interface. This is currently only implemented by the PYOORB propagator. The ephemeris generator will automatically map the propagated covariance matrices to the sky-plane.

You will need to install adam-pyoorb in order to use the ephemeris generator, which is currently only available on GitHub.

pip install git+https://github.com/B612-Asteroid-Institute/adam-pyoorb.git
import numpy as np
from astropy import units as u

from adam_core.orbits.query import query_horizons
from adam_core.propagator.adam_pyoorb import PYOORBPropagator
from adam_core.observers import Observers
from adam_core.time import Timestamp

# Get orbits to propagate
initial_time = Timestamp.from_mjd([60000.0], scale="tdb")
object_ids = ["Duende", "Eros", "Ceres"]
orbits = query_horizons(object_ids, initial_time)

# Make sure PYOORB is ready
propagator = PYOORBPropagator()

# Define a set of observers and observation times
times = Timestamp.from_mjd(initial_time.mjd() + np.arange(0, 100))
observers = Observers.from_code("I11", times)

# Generate ephemerides! This function supports multiprocessing for large
# propagation jobs.
ephemeris = propagator.generate_ephemeris(
    orbits,
    observers,
    chunk_size=100,
    max_processes=1
)

Low-level APIs

State Vectors from Development Ephemeris files

Getting the heliocentric ecliptic state vector of a DE440 body at a given set of times (in this case the barycenter of the Jovian system):

import numpy as np

from adam_core.coordinates import OriginCodes
from adam_core.utils import get_perturber_state
from adam_core.time import Timestamp

states = get_perturber_state(
    OriginCodes.JUPITER_BARYCENTER,
    Timetamp.from_mjd(np.arange(59000, 60000), scale="tdb"),
    frame="ecliptic",
    origin=OriginCodes.SUN,
)

2-body Propagation

adam_core also has 2-body propagation functionality. To propagate any orbit with 2-body dynamics:

import numpy as np
from astropy import units as u

from adam_core.orbits.query import query_sbdb
from adam_core.dynamics import propagate_2body
from adam_core.time import Timestamp

# Get orbit to propagate
object_ids = ["Duende", "Eros", "Ceres"]
orbits = query_sbdb(object_ids)

# Define propagation times
times = Timestamp.from_mjd(np.arange(59000, 60000), scale="tdb")

# Propagate orbits with 2-body dynamics
propagated_orbits = propagate_2body(
    orbits,
    times
)

2-body Ephemeris Generation

This package also has functionality to generate ephemerides for a set of orbits. We do not recommend you use this with 2-body propagated orbits as it will not be accurate for more than a few days. However, if you used a N-body propagator such as PYOORB, you can feed in the propagated orbits to this function to generate ephemerides. We call the ephemeris generator 2-body because the light-time correction is applied using a 2-body propagator.

Because the ephemeris generator was written in Jax, we can also map covariances directly to the sky-plane. To do this, we propagate the covariance matrices with the orbits. This is done by passing covariance=True to the propagator. The ephemeris generator will then automatically map the propagated covariance matrices to the sky-plane.

import numpy as np
from astropy import units as u

from adam_core.orbits.query import query_sbdb
from adam_core.propagator.adam_pyoorb import PYOORBPropagator
from adam_core.observers import Observers
from adam_core.dynamics import generate_ephemeris_2body
from adam_core.time import Timestamp

# Get orbits to propagate
object_ids = ["Duende", "Eros", "Ceres"]
orbits = query_sbdb(object_ids)

# Make sure PYOORB is ready
propagator = PYOORBPropagator()

# Define a set of observers and observation times
times = Timestamp.from_mjd(np.arange(59000, 60000), scale="tdb")
observers = Observers.from_code("I11", times)

# Propagate orbits with PYOORB (note that we are propagating with covariances)
propagated_orbits = propagator.propagate_orbits(
    orbits,
    times,
    chunk_size=100,
    max_processes=1,
    covariance=True,
)

# Now generate ephemerides with the 2-body ephemeris generator
ephemeris = generate_ephemeris_2body(
    propagated_orbits,
    observers,
)

Gravitational parameter

Both the 2-body propagation and 2-body ephemeris generation code will determine the correct graviational parameter to use from each orbit's origin.

To see the gravitational parameter used for each orbit:

from adam_core.orbits.query import query_sbdb

# Get orbit to propagate
object_ids = ["Duende", "Eros", "Ceres"]
orbits = query_sbdb(object_ids)

# Get the gravitational parameter (these will all be the same -- heliocentric)
mu = orbits.coordinates.origin.mu()

Package Structure

adam_core
├── constants.py  # Shared constants
├── coordinates   # Coordinate classes and transformations
├── dynamics      # Numerical solutions
├── orbits        # Orbits class and query utilities
└── utils         # Utility classes like Indexable or conversions like times_from_df

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.

adam_core-0.5.6rc1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

adam_core-0.5.6rc1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

adam_core-0.5.6rc1-cp313-cp313-macosx_11_0_arm64.whl (14.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

adam_core-0.5.6rc1-cp313-cp313-macosx_10_12_x86_64.whl (14.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

adam_core-0.5.6rc1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

adam_core-0.5.6rc1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

adam_core-0.5.6rc1-cp312-cp312-macosx_11_0_arm64.whl (14.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

adam_core-0.5.6rc1-cp312-cp312-macosx_10_12_x86_64.whl (14.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

adam_core-0.5.6rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

adam_core-0.5.6rc1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (15.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

adam_core-0.5.6rc1-cp311-cp311-macosx_11_0_arm64.whl (14.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

adam_core-0.5.6rc1-cp311-cp311-macosx_10_12_x86_64.whl (14.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

Details for the file adam_core-0.5.6rc1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for adam_core-0.5.6rc1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60fef92058d38b7b92cb68e121d53477dfd1ea97c24e0eb0e3c1096a35b3cc37
MD5 9449e7ed3f0f9f2ad8754f02a75964e0
BLAKE2b-256 a254e47a42ee3571cf474d87613a72a1bf823f7220b83d6737e8728daa72119e

See more details on using hashes here.

Provenance

The following attestation bundles were made for adam_core-0.5.6rc1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on B612-Asteroid-Institute/adam_core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adam_core-0.5.6rc1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for adam_core-0.5.6rc1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 faf368d9ed4b69bbfcfc319134910be3756e80bfb19b4e3e02d258e7b387258f
MD5 f49f0f1792eed1e9eb29de911923985c
BLAKE2b-256 a19ab33ff7652c6d327fcabe4b95a4a0aea9f69d84008af082ad299ce59b8ace

See more details on using hashes here.

Provenance

The following attestation bundles were made for adam_core-0.5.6rc1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on B612-Asteroid-Institute/adam_core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adam_core-0.5.6rc1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for adam_core-0.5.6rc1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b0db7231268bf08bbc4f8be66e1114d522800112b32e7ffde5e5a77c5edeae9
MD5 6786b4bdc3403bfc0e4769b522bd854a
BLAKE2b-256 991e24726d95eab41eeb78590c30514aec3f5393779e4bebb09f1133dcd61cc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for adam_core-0.5.6rc1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on B612-Asteroid-Institute/adam_core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adam_core-0.5.6rc1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for adam_core-0.5.6rc1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3e999c97189a326d12e731f326448b2d6c24488638807d15f33ebd0cb73d854e
MD5 859e941278eada13077ca22d34bfc43c
BLAKE2b-256 76b8a7a19b05d56d89b89ea80dffb245ab27b9c4a6242aacc6b940855b12eaab

See more details on using hashes here.

Provenance

The following attestation bundles were made for adam_core-0.5.6rc1-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: publish.yml on B612-Asteroid-Institute/adam_core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adam_core-0.5.6rc1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for adam_core-0.5.6rc1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a833c3ec2a627105d0d67ef9574db8ff4b081ef0fd463422aeaa61bdface2b9b
MD5 b07d230982936b8c78982b68f8a333d0
BLAKE2b-256 5dff29081013b4bf694c0061cabbe12750470b4be1715acd1b493df00bda3094

See more details on using hashes here.

Provenance

The following attestation bundles were made for adam_core-0.5.6rc1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on B612-Asteroid-Institute/adam_core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adam_core-0.5.6rc1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for adam_core-0.5.6rc1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a5a1ac88b90ab63314af6938ca9858892987d975d9f8b1e7d85cb5f0894d1d8e
MD5 a81392c3139f16e8717d71e48ca701b4
BLAKE2b-256 e7c5564c14fcd5995a5b70c4d11f4d18d87059c064112efa2f094e07d06e2bf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for adam_core-0.5.6rc1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on B612-Asteroid-Institute/adam_core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adam_core-0.5.6rc1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for adam_core-0.5.6rc1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a1029460972c4c002472932024b5e8632a1c2827556f4d409f7a06c06b5bd3b
MD5 2c07ccb1264484682bd9bf7d7aea081b
BLAKE2b-256 4e02b594ea6ce26ca4df8ad178c8d25c760a5f9e3672290ad54d4a4caba3a03f

See more details on using hashes here.

Provenance

The following attestation bundles were made for adam_core-0.5.6rc1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on B612-Asteroid-Institute/adam_core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adam_core-0.5.6rc1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for adam_core-0.5.6rc1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cb226a1e366289795993c2762c6aea97e53482212b568d42eccbdbf42ee82e72
MD5 46e4860df08e59bc5802b6df87076110
BLAKE2b-256 714840e8c59a6ddf1d606215c40bc40fd0f4df09faa35f38813854db12fe699c

See more details on using hashes here.

Provenance

The following attestation bundles were made for adam_core-0.5.6rc1-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: publish.yml on B612-Asteroid-Institute/adam_core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adam_core-0.5.6rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for adam_core-0.5.6rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2cb3fb7bdc0839a34b70b0604a4e095c25600f6a2d81cbb2e885dd3c4b615d37
MD5 5ee2782c53c2e776d3c71bb07761192e
BLAKE2b-256 a03bcbb876f9297a0ac80b724974b30fda686e4827dfedba282fcd2cb929e598

See more details on using hashes here.

Provenance

The following attestation bundles were made for adam_core-0.5.6rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on B612-Asteroid-Institute/adam_core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adam_core-0.5.6rc1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for adam_core-0.5.6rc1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aca856873f46e47f7a377bd11494f1931949c211b43cf4a4408c702b8fae1888
MD5 a31c025c70a22d2a1c90086fa36f984e
BLAKE2b-256 82051f26a21f48ab45881c0b7e870fed97587460adcd76522199616b6cfdba31

See more details on using hashes here.

Provenance

The following attestation bundles were made for adam_core-0.5.6rc1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on B612-Asteroid-Institute/adam_core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adam_core-0.5.6rc1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for adam_core-0.5.6rc1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43256f43705b918d3ac494ce31b331e2d4b9ffcd77d82b0fc1961f20ea4b2288
MD5 9cd12f0f2208be09534931e8e8ffc804
BLAKE2b-256 eef6342801a31de28f686a7aa249938774c0931fbbce196aef4c9c2dc1329278

See more details on using hashes here.

Provenance

The following attestation bundles were made for adam_core-0.5.6rc1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on B612-Asteroid-Institute/adam_core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adam_core-0.5.6rc1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for adam_core-0.5.6rc1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d51925ad604694b98e2fd43cce2d2254d22c0a648ae7cf8b7a80b0f0f05390b7
MD5 dfdb97ee8e760b701a7fdc3d822f11cb
BLAKE2b-256 f1a590acac9c60f5aa3ffe25dc8bb6e26082c5b84d8f9f75822105da80530f84

See more details on using hashes here.

Provenance

The following attestation bundles were made for adam_core-0.5.6rc1-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish.yml on B612-Asteroid-Institute/adam_core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page