Skip to content
This repository has been archived by the owner on May 9, 2020. It is now read-only.

Latest commit

 

History

History
25 lines (17 loc) · 491 Bytes

README.rst

File metadata and controls

25 lines (17 loc) · 491 Bytes

PyChef

image

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

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