Metadata-Version: 2.0
Name: azkaban-client
Version: 0.0.7
Summary: azkaban_client based on azkaban restful apis
Home-page: http://github.com/ruoyuchen/azkaban_client
Author: ruoyuchen
Author-email: smhsma@aliyun.com
License: MIT
Keywords: azkaban client
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Text Processing :: Linguistic
Requires-Dist: requests

# azkaban_client
client based on restful API




#### Create a project

```py

from azkaban import *

fetcher = CookiesFetcher(user, pwd)
project = Project('WillTest', 'first test', fetcher)
project.create_prj()

```


#### Upload zip file to the project

```py
project.upload_zip('/tmp/xxx.zip')
```

#### Get all flows from a prject

```py
project.fetch_flow()
```


