Metadata-Version: 2.1
Name: PyChefRevival
Version: 0.3.1
Summary: Python implementation of a Chef API client.
Home-page: http://github.com/aryn-lacy/pychef
Author: Aryn Lacy
Author-email: aryn.lacy@gmail.com
License: Apache 2.0
Platform: UNKNOWN
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
Requires-Dist: six (>=1.9.0)
Requires-Dist: requests (>=2.7.0)

PyChefRevival
=============

A revival of https://github.com/coderanger/pychef

A Python API for interacting with a Chef server.

Example
-------

::

    from chef import autoconfigure, Node

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

Further Reading
---------------

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


