https://github.com/coderanger/pychef
Python library to interact with the Chef server API
https://github.com/coderanger/pychef
Last synced: 8 months ago
JSON representation
Python library to interact with the Chef server API
- Host: GitHub
- URL: https://github.com/coderanger/pychef
- Owner: coderanger
- License: other
- Archived: true
- Created: 2010-11-27T03:37:15.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2019-12-08T14:13:56.000Z (over 5 years ago)
- Last Synced: 2024-11-10T01:52:03.159Z (8 months ago)
- Language: Python
- Homepage:
- Size: 201 KB
- Stars: 195
- Watchers: 17
- Forks: 129
- Open Issues: 28
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
PyChef
======.. image:: https://secure.travis-ci.org/coderanger/pychef.svg?branch=master
:target: http://travis-ci.org/coderanger/pychefA 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