A consistent interface to multiple IaaS clouds; in Python http://cloudbridge.cloudve.org

Enis Afgan 0ea5e6426c Fix typos 10 ani în urmă
cloudbridge 0ea5e6426c Fix typos 10 ani în urmă
.gitignore 1500caecff Initial commit 10 ani în urmă
LICENSE 1500caecff Initial commit 10 ani în urmă
README.md 0ea5e6426c Fix typos 10 ani în urmă

README.md

libcloudbridge

libcloudbridge provides a layer of abstraction over different cloud providers. It's a straightfoward implementation of the bridge pattern.

Usage example

from cloudbridge.providers.interfaces import CloudProviderFactory
from cloudbridge.util import Bunch

config = Bunch(access_key='a_key',
               secret_key='s_key')

ec2 = CloudProviderFactory().get_interface_V1("ec2", config)
print ec2.Security.list_key_pairs()