Skip to main content

sdf-xarray logo


Dynamic TOML Badge Available on PyPI DOI Build/Publish Tests Read the Docs Ruff

sdf-xarray provides a backend for xarray to read SDF files as created by EPOCH using the SDF-C library. Part of BEAM (Broad EPOCH Analysis Modules).

Installation

[!IMPORTANT] To install this package make sure you are using one of the Python versions listed above.

Install from PyPI with:

pip install sdf-xarray

or download this code locally:

git clone --recursive https://github.com/epochpic/sdf-xarray.git
cd sdf-xarray
pip install .

We recommend switching to uv to manage packages.

Usage

Below are some simple examples to get you started. Please read the full documentation here https://sdf-xarray.readthedocs.io.

Single file loading

import xarray as xr

df = xr.open_dataset("0010.sdf")

print(df["Electric_Field_Ex"])

# <xarray.DataArray 'Electric_Field_Ex' (X_x_px_deltaf_electron_beam: 16)> Size: 128B
# [16 values with dtype=float64]
# Coordinates:
#   * X_x_px_deltaf_electron_beam  (X_x_px_deltaf_electron_beam) float64 128B 1...
# Attributes:
#     units:    V/m
#     full_name: "Electric Field/Ex"

Multi-file loading

You can open all the SDF files for a given simulation by calling the open_mfdataset function from sdf_xarray. This will additionally add a time dimension using the "time" value stored in each files attributes.

[!IMPORTANT] If your simulation has multiple output blocks so that not all variables are output at every time step, then at the timesteps where those variables are not present they will have have a value of nan. To clean your dataset by removing these nan values we suggest using the xarray.DataArray.dropna function or loading sparse data along separate time dimensions using separate_times=True.

from sdf_xarray import open_mfdataset

ds = open_mfdataset("*.sdf")
print(ds)

# Dimensions:
# time: 301, X_Grid_mid: 128, ...
# Coordinates: (9) ...
# Data variables: (18) ...
# Indexes: (9) ...
# Attributes: (22) ...

Citing

If sdf-xarray contributes to a project that leads to publication, please acknowledge this by citing sdf-xarray. This can be done by clicking the "cite this repository" button located near the top right of this page.

Contributing

We welcome contributions to the BEAM ecosystem! Whether it's reporting issues, suggesting features, or submitting pull requests, your input helps improve these tools for the community.

How to Contribute

There are many ways to get involved:

  • Report bugs: Found something not working as expected? Open an issue with as much detail as possible.
  • Request a feature: Got an idea for a new feature or enhancement? Open a feature request on GitHub Issues!
  • Improve the documentation: We aim to keep our docs clear and helpful—if something's missing or unclear, feel free to suggest edits.
  • Submit code changes: Bug fixes, refactoring, or new features are welcome.

All code is automatically linted, formatted, and tested via GitHub Actions.

To run checks locally before opening a pull request, see CONTRIBUTING.md or readthedocs documentation

Broad EPOCH Analysis Modules (BEAM)

BEAM is a collection of independent yet complementary open-source tools for analysing EPOCH simulations, designed to be modular so researchers can adopt only the components they require without being constrained by a rigid framework. In line with the FAIR principles — Findable, Accessible, Interoperable, and Reusable — each package is openly published with clear documentation and versioning (Findable), distributed via public repositories (Accessible), designed to follow common standards for data structures and interfaces (Interoperable), and includes licensing and metadata to support long-term use and adaptation (Reusable). The packages are as follows:

  • sdf-xarray: Reading and processing SDF files and converting them to xarray.
  • epydeck: Input deck reader and writer.
  • epyscan: Create campaigns over a given parameter space using various sampling methods.

PlasmaFAIR

Originally developed by PlasmaFAIR, EPSRC Grant EP/V051822/1

