Metadata-Version: 2.1
Name: parade
Version: 0.2.5
Summary: A ETL engine for dataframe based data task
Home-page: https://github.com/bailaohe/parade
Author: He Bai
Author-email: bailaohe@gmail.com
License: UNKNOWN
Keywords: parade,ETL,dataframe,schedule,database
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Database
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Requires-Python: >=3.4
Requires-Dist: pandas
Requires-Dist: sqlalchemy
Requires-Dist: requests
Requires-Dist: pyyaml
Requires-Dist: xlsxwriter
Provides-Extra: dash-server
Requires-Dist: parade-server[dash] ; extra == 'dash-server'
Provides-Extra: feature
Requires-Dist: parade-feature ; extra == 'feature'
Provides-Extra: mongo
Requires-Dist: pymongo ; extra == 'mongo'
Provides-Extra: mysql
Requires-Dist: mysqlclient ; extra == 'mysql'
Provides-Extra: notebook
Requires-Dist: parade-notebook ; extra == 'notebook'
Provides-Extra: pg
Requires-Dist: psycopg2 ; extra == 'pg'
Provides-Extra: redis
Requires-Dist: redis ; extra == 'redis'
Provides-Extra: server
Requires-Dist: parade-server ; extra == 'server'

# Parade

[![Build Status](https://travis-ci.org/bailaohe/parade.svg?branch=master)](https://travis-ci.org/bailaohe/parade)

`Parade` is a simple and out-of-box toolkit to handle data work such as ETL, data analysis, BI reports, etc, and enable fast and flexible integration mechanism with applications. It can be used for a wide range of purposes, from composing & scheduling data workflow to providing unified web-APIs of data query.

## Requirements

* Python 3.4+
* Works on Linux, Windows, Mac OSX, BSD

## Install

The quich way:

```bash
> pip install parade
```

## Basic Usage & Tutorials

See [here](http://parade.readthedocs.io/en/latest/).


