{"id":20111184,"url":"https://github.com/openstack/python-manilaclient","last_synced_at":"2025-04-04T07:03:30.376Z","repository":{"id":20956618,"uuid":"24245260","full_name":"openstack/python-manilaclient","owner":"openstack","description":"Python bindings for Manila. Mirror of code maintained at opendev.org.","archived":false,"fork":false,"pushed_at":"2025-03-06T16:42:25.000Z","size":10041,"stargazers_count":32,"open_issues_count":0,"forks_count":20,"subscribers_count":10,"default_branch":"master","last_synced_at":"2025-03-28T06:06:32.215Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://opendev.org/openstack/python-manilaclient","language":"Python","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/openstack.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":"CONTRIBUTING.rst","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2014-09-19T20:57:55.000Z","updated_at":"2025-03-06T16:39:45.000Z","dependencies_parsed_at":"2024-02-06T08:29:52.818Z","dependency_job_id":"78a8a4a0-546a-45e3-92e4-ae64581d6c8a","html_url":"https://github.com/openstack/python-manilaclient","commit_stats":null,"previous_names":[],"tags_count":117,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fpython-manilaclient","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fpython-manilaclient/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fpython-manilaclient/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fpython-manilaclient/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/openstack","download_url":"https://codeload.github.com/openstack/python-manilaclient/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247135138,"owners_count":20889420,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-13T18:14:46.047Z","updated_at":"2025-04-04T07:03:30.359Z","avatar_url":"https://github.com/openstack.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"========================\nTeam and repository tags\n========================\n\n.. image:: https://governance.openstack.org/tc/badges/python-manilaclient.svg\n    :target: https://governance.openstack.org/tc/reference/tags/index.html\n\n.. Change things from this point on\n\nPython bindings to the OpenStack Manila API\n===========================================\n\n.. only: html\n\n   .. image:: https://img.shields.io/pypi/v/python-manilaclient.svg\n      :target: https://pypi.org/project/python-manilaclient/\n      :alt: Latest Version\n\nThis is a client for the OpenStack Manila API. There's a Python API (the\n``manilaclient`` module), and a command-line script (``manila``). Each\nimplements 100% of the OpenStack Manila API.\n\nSee the `OpenStack CLI guide`_ for information on how to use the ``manila``\ncommand-line tool. You may also want to look at the\n`OpenStack API documentation`_.\n\n.. _OpenStack CLI Guide: https://docs.openstack.org/python-openstackclient/latest/cli/\n.. _OpenStack API documentation: https://docs.openstack.org/api/\n\nThe project is hosted on `Launchpad`_, where bugs can be filed. The code is\nhosted on `Github`_. Patches must be submitted using `Gerrit`_, *not* Github\npull requests.\n\n.. _Github: https://github.com/openstack/python-manilaclient\n.. _Launchpad: https://launchpad.net/python-manilaclient\n.. _Gerrit: https://docs.openstack.org/infra/manual/developers.html#development-workflow\n\nThis code is a fork of `Cinderclient`_ of Grizzly release and then it was\ndeveloped separately. Cinderclient code is a fork of\n`Jacobian's python-cloudservers`__ If you need API support for the Rackspace\nAPI solely or the BSD license, you should use that repository.\npython-manilaclient is licensed under the Apache License like the rest of\nOpenStack.\n\n.. _Cinderclient: https://github.com/openstack/python-cinderclient\n__ https://github.com/jacobian/python-cloudservers\n\n.. contents:: Contents:\n   :local:\n\nCommand-line API\n----------------\n\nInstalling this package gets you a shell command, ``manila``, that you\ncan use to interact with any Rackspace compatible API (including OpenStack).\n\nYou'll need to provide your OpenStack username and password. You can do this\nwith the ``--os-username``, ``--os-password`` and  ``--os-tenant-name``\nparams, but it's easier to just set them as environment variables::\n\n    export OS_USERNAME=foouser\n    export OS_PASSWORD=barpass\n    export OS_TENANT_NAME=fooproject\n\nYou will also need to define the authentication url either with param\n``--os-auth-url`` or as an environment variable::\n\n    export OS_AUTH_URL=http://example.com:5000/v2.0/\n\nSince Keystone can return multiple regions in the Service Catalog, you\ncan specify the one you want with ``--os-region-name`` (or\n``export OS_REGION_NAME``). It defaults to the first in the list returned.\n\nYou'll find complete documentation on the shell by running\n``manila help``, see ``manila help COMMAND`` for help on a specific command.\n\nPython API\n----------\n\nThere's also a complete Python API, but it has not yet been documented.\n\nQuick-start using keystone::\n\n    # use v2.0 auth with http://example.com:5000/v2.0/\n    \u003e\u003e\u003e from manilaclient.v1 import client\n    \u003e\u003e\u003e nt = client.Client(USER, PASS, TENANT, AUTH_URL, service_type=\"share\")\n    \u003e\u003e\u003e nt.shares.list()\n    [...]\n\n* License: Apache License, Version 2.0\n* `PyPi`_ - package installation\n* `Online Documentation`_\n* `Launchpad project`_ - release management\n* `Blueprints`_ - feature specifications\n* `Bugs`_ - issue tracking\n* `Source`_\n* `How to Contribute`_\n* `Release Notes`_\n\n.. _PyPi: https://pypi.org/project/python-manilaclient\n.. _Online Documentation: https://docs.openstack.org/python-manilaclient/latest/\n.. _Launchpad project: https://launchpad.net/python-manilaclient\n.. _Blueprints: https://blueprints.launchpad.net/python-manilaclient\n.. _Bugs: https://bugs.launchpad.net/python-manilaclient\n.. _Source: https://opendev.org/openstack/python-manilaclient\n.. _How to Contribute: https://docs.openstack.org/infra/manual/developers.html\n.. _Release Notes: https://docs.openstack.org/releasenotes/python-manilaclient\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenstack%2Fpython-manilaclient","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopenstack%2Fpython-manilaclient","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenstack%2Fpython-manilaclient/lists"}