Release files for sdf-xarray 0.8.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for sdf-xarray 0.8.0
File Size Uploaded
sdf_xarray-0.8.0.tar.gz 2.5 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for sdf-xarray 0.8.0
File
sdf_xarray-0.8.0-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
sdf_xarray-0.8.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
sdf_xarray-0.8.0-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
sdf_xarray-0.8.0-cp314-cp314t-macosx_10_13_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.13+ x86-64 Details
sdf_xarray-0.8.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
sdf_xarray-0.8.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
sdf_xarray-0.8.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
sdf_xarray-0.8.0-cp314-cp314-macosx_10_13_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.13+ x86-64 Details
sdf_xarray-0.8.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
sdf_xarray-0.8.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
sdf_xarray-0.8.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
sdf_xarray-0.8.0-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
sdf_xarray-0.8.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
sdf_xarray-0.8.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
sdf_xarray-0.8.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
sdf_xarray-0.8.0-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
sdf_xarray-0.8.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
sdf_xarray-0.8.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
sdf_xarray-0.8.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
sdf_xarray-0.8.0-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details

Total release size: 11.8 MB

Release files / sdf_xarray-0.8.0.tar.gz

Download URL sdf_xarray-0.8.0.tar.gz
Size 2.5 MB
Tags Source
SHA-256 checksum
How to use checksums
96673a55ac890b6ad90096b7675e90908313b3e174a9a2dcfd2ff3a0fc7a2da7
BLAKE2b-256 checksum
How to use checksums
3f9d7824f2b1e57156cfbd89bdd43e4d8a873fc9e0b4dba70cafd4a73cda9566
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 8, 2026.

Transparency log

Release files / sdf_xarray-0.8.0-cp314-cp314t-win_amd64.whl

Download URL sdf_xarray-0.8.0-cp314-cp314t-win_amd64.whl
Size 337.1 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
280c5c891f681daa4a0eba6485b39046b392cec4b9d37811d282634b9741d9ef
BLAKE2b-256 checksum
How to use checksums
31c0dd4b5bdf414410d205b957345b12c380c4ddc1272c9d4159694ec138eeb6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 8, 2026.

Transparency log

Release files / sdf_xarray-0.8.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL sdf_xarray-0.8.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 612.6 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
02fd4b7e87218d68864b6b8221c98de3b499d0af85ff219cd4bc8df3f243bb99
BLAKE2b-256 checksum
How to use checksums
74fa241811e8a425a629060539dc5f842946f76b7a900096e9216977b375ab04
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 8, 2026.

Transparency log

Release files / sdf_xarray-0.8.0-cp314-cp314t-macosx_11_0_arm64.whl

Download URL sdf_xarray-0.8.0-cp314-cp314t-macosx_11_0_arm64.whl
Size 450.5 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2c670d3aa33a063001b83f090c091b80f53924896423828ba8e0db5b63e49c45
BLAKE2b-256 checksum
How to use checksums
f0629c416e2043e98139b392e7077e440f6f7c687ba0dfe92da91547b041ad40
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 8, 2026.

Transparency log

Release files / sdf_xarray-0.8.0-cp314-cp314t-macosx_10_13_x86_64.whl

Download URL sdf_xarray-0.8.0-cp314-cp314t-macosx_10_13_x86_64.whl
Size 485.5 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
f16c1a80cd00b339d65e2e288a5fa2cd82f128d47a7f7290b7c9b9ede2b08eb0
BLAKE2b-256 checksum
How to use checksums
20c0975b9eaea245921145672dc64b7eff66c9c18f6748ebf2dc00c600061e7b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 8, 2026.

Transparency log

Release files / sdf_xarray-0.8.0-cp314-cp314-win_amd64.whl

Download URL sdf_xarray-0.8.0-cp314-cp314-win_amd64.whl
Size 331.3 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
13986379c769264e83e89e388e33a4f377e9f71e0400a29fafdb3061f09ae2a7
BLAKE2b-256 checksum
How to use checksums
1ded5d180e4466b1f06bf8d0c3e805aab0adab480d1cffb2be6c09f25f6fb8a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 8, 2026.

