openstacksdk


Nameopenstacksdk JSON
Version 3.0.0 PyPI version JSON
download
home_pagehttps://docs.openstack.org/openstacksdk/
SummaryAn SDK for building applications to work with OpenStack
upload_time2024-02-22 15:36:52
maintainer
docs_urlNone
authorOpenStack
requires_python>=3.7
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ============
openstacksdk
============

openstacksdk is a client library for building applications to work
with OpenStack clouds. The project aims to provide a consistent and
complete set of interactions with OpenStack's many services, along with
complete documentation, examples, and tools.

It also contains an abstraction interface layer. Clouds can do many things, but
there are probably only about 10 of them that most people care about with any
regularity. If you want to do complicated things, the per-service oriented
portions of the SDK are for you. However, if what you want is to be able to
write an application that talks to any OpenStack cloud regardless of
configuration, then the Cloud Abstraction layer is for you.

More information about the history of openstacksdk can be found at
https://docs.openstack.org/openstacksdk/latest/contributor/history.html

Getting started
---------------

openstacksdk aims to talk to any OpenStack cloud. To do this, it requires a
configuration file. openstacksdk favours ``clouds.yaml`` files, but can also
use environment variables. The ``clouds.yaml`` file should be provided by your
cloud provider or deployment tooling. An example:

.. code-block:: yaml

    clouds:
      mordred:
        region_name: Dallas
        auth:
          username: 'mordred'
          password: XXXXXXX
          project_name: 'demo'
          auth_url: 'https://identity.example.com'

openstacksdk will look for ``clouds.yaml`` files in the following locations:

* ``.`` (the current directory)
* ``$HOME/.config/openstack``
* ``/etc/openstack``

openstacksdk consists of three layers. Most users will make use of the *proxy*
layer. Using the above ``clouds.yaml``, consider listing servers:

.. code-block:: python

    import openstack

    # Initialize and turn on debug logging
    openstack.enable_logging(debug=True)

    # Initialize connection
    conn = openstack.connect(cloud='mordred')

    # List the servers
    for server in conn.compute.servers():
        print(server.to_dict())

openstacksdk also contains a higher-level *cloud* layer based on logical
operations:

.. code-block:: python

    import openstack

    # Initialize and turn on debug logging
    openstack.enable_logging(debug=True)

    # Initialize connection
    conn = openstack.connect(cloud='mordred')

    # List the servers
    for server in conn.list_servers():
        print(server.to_dict())

The benefit of this layer is mostly seen in more complicated operations that
take multiple steps and where the steps vary across providers. For example:

.. code-block:: python

    import openstack

    # Initialize and turn on debug logging
    openstack.enable_logging(debug=True)

    # Initialize connection
    conn = openstack.connect(cloud='mordred')

    # Upload an image to the cloud
    image = conn.create_image(
        'ubuntu-trusty', filename='ubuntu-trusty.qcow2', wait=True)

    # Find a flavor with at least 512M of RAM
    flavor = conn.get_flavor_by_ram(512)

    # Boot a server, wait for it to boot, and then do whatever is needed
    # to get a public IP address for it.
    conn.create_server(
        'my-server', image=image, flavor=flavor, wait=True, auto_ip=True)

Finally, there is the low-level *resource* layer. This provides support for the
basic CRUD operations supported by REST APIs and is the base building block for
the other layers. You typically will not need to use this directly:

.. code-block:: python

    import openstack
    import openstack.config.loader
    import openstack.compute.v2.server

    # Initialize and turn on debug logging
    openstack.enable_logging(debug=True)

    # Initialize connection
    conn = openstack.connect(cloud='mordred')

    # List the servers
    for server in openstack.compute.v2.server.Server.list(session=conn.compute):
        print(server.to_dict())

.. _openstack.config:

Configuration
-------------

openstacksdk uses the ``openstack.config`` module to parse configuration.
``openstack.config`` will find cloud configuration for as few as one cloud and
as many as you want to put in a config file. It will read environment variables
and config files, and it also contains some vendor specific default values so
that you don't have to know extra info to use OpenStack

* If you have a config file, you will get the clouds listed in it
* If you have environment variables, you will get a cloud named `envvars`
* If you have neither, you will get a cloud named `defaults` with base defaults

You can view the configuration identified by openstacksdk in your current
environment by running ``openstack.config.loader``. For example:

.. code-block:: bash

   $ python -m openstack.config.loader

More information at https://docs.openstack.org/openstacksdk/latest/user/config/configuration.html

Supported services
------------------

The following services are currently supported. A full list of all available
OpenStack service can be found in the `Project Navigator`__.

.. __: https://www.openstack.org/software/project-navigator/openstack-components#openstack-services

.. note::

   Support here does not guarantee full-support for all APIs. It simply means
   some aspect of the project is supported.

