Metadata-Version: 2.1
Name: Py3Chef
Version: 0.4.0rc4
Summary: Python implementation of a Chef API client.
Home-page: http://github.com/leigh-johnson/pychef
Author: Noah Kantrowitz
Author-email: noah@coderanger.net
Maintainer: Leigh Johnson
Maintainer-email: leigh@bitsy.ai
License: Apache 2.0
Platform: UNKNOWN
Requires-Python: >3.6.9
License-File: LICENSE

PyChef
======

.. image:: https://secure.travis-ci.org/coderanger/pychef.svg?branch=master
    :target: http://travis-ci.org/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
---------------

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


