OpenStack Compute (Nova) Client
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go to file
OpenStack Proposal Bot b00f6756c0
Updated from global requirements
8 years ago
doc Rename v1_1 to v2 8 years ago
novaclient add functional test for nova volume-attach bug 8 years ago
tools Sync latest code 9 years ago
.coveragerc Update .coveragerc 10 years ago
.gitignore Updates .gitignore 9 years ago
.gitreview Add .gitreview config file for gerrit. 12 years ago
.mailmap Add mailmap entry 9 years ago
.testr.conf Add OS_TEST_PATH to testr 8 years ago
CONTRIBUTING.rst Workflow documentation is now in infra-manual 8 years ago
HACKING.rst Clean up a little cruft 10 years ago
LICENSE whitespace cleanups 12 years ago
MANIFEST.in Update to latest openstack.common.setup. 10 years ago
README.rst Rename v1_1 to v2 8 years ago
openstack-common.conf Port to use oslo.i18n 9 years ago
requirements.txt Updated from global requirements 8 years ago
run_tests.sh Migrate to flake8. 10 years ago
setup.cfg Merge "Support building wheels (PEP-427)" 9 years ago
setup.py Updated from global requirements 9 years ago
test-requirements.txt Copy functional tests from tempest cli read only 8 years ago
tox.ini First pass at tempest_lib based functional testing 8 years ago

README.rst

Python bindings to the OpenStack Nova API

This is a client for the OpenStack Nova API. There's a Python API (the novaclient module), and a command-line script (nova). Each implements 100% of the OpenStack Nova API.

See the OpenStack CLI guide for information on how to use the nova command-line tool. You may also want to look at the OpenStack API documentation.

The project is hosted on Launchpad, where bugs can be filed. The code is hosted on Github. Patches must be submitted using Gerrit, not Github pull requests.

python-novaclient is licensed under the Apache License like the rest of OpenStack.

Contents:

Command-line API

Installing this package gets you a shell command, nova, that you can use to interact with any OpenStack cloud.

You'll need to provide your OpenStack username and password. You can do this with the --os-username, --os-password and --os-tenant-name params, but it's easier to just set them as environment variables:

export OS_USERNAME=openstack
export OS_PASSWORD=yadayada
export OS_TENANT_NAME=myproject

You will also need to define the authentication url with --os-auth-url and the version of the API with --os-compute-api-version. Or set them as an environment variables as well:

export OS_AUTH_URL=http://example.com:8774/v1.1/
export OS_COMPUTE_API_VERSION=2

If you are using Keystone, you need to set the OS_AUTH_URL to the keystone endpoint:

export OS_AUTH_URL=http://example.com:5000/v2.0/

Since Keystone can return multiple regions in the Service Catalog, you can specify the one you want with --os-region-name (or export OS_REGION_NAME). It defaults to the first in the list returned.

You'll find complete documentation on the shell by running nova help

Python API

There's also a complete Python API, but it has not yet been documented.

To use with nova, with keystone as the authentication system:

# use v2.0 auth with http://example.com:5000/v2.0/")
>>> from novaclient.v2 import client
>>> nt = client.Client(USER, PASS, TENANT, AUTH_URL, service_type="compute")
>>> nt.flavors.list()
[...]
>>> nt.servers.list()
[...]
>>> nt.keypairs.list()
[...]