Metadata-Version: 2.1
Name: doe-dap-dl
Version: 0.4.0
Summary: Packages for Jupyter Notebook users to interact with data from A2e, Livewire, and the SPP data platform.
Home-page: https://github.com/DAP-platform/dap-py
Author: DAP-Platform
Author-email: dapteam@pnnl.gov
License: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Scientific/Engineering
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: requests
Requires-Dist: matplotlib
Requires-Dist: numpy
Requires-Dist: netcdf4

# doe-dap-dl

This repository contains useful packages for Jupyter Notebook users to interact with data from A2e, Livewire, and the SPP data platform. Users will be able to import these packages and call high-level functions that handle all of the api calls, graphing, and interpolations to stream-line the end user's ability to analyze data.

## Example

```python
from doe_dap_dl import DAP
a2e = DAP('a2e.energy.gov')

a2e.setup_basic_auth(username='username', password='password')

# Search for files
filter = {
    'Dataset': 'wfip2/lidar.z04.a0',
    'date_time': {
        'between': ['20151004000000', '20151004020000']
    },
    'file_type': 'nc'
}

file_names = a2e.search(filter)

# download files
files = a2e.download_files(file_names)
```

[Main docs](https://github.com/DAP-platform/dap-py/blob/master/docs/doe_dap_dl.md)
[Search query docs](https://github.com/DAP-platform/dap-py/blob/master/docs/download-README.md)
[Plotting docs](https://github.com/DAP-platform/dap-py/blob/master/docs/plotting.md)
