A consistent interface to multiple IaaS clouds; in Python http://cloudbridge.cloudve.org
|
|
пре 10 година | |
|---|---|---|
| cloudbridge | пре 10 година | |
| test | пре 10 година | |
| .gitignore | пре 10 година | |
| .travis.yml | пре 10 година | |
| LICENSE | пре 10 година | |
| README.md | пре 10 година | |
| example.py | пре 10 година | |
| requirements.txt | пре 10 година | |
| setup.py | пре 10 година | |
| tox.ini | пре 10 година |
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())