Metadata-Version: 2.0
Name: macumba
Version: 0.6
Summary: Python 3 bindings for Juju
Home-page: https://github.com/Ubuntu-Solutions-Engineering/macumba
Author: Canonical Solutions Engineering
Author-email: ubuntu-dev@lists.ubuntu.com
License: AGPLv3+
Platform: UNKNOWN

# macumba

python3 bindings for juju

# Usage

This example demonstrates how to deploy Openstack Keystone into Juju

```python
#!/usr/bin/env python3
import sys
import macumba

JUJU_URL = 'wss://localhost:17070/'
JUJU_PASS = 'pass'

if __name__ == "__main__":
    j = macumba.JujuClient(url=JUJU_URL, password=JUJU_PASS)
    j.login()
    j.deploy('keystone')
```

## macumba-shell

Running `macumba-shell` will allow you to work with the api directly.

To get help with the library run

```
>>> help(j)
```

To deploy a charm

```
>>> j.deploy('mysql', 'mysql')
```

# Copyright

2014, 2015 Canonical, Ltd.
2014, 2015 Adam Stokes <adam.stokes@ubuntu.com>


# License

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.


