Name | repo-test-sdk JSON |
Version |
7.7.7
JSON |
| download |
home_page | |
Summary | this porfile is made to test New repositories |
upload_time | 2023-06-15 11:42:58 |
maintainer | |
docs_url | None |
author | |
requires_python | >=3.7 |
license | |
keywords |
git
repo
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# Getting Started with Swagger Petstore
## Introduction
This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.
Find out more about Swagger: [http://swagger.io](http://swagger.io)
## Install the Package
The package is compatible with Python versions `3 >=3.7, <= 3.11`.
Install the package from PyPi using the following pip command:
```python
pip install repo-test-sdk==7.7.7
```
You can also view the package at:
https://pypi.python.org/pypi/repo-test-sdk/7.7.7
## Initialize the API Client
**_Note:_** Documentation for the client can be found [here.](https://www.github.com/sdks-io/new-private-repo/tree/7.7.7/doc/client.md)
The following parameters are configurable for the API Client:
| Parameter | Type | Description |
| --- | --- | --- |
| `environment` | Environment | The API environment. <br> **Default: `Environment.PRODUCTION`** |
| `http_client_instance` | `HttpClient` | The Http Client passed from the sdk user for making requests |
| `override_http_client_configuration` | `bool` | The value which determines to override properties of the passed Http Client from the sdk user |
| `http_call_back` | `HttpCallBack` | The callback value that is invoked before and after an HTTP call is made to an endpoint |
| `timeout` | `float` | The value to use for connection timeout. <br> **Default: 60** |
| `max_retries` | `int` | The number of times to retry an endpoint call if it fails. <br> **Default: 0** |
| `backoff_factor` | `float` | A backoff factor to apply between attempts after the second try. <br> **Default: 2** |
| `retry_statuses` | `Array of int` | The http statuses on which retry is to be done. <br> **Default: [408, 413, 429, 500, 502, 503, 504, 521, 522, 524]** |
| `retry_methods` | `Array of string` | The http methods on which retry is to be done. <br> **Default: ['GET', 'PUT']** |
| `password` | `string` | |
The API client can be initialized as follows:
```python
from swaggerpetstore.swaggerpetstore_client import SwaggerpetstoreClient
from swaggerpetstore.configuration import Environment
client = SwaggerpetstoreClient(
password='Password'
)
```
## Authorization
This API uses `Custom Authentication`.
## List of APIs
* [Pet](https://www.github.com/sdks-io/new-private-repo/tree/7.7.7/doc/controllers/pet.md)
* [Store](https://www.github.com/sdks-io/new-private-repo/tree/7.7.7/doc/controllers/store.md)
* [User](https://www.github.com/sdks-io/new-private-repo/tree/7.7.7/doc/controllers/user.md)
## Classes Documentation
* [Utility Classes](https://www.github.com/sdks-io/new-private-repo/tree/7.7.7/doc/utility-classes.md)
* [HttpResponse](https://www.github.com/sdks-io/new-private-repo/tree/7.7.7/doc/http-response.md)
* [HttpRequest](https://www.github.com/sdks-io/new-private-repo/tree/7.7.7/doc/http-request.md)
Raw data
{
"_id": null,
"home_page": "",
"name": "repo-test-sdk",
"maintainer": "",
"docs_url": null,
"requires_python": ">=3.7",
"maintainer_email": "",
"keywords": "git,repo",
"author": "",
"author_email": "SUbtain <Subtain@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/e4/36/ed542bb196cb040c5009f865e2e7b9e647bb49a7147f695b91489c706a4b/repo-test-sdk-7.7.7.tar.gz",
"platform": null,
"description": "\n# Getting Started with Swagger Petstore\n\n## Introduction\n\nThis is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.\n\nFind out more about Swagger: [http://swagger.io](http://swagger.io)\n\n## Install the Package\n\nThe package is compatible with Python versions `3 >=3.7, <= 3.11`.\nInstall the package from PyPi using the following pip command:\n\n```python\npip install repo-test-sdk==7.7.7\n```\n\nYou can also view the package at:\nhttps://pypi.python.org/pypi/repo-test-sdk/7.7.7\n\n## Initialize the API Client\n\n**_Note:_** Documentation for the client can be found [here.](https://www.github.com/sdks-io/new-private-repo/tree/7.7.7/doc/client.md)\n\nThe following parameters are configurable for the API Client:\n\n| Parameter | Type | Description |\n| --- | --- | --- |\n| `environment` | Environment | The API environment. <br> **Default: `Environment.PRODUCTION`** |\n| `http_client_instance` | `HttpClient` | The Http Client passed from the sdk user for making requests |\n| `override_http_client_configuration` | `bool` | The value which determines to override properties of the passed Http Client from the sdk user |\n| `http_call_back` | `HttpCallBack` | The callback value that is invoked before and after an HTTP call is made to an endpoint |\n| `timeout` | `float` | The value to use for connection timeout. <br> **Default: 60** |\n| `max_retries` | `int` | The number of times to retry an endpoint call if it fails. <br> **Default: 0** |\n| `backoff_factor` | `float` | A backoff factor to apply between attempts after the second try. <br> **Default: 2** |\n| `retry_statuses` | `Array of int` | The http statuses on which retry is to be done. <br> **Default: [408, 413, 429, 500, 502, 503, 504, 521, 522, 524]** |\n| `retry_methods` | `Array of string` | The http methods on which retry is to be done. <br> **Default: ['GET', 'PUT']** |\n| `password` | `string` | |\n\nThe API client can be initialized as follows:\n\n```python\nfrom swaggerpetstore.swaggerpetstore_client import SwaggerpetstoreClient\nfrom swaggerpetstore.configuration import Environment\n\nclient = SwaggerpetstoreClient(\n password='Password'\n)\n```\n\n## Authorization\n\nThis API uses `Custom Authentication`.\n\n## List of APIs\n\n* [Pet](https://www.github.com/sdks-io/new-private-repo/tree/7.7.7/doc/controllers/pet.md)\n* [Store](https://www.github.com/sdks-io/new-private-repo/tree/7.7.7/doc/controllers/store.md)\n* [User](https://www.github.com/sdks-io/new-private-repo/tree/7.7.7/doc/controllers/user.md)\n\n## Classes Documentation\n\n* [Utility Classes](https://www.github.com/sdks-io/new-private-repo/tree/7.7.7/doc/utility-classes.md)\n* [HttpResponse](https://www.github.com/sdks-io/new-private-repo/tree/7.7.7/doc/http-response.md)\n* [HttpRequest](https://www.github.com/sdks-io/new-private-repo/tree/7.7.7/doc/http-request.md)\n\n",
"bugtrack_url": null,
"license": "",
"summary": "this porfile is made to test New repositories",
"version": "7.7.7",
"project_urls": {
"Documentation": "https://tester.com"
},
"split_keywords": [
"git",
"repo"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "040910b05c1dfddc3c0b897b72a034ec3acd61c482d7c8777d718a01a9c40ec3",
"md5": "daa11b27e1dcab533db4b336dbcf069a",
"sha256": "69704b53e97e11fe34c5727af03e64ed1d7d0b647db02bb0e3664b46293b0499"
},
"downloads": -1,
"filename": "repo_test_sdk-7.7.7-py3-none-any.whl",
"has_sig": false,
"md5_digest": "daa11b27e1dcab533db4b336dbcf069a",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.7",
"size": 26483,
"upload_time": "2023-06-15T11:42:56",
"upload_time_iso_8601": "2023-06-15T11:42:56.092050Z",
"url": "https://files.pythonhosted.org/packages/04/09/10b05c1dfddc3c0b897b72a034ec3acd61c482d7c8777d718a01a9c40ec3/repo_test_sdk-7.7.7-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e436ed542bb196cb040c5009f865e2e7b9e647bb49a7147f695b91489c706a4b",
"md5": "54af7ff35ace675a31c43116a0b372f7",
"sha256": "c1aa9645ca30f2f31e5dc9080da1df01c830b85c1b3e54bbbaf1ba6989896472"
},
"downloads": -1,
"filename": "repo-test-sdk-7.7.7.tar.gz",
"has_sig": false,
"md5_digest": "54af7ff35ace675a31c43116a0b372f7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 13493,
"upload_time": "2023-06-15T11:42:58",
"upload_time_iso_8601": "2023-06-15T11:42:58.277283Z",
"url": "https://files.pythonhosted.org/packages/e4/36/ed542bb196cb040c5009f865e2e7b9e647bb49a7147f695b91489c706a4b/repo-test-sdk-7.7.7.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-06-15 11:42:58",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "repo-test-sdk"
}