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.9.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.9.0
File Size Uploaded
sdf_xarray-0.9.0.tar.gz 2.7 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for sdf-xarray 0.9.0
File
sdf_xarray-0.9.0-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
sdf_xarray-0.9.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.9.0-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
sdf_xarray-0.9.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.9.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
sdf_xarray-0.9.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.9.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
sdf_xarray-0.9.0-cp314-cp314-macosx_10_13_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.13+ x86-64 Details
sdf_xarray-0.9.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
sdf_xarray-0.9.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.17+ x86-64, Linux glibc 2.28+ x86-64 Details
sdf_xarray-0.9.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
sdf_xarray-0.9.0-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
sdf_xarray-0.9.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
sdf_xarray-0.9.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.28+ x86-64, Linux glibc 2.17+ x86-64 Details
sdf_xarray-0.9.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
sdf_xarray-0.9.0-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
sdf_xarray-0.9.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
sdf_xarray-0.9.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.9.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
sdf_xarray-0.9.0-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details

Total release size: 12.1 MB

Release files / sdf_xarray-0.9.0.tar.gz

Download URL sdf_xarray-0.9.0.tar.gz
Size 2.7 MB
Tags Source
SHA-256 checksum
How to use checksums
b15ed962a85c66400e0ecab84b91e2e08ac6f6695a2bbb9cdf94ed60e73fc74e
BLAKE2b-256 checksum
How to use checksums
4d19660fed0dfd31302fac66ddbf4f441b0960a90a97b3cc0640876f7965dfe7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.14

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 28, 2026.

Transparency log

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

Download URL sdf_xarray-0.9.0-cp314-cp314t-win_amd64.whl
Size 340.5 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
39333d6e2995c5756160b0fe94926c6420dc38a8a3d5bc9c50a8e4acad9e4065
BLAKE2b-256 checksum
How to use checksums
157a44a66b33f8721e95a5ebebec791ec38b2d5f608284c2f6b31c766da6b21b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.14

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 28, 2026.

Transparency log

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

Download URL sdf_xarray-0.9.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 616.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
26bb3711ddbac527b9b65ff8e78d723e2142d64f09078a39a22b600b223a1f4f
BLAKE2b-256 checksum
How to use checksums
76ac33560490f7bd95bff26c8b016132f775210413986428ef2d925face98216
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.14

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 28, 2026.

Transparency log

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

Download URL sdf_xarray-0.9.0-cp314-cp314t-macosx_11_0_arm64.whl
Size 453.8 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
fa5869fd31e0df5cf8c6b900ad920d5a3a5289ce824cbc56cb6c3480bcf119db
BLAKE2b-256 checksum
How to use checksums
172d75f351e81a116b9213b3103172ec626d19ddc3ae7e06473556ce6d57e6ef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.14

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 28, 2026.

Transparency log

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

Download URL sdf_xarray-0.9.0-cp314-cp314t-macosx_10_13_x86_64.whl
Size 488.8 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
23157877c55c709d6f8da83f29b0834372c5421cefa40a5c9e1963e17c0a58f8
BLAKE2b-256 checksum
How to use checksums
1b73ad20f3712a4e89d67a46d22f2590daba336c5240f322fa4f71b4f3e7d2de
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.14

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 28, 2026.

Transparency log

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

Download URL sdf_xarray-0.9.0-cp314-cp314-win_amd64.whl
Size 334.8 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
49b224bc1466ad90de0f444908b08453d11033cb23467ff7c99029a3b4f389e5
BLAKE2b-256 checksum
How to use checksums
7c33b174fa5538a846021b99879346a9972e0ea5aad22e30bc3bc2913e4f2177
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.14

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 28, 2026.

Transparency log

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

Download URL sdf_xarray-0.9.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 623.9 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
bbbc759dae66fdb29138a486d457787a06cece1697416e7d58ca1f3726fc391a
BLAKE2b-256 checksum
How to use checksums
0c8da11dc28d2ad72534ce7e62df6930bde9c6d397b6e0784a9733e8dc121071
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.14

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 28, 2026.

Transparency log

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

Download URL sdf_xarray-0.9.0-cp314-cp314-macosx_11_0_arm64.whl
Size 444.6 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
78dad5f1a0cda2e8230701521c8bbdeb5cde934f26fe6c9047f02cd252a75df6
BLAKE2b-256 checksum
How to use checksums
42e004602a8c6be2c2efa983ee6e2e690f0ddcf101c7f263b1705aa41ff1182e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.14

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 28, 2026.

Transparency log

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

Download URL sdf_xarray-0.9.0-cp314-cp314-macosx_10_13_x86_64.whl
Size 481.8 kB
Tags CPython 3.14 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
cde44f68988382490855eb9a5eb30639b7828aa53af2cb2de9cba810313ce649
BLAKE2b-256 checksum
How to use checksums
39de4c2111a34e3d64d64737c3525d53cd90d3f3de4c905216794fe4535550d5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.14

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 28, 2026.

