Navigation Menu

Skip to content

KristianOellegaard/python-cloudfoundry

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python-Cloudfoundry

Sample usage:

from cloudfoundry import CloudFoundryInterface

cfi = CloudFoundryInterface("api.vcap.me", "username", "password")
cfi.login()

cfi.delete_app('demo')
cfi.delte_service('demo')

or store token locally:

from cloudfoundry import CloudFoundryInterface

cfi = CloudFoundryInterface("api.vcap.me", "username", "password", store_token=True)
cfi.login()

cfi.delete_app('demo')
cfi.delte_service('demo')

About

Cloud Foundry (or derivative) python library/client. Should also work with Stackato and AppFog.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages