A consistent interface to multiple IaaS clouds; in Python http://cloudbridge.cloudve.org
|
|
před 10 roky | |
|---|---|---|
| cloudbridge | před 10 roky | |
| test | před 10 roky | |
| .gitignore | před 10 roky | |
| LICENSE | před 10 roky | |
| README.md | před 10 roky | |
| example.py | před 10 roky | |
| requirements.txt | před 10 roky |
cloudbridge 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 bunch import Bunch
config = Bunch(access_key='a_key',
secret_key='s_key')
provider = CloudProviderFactory().create_provider(ProviderList.EC2, config)
print provider.security.list_key_pairs()