GitXplorerGitXplorer
v

escafil

public
1 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
13f81651aa14f06017600d4c921696cfc2591474

Version 0.0.3

vvreon committed 8 years ago
Unverified
8224c7ad99451c676535764797809bc6a809c3fa

Fix for null items field

vvreon committed 8 years ago
Unverified
1248fb9370336b52f4ebd43d5c8fcb9dc44efad9

Don't explicitly inherit from object

vvreon committed 8 years ago
Unverified
ed18819ccfcad28d87002da0188216ea91223edf

Ignore build and dist dirs

vvreon committed 8 years ago
Unverified
fed1e35af1b049ed2a700005d438fbf70bf742f6

Bump version

vvreon committed 8 years ago
Unverified
f8cea699caf389e1d1d955358c14ef8ee77005a1

Support DELETE body (for DeleteOptions)

vvreon committed 8 years ago

README

The README file for this repository.

Escafil


Escafil is a minimal client for the Kubernetes API::

    from escafil import Kubernetes, APIObject

    kube = Kubernetes('http://localhost:8001')

    class Pod(APIObject):
        pass

    kube.list(Pod)
    pod = kube.get(Pod, 'my-pod', namespace='default')
    print(pod['spec']['containers'][0]['name'])

The API is not yet stable; use at your own risk.