Transparency log

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

Download URL sdf_xarray-0.9.0-cp313-cp313-win_amd64.whl
Size 329.1 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
2b903d4dffa06ea6b0d556a125ffa7932ad09b58ecf29be61b6686bab5d88936
BLAKE2b-256 checksum
How to use checksums
ff1097bd2947828331051adb32459321ed52b535e3f0b43d92045da1d49434a1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.14

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 28, 2026.

Transparency log

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

Download URL sdf_xarray-0.9.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 624.7 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
5afb0675e73ecf3fe128a68ba39015aa166cd495fca0772a448b50658bfa3440
BLAKE2b-256 checksum
How to use checksums
7f5ca848426efbd5c0f6cbe3da64b076af2ce6ed175d8f13c351b33340d9acc8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.14

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 28, 2026.

Transparency log

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

Download URL sdf_xarray-0.9.0-cp313-cp313-macosx_11_0_arm64.whl
Size 443.3 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6ed5af26e7d28ac1bbef01ac018a69ca1cd4e64c7d88a1c5c6b9c9815548540c
BLAKE2b-256 checksum
How to use checksums
ed6c6e0f02a54498b97d4c3b4b9f91493856cfcb8bb6c338e403637d1735d8a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.14

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 28, 2026.

Transparency log

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

Download URL sdf_xarray-0.9.0-cp313-cp313-macosx_10_13_x86_64.whl
Size 481.3 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
dbaae23564cfea486135aaaf1b8a4b62df9766b6a377031a47933e7fad43e965
BLAKE2b-256 checksum
How to use checksums
37f175d51deebfe0d71c22bc93a7ccd48728f2a423ced26dc7c63c44c9380333
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.14

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 28, 2026.

Transparency log

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

Download URL sdf_xarray-0.9.0-cp312-cp312-win_amd64.whl
Size 329.4 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
40af00c8546e989412278ec9ebbd03e9ae413d23b6ae2bdc76abead9f64427b9
BLAKE2b-256 checksum
How to use checksums
468ee09b7f5fbdf82315fcf012be7e1597c30ad274e9c9a5266a0ac2c0d2597b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.14

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 28, 2026.

Transparency log

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

Download URL sdf_xarray-0.9.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 622.8 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
276a9dfb363ed37cbc5e7ccf831703554f0ba0cd1f7869dd18e1ee234c67b773
BLAKE2b-256 checksum
How to use checksums
6d4ecc279059caedadcbb3be60db428aa4c8ce09029c330bf748371adb4e5572
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.14

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 28, 2026.

Transparency log

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

Download URL sdf_xarray-0.9.0-cp312-cp312-macosx_11_0_arm64.whl
Size 444.2 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2c3cb9437e5e37a7ad89c427667dd89f82ca4df1655d64925a431078dd77ca1a
BLAKE2b-256 checksum
How to use checksums
1521adb0baf4b8e85d228341c84fe0408b97cdd0957550effd53bd9761457603
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.14

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 28, 2026.

Transparency log

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

Download URL sdf_xarray-0.9.0-cp312-cp312-macosx_10_13_x86_64.whl
Size 482.1 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
c0d24aefc53dbeb32251b463c26dcab25dbc99a5298d62a4a081eb7b7e124f7b
BLAKE2b-256 checksum
How to use checksums
670dbc3a12cab5a0f4c899d6ae12b3a986001e33c7a624e64ac421666bf97bae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.14

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 28, 2026.

Transparency log

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

Download URL sdf_xarray-0.9.0-cp311-cp311-win_amd64.whl
Size 327.2 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
0a705b59c226189b4e6a35d4bd4cd3ea4c700189f77c9b0465b815036566dde3
BLAKE2b-256 checksum
How to use checksums
91ca9076003b1ce3c539aab6be39c286fdca14fd6cc750c636bfd49680402068
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.14

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 28, 2026.

Transparency log

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

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

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 28, 2026.

Transparency log

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

Download URL sdf_xarray-0.9.0-cp311-cp311-macosx_11_0_arm64.whl
Size 444.9 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
fb6108da99c04d060f62cc2c24ba292b0180ecac08e240dd35f1b4cdc4bfd1c8
BLAKE2b-256 checksum
How to use checksums
9d23d36f785e3ecd3afc3a7155ed28c5b89e94e3068cdefcb73c8632cf8a1260
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.14

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 28, 2026.

Transparency log

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

Download URL sdf_xarray-0.9.0-cp311-cp311-macosx_10_9_x86_64.whl
Size 461.3 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
df2554ea3593dcfa10efe886b2127b8ff22cfc53206f5a9a50b6577801bc5af4
BLAKE2b-256 checksum
How to use checksums
a12f9f6a7b7a4eb84377a68ecdbfe98bafc6fb745bd0d825968e4fceee85724d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.14

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 28, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.9.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