Metadata-Version: 2.1
Name: cdflib
Version: 1.3.1
Summary: A python CDF reader toolkit
Home-page: https://github.com/MAVENSDC/cdflib
Author: MAVEN SDC
Author-email: mavensdc@lasp.colorado.edu
Keywords: CDF,maven,lasp,PDS,GSFC
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Utilities
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy >=1.21
Provides-Extra: dev
Requires-Dist: ipython ; extra == 'dev'
Requires-Dist: pre-commit ; extra == 'dev'
Provides-Extra: docs
Requires-Dist: astropy ; extra == 'docs'
Requires-Dist: xarray ; extra == 'docs'
Requires-Dist: netcdf4 ; extra == 'docs'
Requires-Dist: sphinx ; extra == 'docs'
Requires-Dist: sphinx-automodapi ; extra == 'docs'
Requires-Dist: sphinx-copybutton ; extra == 'docs'
Requires-Dist: sphinx-rtd-theme ; extra == 'docs'
Provides-Extra: tests
Requires-Dist: astropy ; extra == 'tests'
Requires-Dist: hypothesis ; extra == 'tests'
Requires-Dist: pytest >=3.9 ; extra == 'tests'
Requires-Dist: pytest-cov ; extra == 'tests'
Requires-Dist: pytest-remotedata ; extra == 'tests'
Requires-Dist: xarray ; extra == 'tests'
Requires-Dist: h5netcdf ; extra == 'tests'
Requires-Dist: netcdf4 ; extra == 'tests'

[![Run tests](https://github.com/MAVENSDC/cdflib/actions/workflows/ci.yml/badge.svg)](https://github.com/MAVENSDC/cdflib/actions/workflows/ci.yml)
[![codecov](https://codecov.io/gh/MAVENSDC/cdflib/branch/master/graph/badge.svg?token=IJ6moGc40e)](https://codecov.io/gh/MAVENSDC/cdflib)
[![DOI](https://zenodo.org/badge/102912691.svg)](https://zenodo.org/badge/latestdoi/102912691)
[![Documentation Status](https://readthedocs.org/projects/cdflib/badge/?version=latest)](https://cdflib.readthedocs.io/en/latest/?badge=latest)

# CDFlib

`cdflib` is a python module to read/write CDF (Common Data Format `.cdf`) files without needing to install the
[CDF NASA library](https://cdf.gsfc.nasa.gov/).

Python >= 3.8 is required.
The core of this package uses only numpy, with no complicated compiler requirements.

## Install

To install, open up your terminal/command prompt, and type:
```sh
pip install cdflib
```

## Documentation

The full documentation can be found here:

[https://cdflib.readthedocs.io/en/latest/](https://cdflib.readthedocs.io/en/latest/)
