A consistent interface to multiple IaaS clouds; in Python http://cloudbridge.cloudve.org
|
|
%!s(int64=10) %!d(string=hai) anos | |
|---|---|---|
| cloudbridge | %!s(int64=10) %!d(string=hai) anos | |
| test | %!s(int64=10) %!d(string=hai) anos | |
| .gitignore | %!s(int64=10) %!d(string=hai) anos | |
| .travis.yml | %!s(int64=10) %!d(string=hai) anos | |
| LICENSE | %!s(int64=10) %!d(string=hai) anos | |
| README.md | %!s(int64=10) %!d(string=hai) anos | |
| example.py | %!s(int64=10) %!d(string=hai) anos | |
| requirements.txt | %!s(int64=10) %!d(string=hai) anos | |
| setup.py | %!s(int64=10) %!d(string=hai) anos | |
| tox.ini | %!s(int64=10) %!d(string=hai) anos |
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())