Skip to main content

A simple requests based wrapper for a Chef server api.

Project description

Cheffy provides a method-based access to Chef server api. Typical usage often looks like this:

# -*- coding: utf-8 -*-
from cheffy.client import Client
from cheffy.rsa import Key

chef_host = '123.123.123.123'
chef_user = 'john'

with open("private.pem", "r") as f:
    key = Key(f.read())

chef_client = Client(key, chef_host, chef_user)

# get clients list
# chef_request its a dict with the request data to the chef
# Its handy for logging.
chef_request, chef_response = chef_client.get('/clients')

clients = json.loads(chef_response.text)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cheffy-0.3.7.tar.gz (6.2 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page