Metadata-Version: 2.1
Name: PythonChef
Version: 0.4.0
Summary: Python implementation of a Chef API client.
Home-page: http://github.com/elvinup/pychef
Author: Noah Kantrowitz
Author-email: noah@coderanger.net
License: Apache 2.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Description-Content-Type: text/markdown
License-File: LICENSE

# PyChef

A Python API for interacting with a Chef server.

## Installation
```
pip3 install --user pythonchef
```

## Example
```
    from chef import autoconfigure, Node

    api = autoconfigure()
    n = Node('web1')
    print n['fqdn']
    n['myapp']['version'] = '1.0'
    n.save()
```

## Further Reading

For more information check out http://pychef.readthedocs.org/en/latest/index.html
