OpenStack Command-line Client
Project description
OpenStackClient (aka OSC) is a command-line client for OpenStack that brings the command set for Compute, Identity, Image, Object Store and Volume APIs together in a single shell with a uniform command structure.
The primary goal is to provide a unified shell command structure and a common language to describe operations in OpenStack.
PyPi - package installation
Launchpad project - release management
Blueprints - feature specifications
Bugs - issue tracking
License: Apache 2.0
Getting Started
OpenStack Client can be installed from PyPI using pip:
pip install python-openstackclient
There are a few variants on getting help. A list of global options and supported commands is shown with --help:
openstack --help
There is also a help command that can be used to get help text for a specific command:
openstack help openstack help server create
Configuration
The CLI is configured via environment variables and command-line options as listed in http://docs.openstack.org/developer/python-openstackclient/authentication.html.
Authentication using username/password is most commonly used:
export OS_AUTH_URL=<url-to-openstack-identity> export OS_PROJECT_NAME=<project-name> export OS_USERNAME=<username> export OS_PASSWORD=<password> # (optional)
The corresponding command-line options look very similar:
--os-auth-url <url> --os-project-name <project-name> --os-username <username> [--os-password <password>]
If a password is not provided above (in plaintext), you will be interactively prompted to provide one securely.
Authentication may also be performed using an already-acquired token and a URL pointing directly to the service API that presumably was acquired from the Service Catalog:
export OS_TOKEN=<token> export OS_URL=<url-to-openstack-service>
The corresponding command-line options look very similar:
--os-token <token> --os-url <url-to-openstack-service>
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file python-openstackclient-1.1.0.tar.gz.
File metadata
- Download URL: python-openstackclient-1.1.0.tar.gz
- Upload date:
- Size: 213.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
875b54ac95e29cc83ae76513b48306c8493c12d5ba7d23aea3432216f2fa91ba
|
|
| MD5 |
c965b343b0fdf97d01e28d5460c7c175
|
|
| BLAKE2b-256 |
44d019154411dbc682d9c9df17f7ee5a32af714c0220a395596aeb744dd1b483
|
File details
Details for the file python_openstackclient-1.1.0-py2.py3-none-any.whl.
File metadata
- Download URL: python_openstackclient-1.1.0-py2.py3-none-any.whl
- Upload date:
- Size: 271.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
502a6150e9f0ac84327aa716d44a8075c577ca1ebb6a79feb3721c59b75e736c
|
|
| MD5 |
5b025465d933fd923cf9c16544286cf6
|
|
| BLAKE2b-256 |
976a66d005c0d5db377c940f04ecec7ad96d5f6f791f353110bd16f9144e3386
|