.. list-table:: Supported services
   :widths: 15 25 10 40
   :header-rows: 1

   * - Service
     - Description
     - Cloud Layer
     - Proxy & Resource Layer

   * - **Compute**
     -
     -
     -

   * - Nova
     - Compute
     - ✔
     - ✔ (``openstack.compute``)

   * - **Hardware Lifecycle**
     -
     -
     -

   * - Ironic
     - Bare metal provisioning
     - ✔
     - ✔ (``openstack.baremetal``, ``openstack.baremetal_introspection``)

   * - Cyborg
     - Lifecycle management of accelerators
     - ✔
     - ✔ (``openstack.accelerator``)

   * - **Storage**
     -
     -
     -

   * - Cinder
     - Block storage
     - ✔
     - ✔ (``openstack.block_storage``)

   * - Swift
     - Object store
     - ✔
     - ✔ (``openstack.object_store``)

   * - Cinder
     - Shared filesystems
     - ✔
     - ✔ (``openstack.shared_file_system``)

   * - **Networking**
     -
     -
     -

   * - Neutron
     - Networking
     - ✔
     - ✔ (``openstack.network``)

   * - Octavia
     - Load balancing
     - ✔
     - ✔ (``openstack.load_balancer``)

   * - Designate
     - DNS
     - ✔
     - ✔ (``openstack.dns``)

   * - **Shared services**
     -
     -
     -

   * - Keystone
     - Identity
     - ✔
     - ✔ (``openstack.identity``)

   * - Placement
     - Placement
     - ✔
     - ✔ (``openstack.placement``)

   * - Glance
     - Image storage
     - ✔
     - ✔ (``openstack.image``)

   * - Barbican
     - Key management
     - ✔
     - ✔ (``openstack.key_manager``)

   * - **Workload provisioning**
     -
     -
     -

   * - Magnum
     - Container orchestration engine provisioning
     - ✔
     - ✔ (``openstack.container_infrastructure_management``)

   * - **Orchestration**
     -
     -
     -

   * - Heat
     - Orchestration
     - ✔
     - ✔ (``openstack.orchestration``)

   * - Senlin
     - Clustering
     - ✔
     - ✔ (``openstack.clustering``)

   * - Mistral
     - Workflow
     - ✔
     - ✔ (``openstack.workflow``)

   * - Zaqar
     - Messaging
     - ✔
     - ✔ (``openstack.message``)

   * - **Application lifecycle**
     -
     -
     -

   * - Masakari
     - Instances high availability service
     - ✔
     - ✔ (``openstack.instance_ha``)

Links
-----

* `Issue Tracker <https://bugs.launchpad.net/openstacksdk>`_
* `Code Review <https://review.opendev.org/#/q/status:open+project:openstack/openstacksdk,n,z>`_
* `Documentation <https://docs.openstack.org/openstacksdk/latest/>`_
* `PyPI <https://pypi.org/project/openstacksdk/>`_
* `Mailing list <https://lists.openstack.org/mailman3/lists/openstack-discuss.lists.openstack.org/>`_
* `Release Notes <https://docs.openstack.org/releasenotes/openstacksdk>`_




            

