Metadata-Version: 2.1
Name: dask-awkward
Version: 2022.8a0
Summary: Awkward Array meets Dask
Author: Doug Davis
Author-email: ddavis@ddavis.io
Maintainer: Doug Davis
Maintainer-email: ddavis@ddavis.io
License: BSD-3-Clause
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Scientific/Engineering
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: io
Provides-Extra: test
Provides-Extra: complete
Provides-Extra: docs
License-File: LICENSE

dask-awkward
============

> Connecting [awkward-array](https://awkward-array.org) and
[Dask](https://dask.org/).

[![Tests](https://github.com/ContinuumIO/dask-awkward/actions/workflows/pypi-tests.yml/badge.svg)](https://github.com/ContinuumIO/dask-awkward/actions/workflows/pypi-tests.yml)
[![Tests](https://github.com/ContinuumIO/dask-awkward/actions/workflows/conda-tests.yml/badge.svg)](https://github.com/ContinuumIO/dask-awkward/actions/workflows/conda-tests.yml)
[![Documentation Status](https://readthedocs.org/projects/dask-awkward/badge/?version=latest)](https://dask-awkward.readthedocs.io/en/latest/?badge=latest)
[![PyPI](https://img.shields.io/pypi/v/dask-awkward?color=blue)](https://pypi.org/project/dask-awkward)
![stability-alpha](https://img.shields.io/badge/stability-alpha-blue.svg)

**This is alpha software** without any guaranteed API stability.

The dask-awkward project is affiliated with awkward-array's v1 to v2
transition. [Read more about that
here](https://github.com/scikit-hep/awkward/wiki).

Installing
----------

If you are interested in experimenting with `dask-awkward` we
recommend installing from the `main` branch:

```
pip install git+https://github.com/ContinuumIO/dask-awkward@main
```

The [awkward-array](https://github.com/scikit-hep/awkward) project is
working on version 2 of the core `awkward` Python library; `awkward`
version 1.8 includes many components of what will be version 2, but in
the `awkward._v2` module. Installing `dask-awkward` requires
`awkward>=1.9.0rc10`.

It's recommended to have a bleeding edge version of `awkward`
installed with:

```
pip install git+https://github.com/scikit-hep/awkward@main
```

Since `dask-awkward` is designed for `awkward` version 2, the
concrete, high-level array object (`ak.Array`) that we use is actually
the `awkward._v2.Array` object.
