{"id":20111216,"url":"https://github.com/openstack/python-mistralclient","last_synced_at":"2025-04-06T05:17:59.503Z","repository":{"id":13202017,"uuid":"15885891","full_name":"openstack/python-mistralclient","owner":"openstack","description":"Python client for Mistral REST API. Mirror of code maintained at opendev.org.","archived":false,"fork":false,"pushed_at":"2025-03-26T10:07:28.000Z","size":1477,"stargazers_count":55,"open_issues_count":0,"forks_count":23,"subscribers_count":14,"default_branch":"master","last_synced_at":"2025-03-30T04:09:51.139Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://opendev.org/openstack/python-mistralclient","language":"Python","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","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-01-13T23:40:34.000Z","updated_at":"2025-03-26T10:07:32.000Z","dependencies_parsed_at":"2024-07-28T16:44:59.386Z","dependency_job_id":"4bcc147a-9f35-465b-9d30-c50bc37f3543","html_url":"https://github.com/openstack/python-mistralclient","commit_stats":null,"previous_names":[],"tags_count":91,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fpython-mistralclient","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fpython-mistralclient/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fpython-mistralclient/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openstack%2Fpython-mistralclient/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/openstack","download_url":"https://codeload.github.com/openstack/python-mistralclient/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247436398,"owners_count":20938555,"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:55.239Z","updated_at":"2025-04-06T05:17:59.444Z","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-mistralclient.svg\n    :target: https://governance.openstack.org/tc/reference/tags/index.html\n\nMistral\n=======\n\n.. image:: https://img.shields.io/pypi/v/python-mistralclient.svg\n    :target: https://pypi.org/project/python-mistralclient/\n    :alt: Latest Version\n\nMistral is a workflow service. Most business processes consist of multiple\ndistinct interconnected steps that need to be executed in a particular\norder in a distributed environment. A user can describe such a process as a set\nof tasks and their transitions. After that, it is possible to upload such a\ndescription to Mistral, which will take care of state management, correct\nexecution order, parallelism, synchronization and high availability.\n\nMistral also provides flexible task scheduling so that it can run a process\naccording to a specified schedule (for example, every Sunday at 4.00pm) instead\nof running it immediately. In Mistral terminology such a set of tasks and\nrelations between them is called a workflow.\n\nMistral client\n==============\n\nPython client for Mistral REST API. Includes python library for Mistral API and\nCommand Line Interface (CLI) library.\n\nInstallation\n------------\n\nFirst of all, clone the repo and go to the repo directory::\n\n    $ git clone https://opendev.org/openstack/python-mistralclient.git\n    $ cd python-mistralclient\n\nThen just run::\n\n    $ pip install -e .\n\nor::\n\n    $ pip install -r requirements.txt\n    $ python setup.py install\n\n\nRunning Mistral client\n----------------------\n\nIf Mistral authentication is enabled, provide the information about OpenStack\nauth to environment variables. Type::\n\n    $ export OS_AUTH_URL=http://\u003cKeystone_host\u003e:5000/v2.0\n    $ export OS_USERNAME=admin\n    $ export OS_TENANT_NAME=tenant\n    $ export OS_PASSWORD=secret\n    $ export OS_MISTRAL_URL=http://\u003cMistral host\u003e:8989/v2  (optional, by\n      default URL=http://localhost:8989/v2)\n\nand in the case that you are authenticating against keystone over https:\n\n    $ export OS_CACERT=\u003cpath_to_ca_cert\u003e\n\n.. note:: In client, we can use both Keystone auth versions - v2.0 and v3. But\n          server supports only v3.*\n\nTo make sure Mistral client works, type::\n\n    $ mistral workbook-list\n\nYou can see the list of available commands typing::\n\n    $ mistral --help\n\nUseful Links\n============\n\n* `PyPi`_ - package installation\n* `Launchpad project`_ - release management\n* `Blueprints`_ - feature specifications\n* `Bugs`_ - issue tracking\n* `Source`_\n* `Specs`_\n* `How to Contribute`_\n\n.. _PyPi: https://pypi.org/project/python-mistralclient\n.. _Launchpad project: https://launchpad.net/python-mistralclient\n.. _Blueprints: https://blueprints.launchpad.net/python-mistralclient\n.. _Bugs: https://bugs.launchpad.net/python-mistralclient\n.. _Source: https://opendev.org/openstack/python-mistralclient\n.. _How to Contribute: https://docs.openstack.org/infra/manual/developers.html\n.. _Specs: https://specs.openstack.org/openstack/mistral-specs/\n.. _Release Notes: https://docs.openstack.org/releasenotes/python-mistralclient\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenstack%2Fpython-mistralclient","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopenstack%2Fpython-mistralclient","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenstack%2Fpython-mistralclient/lists"}