sync-pack-sdk


Namesync-pack-sdk JSON
Version 7.7.7 PyPI version JSON
download
home_page
Summarythis is a testing description
upload_time2023-06-13 10:29:35
maintainer
docs_urlNone
author
requires_python>=3.7
license
keywords this testing
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 sync-pack-sdk==7.7.7
```

You can also view the package at:
https://pypi.python.org/pypi/sync-pack-sdk/7.7.7

## Initialize the API Client

**_Note:_** Documentation for the client can be found [here.](https://www.github.com/Syed-Subtain/sync-pack-python-sdk/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/Syed-Subtain/sync-pack-python-sdk/tree/7.7.7/doc/controllers/pet.md)
* [Store](https://www.github.com/Syed-Subtain/sync-pack-python-sdk/tree/7.7.7/doc/controllers/store.md)
* [User](https://www.github.com/Syed-Subtain/sync-pack-python-sdk/tree/7.7.7/doc/controllers/user.md)

## Classes Documentation

* [Utility Classes](https://www.github.com/Syed-Subtain/sync-pack-python-sdk/tree/7.7.7/doc/utility-classes.md)
* [HttpResponse](https://www.github.com/Syed-Subtain/sync-pack-python-sdk/tree/7.7.7/doc/http-response.md)
* [HttpRequest](https://www.github.com/Syed-Subtain/sync-pack-python-sdk/tree/7.7.7/doc/http-request.md)


            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "sync-pack-sdk",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "this,testing",
    "author": "",
    "author_email": "subtain <subtain@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/1b/2e/ed6409d504756b1e839d094b2ada088008c02b1aac1c5af6e4ec25dc7a2b/sync-pack-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 sync-pack-sdk==7.7.7\n```\n\nYou can also view the package at:\nhttps://pypi.python.org/pypi/sync-pack-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/Syed-Subtain/sync-pack-python-sdk/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/Syed-Subtain/sync-pack-python-sdk/tree/7.7.7/doc/controllers/pet.md)\n* [Store](https://www.github.com/Syed-Subtain/sync-pack-python-sdk/tree/7.7.7/doc/controllers/store.md)\n* [User](https://www.github.com/Syed-Subtain/sync-pack-python-sdk/tree/7.7.7/doc/controllers/user.md)\n\n## Classes Documentation\n\n* [Utility Classes](https://www.github.com/Syed-Subtain/sync-pack-python-sdk/tree/7.7.7/doc/utility-classes.md)\n* [HttpResponse](https://www.github.com/Syed-Subtain/sync-pack-python-sdk/tree/7.7.7/doc/http-response.md)\n* [HttpRequest](https://www.github.com/Syed-Subtain/sync-pack-python-sdk/tree/7.7.7/doc/http-request.md)\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "this is a testing description",
    "version": "7.7.7",
    "project_urls": {
        "Documentation": "https://whats.com"
    },
    "split_keywords": [
        "this",
        "testing"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7dd49cec3b2fb7e9911932f55bded67428c99b7ee8ab81f3410cae10d7f6b7c3",
                "md5": "624fbc47b02d51f7d0e3043dccd66ddb",
                "sha256": "9c4a33fff00bfb243f9012bece5539c28cb319487accbbf5d687c48ae70ee308"
            },
            "downloads": -1,
            "filename": "sync_pack_sdk-7.7.7-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "624fbc47b02d51f7d0e3043dccd66ddb",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 26465,
            "upload_time": "2023-06-13T10:29:33",
            "upload_time_iso_8601": "2023-06-13T10:29:33.196483Z",
            "url": "https://files.pythonhosted.org/packages/7d/d4/9cec3b2fb7e9911932f55bded67428c99b7ee8ab81f3410cae10d7f6b7c3/sync_pack_sdk-7.7.7-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1b2eed6409d504756b1e839d094b2ada088008c02b1aac1c5af6e4ec25dc7a2b",
                "md5": "8f1d64fd497db912292af826d9cdfcbf",
                "sha256": "e8d4ff7435ac69d954903331dd6dc9e0f2f9f8225b48a501864c5c825795ab45"
            },
            "downloads": -1,
            "filename": "sync-pack-sdk-7.7.7.tar.gz",
            "has_sig": false,
            "md5_digest": "8f1d64fd497db912292af826d9cdfcbf",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 14719,
            "upload_time": "2023-06-13T10:29:35",
            "upload_time_iso_8601": "2023-06-13T10:29:35.542502Z",
            "url": "https://files.pythonhosted.org/packages/1b/2e/ed6409d504756b1e839d094b2ada088008c02b1aac1c5af6e4ec25dc7a2b/sync-pack-sdk-7.7.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-06-13 10:29:35",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "sync-pack-sdk"
}
        
Elapsed time: 0.10240s