A consistent interface to multiple IaaS clouds; in Python http://cloudbridge.cloudve.org
|
|
il y a 10 ans | |
|---|---|---|
| cloudbridge | il y a 10 ans | |
| test | il y a 10 ans | |
| .gitignore | il y a 10 ans | |
| .travis.yml | il y a 10 ans | |
| LICENSE | il y a 10 ans | |
| README.md | il y a 10 ans | |
| example.py | il y a 10 ans | |
| requirements.txt | il y a 10 ans | |
| setup.py | il y a 10 ans | |
| tox.ini | il y a 10 ans |
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())