Metadata-Version: 2.1
Name: xncml
Version: 0.3.1
Summary: Tools for manipulating and opening NCML (NetCDF Markup) files with/for xarray
Home-page: https://github.com/xarray-contrib/xncml
Maintainer: Anderson Banihirwe
Maintainer-email: abanihi@ucar.edu
License: Apache 2.0
Keywords: xncml,xarray,netcdf
Requires-Python: >=3.9, <4
License-File: LICENSE
Requires-Dist: xmltodict
Requires-Dist: xsdata
Requires-Dist: xarray
Requires-Dist: cftime
Requires-Dist: netCDF4
Requires-Dist: dask
Requires-Dist: psutil
Requires-Dist: setuptools
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Requires-Dist: flake8; extra == "dev"

# xncml

![Read the Docs](https://img.shields.io/readthedocs/xncml)
![PyPI](https://img.shields.io/pypi/v/xncml)


Tools for opening and manipulating NcML (NetCDF Markup Language) files with/for xarray.

These tools allow you to modify NcML by:

- Adding or removing global attributes
- Adding or removing variable attributes
- Removing variables and dimensions

and read NcML files into `xarray.Dataset` objects:

```python
import xncml
ds = xncml.open_ncml("large_ensemble.ncml")
```

See [documentation] for more information.

## Installation

xncml can be installed from PyPI with pip:

```bash
pip install xncml
```

[documentation]: https://xncml.readthedocs.io