Transparency log

Release files / sdf_xarray-0.8.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL sdf_xarray-0.8.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 619.5 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
64c03eb904db381f093389d61f21585c5466a64933933cf1d664be46916e6a1b
BLAKE2b-256 checksum
How to use checksums
186fc3ee191b4abe7d497262bcab88c876089f674fe602a0175af7551e37f3c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 8, 2026.

Transparency log

Release files / sdf_xarray-0.8.0-cp314-cp314-macosx_11_0_arm64.whl

Download URL sdf_xarray-0.8.0-cp314-cp314-macosx_11_0_arm64.whl
Size 441.2 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
8996c6f45710f72285fca12a04d454a9f4f09daea6e14941daede9673c6f9c20
BLAKE2b-256 checksum
How to use checksums
e942ad1bf6f1c16487e6061b25bfcd5a5daf67b99f58f89bea83846c4267c02b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 8, 2026.

Transparency log

Release files / sdf_xarray-0.8.0-cp314-cp314-macosx_10_13_x86_64.whl

Download URL sdf_xarray-0.8.0-cp314-cp314-macosx_10_13_x86_64.whl
Size 478.4 kB
Tags CPython 3.14 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
635ab73f70cd4b81cd93ea67a02b216c6d95d0acd6f2eb2f2ebb955bb885e091
BLAKE2b-256 checksum
How to use checksums
fbf94c182875343e3abe8d35231041cc6cebfcc45049c90c3ad8e6bc947b9f17
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 8, 2026.

Transparency log

Release files / sdf_xarray-0.8.0-cp313-cp313-win_amd64.whl

Download URL sdf_xarray-0.8.0-cp313-cp313-win_amd64.whl
Size 325.7 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
81a37874e19a0a542d5c2ad90043cff460c8891ad8a0b05185a00071bd3e5bcc
BLAKE2b-256 checksum
How to use checksums
15c830f1b235d1c2270642f6b245cea1c4a0b1e4c731fcf2b0b2970751d6477a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 8, 2026.

Transparency log

Release files / sdf_xarray-0.8.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL sdf_xarray-0.8.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 618.6 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
75aebd8111639b7174ec3c5db34205d6ce51f7f11b67d0decfffa795346c59c8
BLAKE2b-256 checksum
How to use checksums
b3dbc1dc85e4e78b6b0977a4e6b2edcd63547ba991058f0cda98b5fd9b2644a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 8, 2026.

Transparency log

Release files / sdf_xarray-0.8.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL sdf_xarray-0.8.0-cp313-cp313-macosx_11_0_arm64.whl
Size 439.8 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
bafead91b375b8dc2527b563c9cdd59f1812b48dce38e17d1b826ba1153e6025
BLAKE2b-256 checksum
How to use checksums
32c0201d39852c02803272b34757b0bad7cf899d56e8bb98194939ad3aa85a4f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 8, 2026.

Transparency log

Release files / sdf_xarray-0.8.0-cp313-cp313-macosx_10_13_x86_64.whl

Download URL sdf_xarray-0.8.0-cp313-cp313-macosx_10_13_x86_64.whl
Size 477.9 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
11b0aed66dbb04f1c511a85e801ae545373917ac210582879251f9dc96f9c32a
BLAKE2b-256 checksum
How to use checksums
fc3bd78a0be1f42333ccf28be065666157992c8b29c0936a206c824ee2b566fb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 8, 2026.

Transparency log

Release files / sdf_xarray-0.8.0-cp312-cp312-win_amd64.whl

Download URL sdf_xarray-0.8.0-cp312-cp312-win_amd64.whl
Size 325.8 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
5ad5f2f108dd164332e20cced9e209ce215f14e784228193138ddd96fa294e2a
BLAKE2b-256 checksum
How to use checksums
cb9e25045f19eb299ac192f0c715e61d9ed1ddf4b9c0c90cddc312518739464e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 8, 2026.