Raw data

            {
    "_id": null,
    "home_page": "https://docs.openstack.org/openstacksdk/",
    "name": "openstacksdk",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "",
    "author": "OpenStack",
    "author_email": "openstack-discuss@lists.openstack.org",
    "download_url": "https://files.pythonhosted.org/packages/2e/5e/e5410863ea1fd45107ce23c169acebab54b5e7f6f61af9a7afee49bfec22/openstacksdk-3.0.0.tar.gz",
    "platform": null,
    "description": "============\nopenstacksdk\n============\n\nopenstacksdk is a client library for building applications to work\nwith OpenStack clouds. The project aims to provide a consistent and\ncomplete set of interactions with OpenStack's many services, along with\ncomplete documentation, examples, and tools.\n\nIt also contains an abstraction interface layer. Clouds can do many things, but\nthere are probably only about 10 of them that most people care about with any\nregularity. If you want to do complicated things, the per-service oriented\nportions of the SDK are for you. However, if what you want is to be able to\nwrite an application that talks to any OpenStack cloud regardless of\nconfiguration, then the Cloud Abstraction layer is for you.\n\nMore information about the history of openstacksdk can be found at\nhttps://docs.openstack.org/openstacksdk/latest/contributor/history.html\n\nGetting started\n---------------\n\nopenstacksdk aims to talk to any OpenStack cloud. To do this, it requires a\nconfiguration file. openstacksdk favours ``clouds.yaml`` files, but can also\nuse environment variables. The ``clouds.yaml`` file should be provided by your\ncloud provider or deployment tooling. An example:\n\n.. code-block:: yaml\n\n    clouds:\n      mordred:\n        region_name: Dallas\n        auth:\n          username: 'mordred'\n          password: XXXXXXX\n          project_name: 'demo'\n          auth_url: 'https://identity.example.com'\n\nopenstacksdk will look for ``clouds.yaml`` files in the following locations:\n\n* ``.`` (the current directory)\n* ``$HOME/.config/openstack``\n* ``/etc/openstack``\n\nopenstacksdk consists of three layers. Most users will make use of the *proxy*\nlayer. Using the above ``clouds.yaml``, consider listing servers:\n\n.. code-block:: python\n\n    import openstack\n\n    # Initialize and turn on debug logging\n    openstack.enable_logging(debug=True)\n\n    # Initialize connection\n    conn = openstack.connect(cloud='mordred')\n\n    # List the servers\n    for server in conn.compute.servers():\n        print(server.to_dict())\n\nopenstacksdk also contains a higher-level *cloud* layer based on logical\noperations:\n\n.. code-block:: python\n\n    import openstack\n\n    # Initialize and turn on debug logging\n    openstack.enable_logging(debug=True)\n\n    # Initialize connection\n    conn = openstack.connect(cloud='mordred')\n\n    # List the servers\n    for server in conn.list_servers():\n        print(server.to_dict())\n\nThe benefit of this layer is mostly seen in more complicated operations that\ntake multiple steps and where the steps vary across providers. For example:\n\n.. code-block:: python\n\n    import openstack\n\n    # Initialize and turn on debug logging\n    openstack.enable_logging(debug=True)\n\n    # Initialize connection\n    conn = openstack.connect(cloud='mordred')\n\n    # Upload an image to the cloud\n    image = conn.create_image(\n        'ubuntu-trusty', filename='ubuntu-trusty.qcow2', wait=True)\n\n    # Find a flavor with at least 512M of RAM\n    flavor = conn.get_flavor_by_ram(512)\n\n    # Boot a server, wait for it to boot, and then do whatever is needed\n    # to get a public IP address for it.\n    conn.create_server(\n        'my-server', image=image, flavor=flavor, wait=True, auto_ip=True)\n\nFinally, there is the low-level *resource* layer. This provides support for the\nbasic CRUD operations supported by REST APIs and is the base building block for\nthe other layers. You typically will not need to use this directly:\n\n.. code-block:: python\n\n    import openstack\n    import openstack.config.loader\n    import openstack.compute.v2.server\n\n    # Initialize and turn on debug logging\n    openstack.enable_logging(debug=True)\n\n    # Initialize connection\n    conn = openstack.connect(cloud='mordred')\n\n    # List the servers\n    for server in openstack.compute.v2.server.Server.list(session=conn.compute):\n        print(server.to_dict())\n\n.. _openstack.config:\n\nConfiguration\n-------------\n\nopenstacksdk uses the ``openstack.config`` module to parse configuration.\n``openstack.config`` will find cloud configuration for as few as one cloud and\nas many as you want to put in a config file. It will read environment variables\nand config files, and it also contains some vendor specific default values so\nthat you don't have to know extra info to use OpenStack\n\n* If you have a config file, you will get the clouds listed in it\n* If you have environment variables, you will get a cloud named `envvars`\n* If you have neither, you will get a cloud named `defaults` with base defaults\n\nYou can view the configuration identified by openstacksdk in your current\nenvironment by running ``openstack.config.loader``. For example:\n\n.. code-block:: bash\n\n   $ python -m openstack.config.loader\n\nMore information at https://docs.openstack.org/openstacksdk/latest/user/config/configuration.html\n\nSupported services\n------------------\n\nThe following services are currently supported. A full list of all available\nOpenStack service can be found in the `Project Navigator`__.\n\n.. __: https://www.openstack.org/software/project-navigator/openstack-components#openstack-services\n\n.. note::\n\n   Support here does not guarantee full-support for all APIs. It simply means\n   some aspect of the project is supported.\n\n.. list-table:: Supported services\n   :widths: 15 25 10 40\n   :header-rows: 1\n\n   * - Service\n     - Description\n     - Cloud Layer\n     - Proxy & Resource Layer\n\n   * - **Compute**\n     -\n     -\n     -\n\n   * - Nova\n     - Compute\n     - \u2714\n     - \u2714 (``openstack.compute``)\n\n   * - **Hardware Lifecycle**\n     -\n     -\n     -\n\n   * - Ironic\n     - Bare metal provisioning\n     - \u2714\n     - \u2714 (``openstack.baremetal``, ``openstack.baremetal_introspection``)\n\n   * - Cyborg\n     - Lifecycle management of accelerators\n     - \u2714\n     - \u2714 (``openstack.accelerator``)\n\n   * - **Storage**\n     -\n     -\n     -\n\n   * - Cinder\n     - Block storage\n     - \u2714\n     - \u2714 (``openstack.block_storage``)\n\n   * - Swift\n     - Object store\n     - \u2714\n     - \u2714 (``openstack.object_store``)\n\n   * - Cinder\n     - Shared filesystems\n     - \u2714\n     - \u2714 (``openstack.shared_file_system``)\n\n   * - **Networking**\n     -\n     -\n     -\n\n   * - Neutron\n     - Networking\n     - \u2714\n     - \u2714 (``openstack.network``)\n\n   * - Octavia\n     - Load balancing\n     - \u2714\n     - \u2714 (``openstack.load_balancer``)\n\n   * - Designate\n     - DNS\n     - \u2714\n     - \u2714 (``openstack.dns``)\n\n   * - **Shared services**\n     -\n     -\n     -\n\n   * - Keystone\n     - Identity\n     - \u2714\n     - \u2714 (``openstack.identity``)\n\n   * - Placement\n     - Placement\n     - \u2714\n     - \u2714 (``openstack.placement``)\n\n   * - Glance\n     - Image storage\n     - \u2714\n     - \u2714 (``openstack.image``)\n\n   * - Barbican\n     - Key management\n     - \u2714\n     - \u2714 (``openstack.key_manager``)\n\n   * - **Workload provisioning**\n     -\n     -\n     -\n\n   * - Magnum\n     - Container orchestration engine provisioning\n     - \u2714\n     - \u2714 (``openstack.container_infrastructure_management``)\n\n   * - **Orchestration**\n     -\n     -\n     -\n\n   * - Heat\n     - Orchestration\n     - \u2714\n     - \u2714 (``openstack.orchestration``)\n\n   * - Senlin\n     - Clustering\n     - \u2714\n     - \u2714 (``openstack.clustering``)\n\n   * - Mistral\n     - Workflow\n     - \u2714\n     - \u2714 (``openstack.workflow``)\n\n   * - Zaqar\n     - Messaging\n     - \u2714\n     - \u2714 (``openstack.message``)\n\n   * - **Application lifecycle**\n     -\n     -\n     -\n\n   * - Masakari\n     - Instances high availability service\n     - \u2714\n     - \u2714 (``openstack.instance_ha``)\n\nLinks\n-----\n\n* `Issue Tracker <https://bugs.launchpad.net/openstacksdk>`_\n* `Code Review <https://review.opendev.org/#/q/status:open+project:openstack/openstacksdk,n,z>`_\n* `Documentation <https://docs.openstack.org/openstacksdk/latest/>`_\n* `PyPI <https://pypi.org/project/openstacksdk/>`_\n* `Mailing list <https://lists.openstack.org/mailman3/lists/openstack-discuss.lists.openstack.org/>`_\n* `Release Notes <https://docs.openstack.org/releasenotes/openstacksdk>`_\n\n\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "An SDK for building applications to work with OpenStack",
    "version": "3.0.0",
    "project_urls": {
        "Homepage": "https://docs.openstack.org/openstacksdk/"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a60d2bd851b5694ffdfe2fa1b8c226b27357447eaeccfaa43150984a69649f9",
                "md5": "e6b591f29502e5782d97afba8f1a5068",
                "sha256": "f188e81f881421bdff8d098ce432bf66c78a5a64f1349129c74b5144db9dd27c"
            },
            "downloads": -1,
            "filename": "openstacksdk-3.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e6b591f29502e5782d97afba8f1a5068",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 1715895,
            "upload_time": "2024-02-22T15:36:49",
            "upload_time_iso_8601": "2024-02-22T15:36:49.230090Z",
            "url": "https://files.pythonhosted.org/packages/4a/60/d2bd851b5694ffdfe2fa1b8c226b27357447eaeccfaa43150984a69649f9/openstacksdk-3.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e5ee5410863ea1fd45107ce23c169acebab54b5e7f6f61af9a7afee49bfec22",
                "md5": "af550668dffef870c22da351cf33fd2c",
                "sha256": "b0c7f9a025d5da92ad4c762941e6acc4cb53930a07ff739a9aebcc5e5a724ae6"
            },
            "downloads": -1,
            "filename": "openstacksdk-3.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "af550668dffef870c22da351cf33fd2c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 1214285,
            "upload_time": "2024-02-22T15:36:52",
            "upload_time_iso_8601": "2024-02-22T15:36:52.634331Z",
            "url": "https://files.pythonhosted.org/packages/2e/5e/e5410863ea1fd45107ce23c169acebab54b5e7f6f61af9a7afee49bfec22/openstacksdk-3.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-22 15:36:52",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "openstacksdk"
}
        
Elapsed time: 0.23707s