qase-api-v2-client


Nameqase-api-v2-client JSON
Version 1.0.0b2 PyPI version JSON
download
home_pageNone
SummaryQase TestOps API V2 client for Python
upload_time2024-05-06 16:09:48
maintainerNone
docs_urlNone
authorNone
requires_python>=3.7
licenseNone
keywords openapi openapi-generator qase.io testops api
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # qase

Qase TestOps API v2 Specification.

This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 2.0.0
- Package version: 1.0.0
- Generator version: 7.4.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
  For more information, please visit [https://qase.io](https://qase.io)

## Requirements.

Python 3.7+

## Installation & Usage

### pip install

If the python package is hosted on a repository, you can install directly using:

```sh
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
```

(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)

Then import the package:

```python

import qase.api_client_v2
```

### Setuptools

Install via [Setuptools](http://pypi.python.org/pypi/setuptools).

```sh
python setup.py install --user
```

(or `sudo python setup.py install` to install the package for all users)

Then import the package:

```python

import qase.api_client_v2
```

### Tests

Execute `pytest` to run the tests.

## Getting Started

Please follow the [installation procedure](#installation--usage) and then run the following:

```python
from qase.api_client_v2.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://api.qase.io/v2
# See configuration.py for a list of all supported configuration parameters.
configuration = qase.api_client_v2.Configuration(
    host="https://api.qase.io/v2"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure API key authorization: TokenAuth
configuration.api_key['TokenAuth'] = os.environ["API_KEY"]

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['TokenAuth'] = 'Bearer'


# Enter a context with an instance of the API client
with qase.api_client_v2.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = qase.api_client_v2.ResultsApi(api_client)
    project_code = 'project_code_example'  # str | 
    run_id = 56  # int | 
    result_create = qase.api_client_v2.ResultCreate()  # ResultCreate | 

    try:
        # (Beta) Create test run result
        api_instance.create_result_v2(project_code, run_id, result_create)
    except ApiException as e:
        print("Exception when calling ResultsApi->create_result_v2: %s\n" % e)

```

## Documentation for API Endpoints

All URIs are relative to *https://api.qase.io/v2*

 Class        | Method                                                        | HTTP request                                  | Description                        
--------------|---------------------------------------------------------------|-----------------------------------------------|------------------------------------
 *ResultsApi* | [**create_result_v2**](docs/ResultsApi.md#create_result_v2)   | **POST** /{project_code}/run/{run_id}/result  | (Beta) Create test run result      
 *ResultsApi* | [**create_results_v2**](docs/ResultsApi.md#create_results_v2) | **POST** /{project_code}/run/{run_id}/results | (Beta) Bulk create test run result 

## Documentation For Models

- [BaseErrorFieldResponse](docs/BaseErrorFieldResponse.md)
- [BaseErrorFieldResponseErrorFieldsInner](docs/BaseErrorFieldResponseErrorFieldsInner.md)
- [BaseErrorResponse](docs/BaseErrorResponse.md)
- [CreateResultV2422Response](docs/CreateResultV2422Response.md)
- [CreateResultsRequestV2](docs/CreateResultsRequestV2.md)
- [RelationSuite](docs/RelationSuite.md)
- [RelationSuiteItem](docs/RelationSuiteItem.md)
- [ResultCreate](docs/ResultCreate.md)
- [ResultExecution](docs/ResultExecution.md)
- [ResultRelations](docs/ResultRelations.md)
- [ResultStep](docs/ResultStep.md)
- [ResultStepData](docs/ResultStepData.md)
- [ResultStepExecution](docs/ResultStepExecution.md)
- [ResultStepStatus](docs/ResultStepStatus.md)
- [ResultStepsType](docs/ResultStepsType.md)

<a id="documentation-for-authorization"></a>

## Documentation For Authorization

Authentication schemes defined for the API:
<a id="TokenAuth"></a>

### TokenAuth

- **Type**: API key
- **API key parameter name**: Token
- **Location**: HTTP header

## Author

support@qase.io



            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "qase-api-v2-client",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "OpenAPI, OpenAPI-Generator, Qase.io TestOps API",
    "author": null,
    "author_email": "Qase Team <support@qase.io>",
    "download_url": "https://files.pythonhosted.org/packages/bc/29/be87480e3cbd55475bd5c787bd8ded51d3e7680f19b6b10b09c77fa064b5/qase_api_v2_client-1.0.0b2.tar.gz",
    "platform": null,
    "description": "# qase\n\nQase TestOps API v2 Specification.\n\nThis Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:\n\n- API version: 2.0.0\n- Package version: 1.0.0\n- Generator version: 7.4.0\n- Build package: org.openapitools.codegen.languages.PythonClientCodegen\n  For more information, please visit [https://qase.io](https://qase.io)\n\n## Requirements.\n\nPython 3.7+\n\n## Installation & Usage\n\n### pip install\n\nIf the python package is hosted on a repository, you can install directly using:\n\n```sh\npip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git\n```\n\n(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)\n\nThen import the package:\n\n```python\n\nimport qase.api_client_v2\n```\n\n### Setuptools\n\nInstall via [Setuptools](http://pypi.python.org/pypi/setuptools).\n\n```sh\npython setup.py install --user\n```\n\n(or `sudo python setup.py install` to install the package for all users)\n\nThen import the package:\n\n```python\n\nimport qase.api_client_v2\n```\n\n### Tests\n\nExecute `pytest` to run the tests.\n\n## Getting Started\n\nPlease follow the [installation procedure](#installation--usage) and then run the following:\n\n```python\nfrom qase.api_client_v2.rest import ApiException\nfrom pprint import pprint\n\n# Defining the host is optional and defaults to https://api.qase.io/v2\n# See configuration.py for a list of all supported configuration parameters.\nconfiguration = qase.api_client_v2.Configuration(\n    host=\"https://api.qase.io/v2\"\n)\n\n# The client must configure the authentication and authorization parameters\n# in accordance with the API server security policy.\n# Examples for each auth method are provided below, use the example that\n# satisfies your auth use case.\n\n# Configure API key authorization: TokenAuth\nconfiguration.api_key['TokenAuth'] = os.environ[\"API_KEY\"]\n\n# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n# configuration.api_key_prefix['TokenAuth'] = 'Bearer'\n\n\n# Enter a context with an instance of the API client\nwith qase.api_client_v2.ApiClient(configuration) as api_client:\n    # Create an instance of the API class\n    api_instance = qase.api_client_v2.ResultsApi(api_client)\n    project_code = 'project_code_example'  # str | \n    run_id = 56  # int | \n    result_create = qase.api_client_v2.ResultCreate()  # ResultCreate | \n\n    try:\n        # (Beta) Create test run result\n        api_instance.create_result_v2(project_code, run_id, result_create)\n    except ApiException as e:\n        print(\"Exception when calling ResultsApi->create_result_v2: %s\\n\" % e)\n\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *https://api.qase.io/v2*\n\n Class        | Method                                                        | HTTP request                                  | Description                        \n--------------|---------------------------------------------------------------|-----------------------------------------------|------------------------------------\n *ResultsApi* | [**create_result_v2**](docs/ResultsApi.md#create_result_v2)   | **POST** /{project_code}/run/{run_id}/result  | (Beta) Create test run result      \n *ResultsApi* | [**create_results_v2**](docs/ResultsApi.md#create_results_v2) | **POST** /{project_code}/run/{run_id}/results | (Beta) Bulk create test run result \n\n## Documentation For Models\n\n- [BaseErrorFieldResponse](docs/BaseErrorFieldResponse.md)\n- [BaseErrorFieldResponseErrorFieldsInner](docs/BaseErrorFieldResponseErrorFieldsInner.md)\n- [BaseErrorResponse](docs/BaseErrorResponse.md)\n- [CreateResultV2422Response](docs/CreateResultV2422Response.md)\n- [CreateResultsRequestV2](docs/CreateResultsRequestV2.md)\n- [RelationSuite](docs/RelationSuite.md)\n- [RelationSuiteItem](docs/RelationSuiteItem.md)\n- [ResultCreate](docs/ResultCreate.md)\n- [ResultExecution](docs/ResultExecution.md)\n- [ResultRelations](docs/ResultRelations.md)\n- [ResultStep](docs/ResultStep.md)\n- [ResultStepData](docs/ResultStepData.md)\n- [ResultStepExecution](docs/ResultStepExecution.md)\n- [ResultStepStatus](docs/ResultStepStatus.md)\n- [ResultStepsType](docs/ResultStepsType.md)\n\n<a id=\"documentation-for-authorization\"></a>\n\n## Documentation For Authorization\n\nAuthentication schemes defined for the API:\n<a id=\"TokenAuth\"></a>\n\n### TokenAuth\n\n- **Type**: API key\n- **API key parameter name**: Token\n- **Location**: HTTP header\n\n## Author\n\nsupport@qase.io\n\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Qase TestOps API V2 client for Python",
    "version": "1.0.0b2",
    "project_urls": {
        "Homepage": "https://github.com/qase-tms/qase-python"
    },
    "split_keywords": [
        "openapi",
        " openapi-generator",
        " qase.io testops api"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d0d23accdb1041b7a5b6fc1b7b58faacbd9d138c699e6f6409306cfd3a81b0a1",
                "md5": "6aa1825e29ad433ee76f625a919efcd5",
                "sha256": "d3591605846c5bfa61e359561faeeb423351e32c8ea9d603f877b89715ebcf89"
            },
            "downloads": -1,
            "filename": "qase_api_v2_client-1.0.0b2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "6aa1825e29ad433ee76f625a919efcd5",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 41684,
            "upload_time": "2024-05-06T16:09:47",
            "upload_time_iso_8601": "2024-05-06T16:09:47.501115Z",
            "url": "https://files.pythonhosted.org/packages/d0/d2/3accdb1041b7a5b6fc1b7b58faacbd9d138c699e6f6409306cfd3a81b0a1/qase_api_v2_client-1.0.0b2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc29be87480e3cbd55475bd5c787bd8ded51d3e7680f19b6b10b09c77fa064b5",
                "md5": "57f3365ad7833c98c2428b8647469ee0",
                "sha256": "2360d0eb656d0fec98bc21442fe0accb3a8089c07bb1366b1cefa69561b25b1d"
            },
            "downloads": -1,
            "filename": "qase_api_v2_client-1.0.0b2.tar.gz",
            "has_sig": false,
            "md5_digest": "57f3365ad7833c98c2428b8647469ee0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 26849,
            "upload_time": "2024-05-06T16:09:48",
            "upload_time_iso_8601": "2024-05-06T16:09:48.741911Z",
            "url": "https://files.pythonhosted.org/packages/bc/29/be87480e3cbd55475bd5c787bd8ded51d3e7680f19b6b10b09c77fa064b5/qase_api_v2_client-1.0.0b2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-06 16:09:48",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "qase-tms",
    "github_project": "qase-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "qase-api-v2-client"
}
        
Elapsed time: 0.26363s