Metadata-Version: 2.1
Name: wallaby_data_access
Version: 0.3.1
Summary: Module for accessing WALLABY internal release data
Home-page: https://github.com/AusSRC/WALLABY_data_access
Author: Austin Shen
Author-email: austin.shen@csiro.au
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown

# WALLABY data access

Python module with tools for accessing internal release data from the WALLABY database

## Configuration

There are two requirements for accessing data via the module. They are:

1. Clone of [WALLABY_database](https://github.com/AusSRC/WALLABY_database) repository
2. Environment file with database credentials.

The `.env` file requires:

```
DATABASE_HOST
DATABASE_NAME
DATABASE_USER
DATABASE_PASS
```

Once these files are in your working directory you can specify them in the `connect()` function

```
import wallaby_data_access as wallaby
wallaby.connect(db='<PATH_TO_WALLABY_database>', env='<PATH_TO_.env>')
```


