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

nuwan_ag 691e1ea303 Merge branch 'master' of https://github.com/gvlproject/cloudbridge 11 年之前
cloudbridge c2b2a132f9 Fixed pylint warnings - avoid use of keyword id, fix up format string 11 年之前
test c2b2a132f9 Fixed pylint warnings - avoid use of keyword id, fix up format string 11 年之前
.gitignore bc79e797a9 Add .DS_Store to .gitignore 11 年之前
.travis.yml e090981cb5 Simplified tox coverage. Fixed typos 11 年之前
LICENSE 1500caecff Initial commit 11 年之前
README.md 2574c82589 Add testing docs to README 11 年之前
example.py 1cfae21f31 Merge branch 'master' of https://github.com/gvlproject/cloudbridge 11 年之前
requirements.txt 4b12ccfb9b Added setup.py 11 年之前
setup.py e090981cb5 Simplified tox coverage. Fixed typos 11 年之前
tox.ini e655553d97 Add the option to run the test suite on a specific cloud only (set via env vars) 11 年之前

README.md

cloudbridge

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

Code Climate Code Health Coverage Status Build Status Release Status

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())

Running tests

To run the test suite locally, install tox with pip install tox and run tox command. This will run all the tests for all the environments defined in file tox.ini. In order to properly run the tests, you should have all the environment variables listed in tox.ini file (under passenv) exported.

If you’d like to run the tests on a specific environment only, use a command like this: tox -e py27 (or python setup.py test directly). If you'd like to run the tests for a specific cloud only, you should export env var CB_TEST_PROVIDER and specify the desired provider name (e.g., ec2 or openstack) and then run the tox command.

Note that running the tests will create various cloud resources, for which you may incur costs.