Transparency log

Release files / sdf_xarray-0.8.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL sdf_xarray-0.8.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 618.9 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
a3848d366a580b1dc7a97be8dabe78d2e866a564691188986eaac6742f00a132
BLAKE2b-256 checksum
How to use checksums
006a5145e3b2d8b1923d57e8e97900d74bf7ab81f216f162e44c7c3e76318563
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 8, 2026.

Transparency log

Release files / sdf_xarray-0.8.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL sdf_xarray-0.8.0-cp312-cp312-macosx_11_0_arm64.whl
Size 440.8 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a1b21ebe07f3038f16325837a5692dfb33828768b94a1b65171f89987d49b02f
BLAKE2b-256 checksum
How to use checksums
33611a58b0d0df6f19c4d2d8ae65bedfa71534af128b6c032beb876d673dfcba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 8, 2026.

Transparency log

Release files / sdf_xarray-0.8.0-cp312-cp312-macosx_10_13_x86_64.whl

Download URL sdf_xarray-0.8.0-cp312-cp312-macosx_10_13_x86_64.whl
Size 478.8 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
f737b48d469e35833f33a0fa78a387e75d88db11bebe0d3360a289a473392ab4
BLAKE2b-256 checksum
How to use checksums
e40523957bed05e1419ac1bff9f658a44f15378152c66d443877140dc21c9c2e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 8, 2026.

Transparency log

Release files / sdf_xarray-0.8.0-cp311-cp311-win_amd64.whl

Download URL sdf_xarray-0.8.0-cp311-cp311-win_amd64.whl
Size 323.8 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
7e456331039f295566abdff7b1574540f2e587c297393372523ceb0c9b22849a
BLAKE2b-256 checksum
How to use checksums
39f509886fe07600de9e144eee11869f014596d87f093e008d5518397ec98e9a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 8, 2026.

Transparency log

Release files / sdf_xarray-0.8.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL sdf_xarray-0.8.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 620.8 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
47aaf41fbbf5d8c9963dae7c814fffa14dde9f87719d0bf431db5381cefad824
BLAKE2b-256 checksum
How to use checksums
f64a6e16aa5b908eb9e6b18f02e1fb7462afa87f4749ebca7affb86774bfd356
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 8, 2026.

Transparency log

Release files / sdf_xarray-0.8.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL sdf_xarray-0.8.0-cp311-cp311-macosx_11_0_arm64.whl
Size 441.6 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ecf960eac93935ae483f731308f620780c39b5d8e3e107ef492e1046f754809e
BLAKE2b-256 checksum
How to use checksums
389e02851d11202945cdc6058fed7898fbb4aaca463c0d2e7e90933a1c0702b7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 8, 2026.

Transparency log

Release files / sdf_xarray-0.8.0-cp311-cp311-macosx_10_9_x86_64.whl

Download URL sdf_xarray-0.8.0-cp311-cp311-macosx_10_9_x86_64.whl
Size 458.0 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
9243c38d1ab098042fe25e176f744824937e2c5410f27c5d0887a979fa79779c
BLAKE2b-256 checksum
How to use checksums
cfa86a870ec862d38ea060f0dee27e202741a64037ee7cc8733b600887fda481
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 8, 2026.

Transparency log

Release history Release notifications | RSS feed

0.9.0

21 release files

This release

0.8.0 This release

21 release files

0.7.3

21 release files

0.7.2

21 release files

0.7.1

21 release files

0.7.0

21 release files

0.6.0

21 release files

0.4.0

25 release files

0.3.1

17 release files

0.3.0

17 release files

0.2.6

17 release files

0.2.5

17 release files

0.2.4

17 release files

0.2.2

17 release files

0.2.1

17 release files

0.1.3

17 release files

0.1.2

17 release files

0.1.1

17 release 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