Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 461 Bytes

README.md

File metadata and controls

22 lines (17 loc) · 461 Bytes

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')