8000 GitHub - elvinup/pychef: Python library to interact with the Chef server API
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
/ pychef Public
forked from coderanger/pychef

Python library to interact with the Chef server API

License

Notifications You must be signed in to change notification settings

elvinup/pychef

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Python library to interact with the Chef server API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.4%
  • Ruby 0.6%
0