data-and-reporting-sdk


Namedata-and-reporting-sdk JSON
Version 1.0.0 PyPI version JSON
download
home_pageNone
SummaryData And Reporting product consists of API's which provides details of transaction and invoice informations about shell cards.
upload_time2024-05-28 06:18:36
maintainerNone
docs_urlNone
authorNone
requires_python>=3.7
licenseNone
keywords shell dataandreporting apimatic sdks apis
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
# Getting Started with Shell Data & Reporting APIs

## Introduction

Data And Reporting product consists of API's which provides details of transaction and invoice informations about shell cards.
The Shell Card Transaction and Invoice API is REST-based and employs Basic authentication in Version 1 and Oauth authentication in Version 2 end points. The API endpoints accept JSON-encoded request bodies, return JSON-encoded responses and use standard HTTP response codes.
All resources are located in the Shell Card Platform.  The Shell Card Platform is the overall platform that encompasses all the internal Shell systems used to manage resources.
All endpoints use the `POST` verb for retrieving, updating, creating and deleting resources in the Shell Card Platform. The endpoints that retrieve resources from the Shell Card Platform allow flexible search parameters in the API request body.

Go to the Shell Developer Portal: [https://developer.shell.com](https://developer.shell.com)

## 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 data-and-reporting-sdk==1.0.0
```

You can also view the package at:
https://pypi.python.org/pypi/data-and-reporting-sdk/1.0.0

## Test the SDK

You can test the generated SDK and the server with test cases. `unittest` is used as the testing framework and `pytest` is used as the test runner. You can run the tests as follows:

Navigate to the root directory of the SDK and run the following commands

```
pip install -r test-requirements.txt
pytest
```

## Initialize the API Client

**_Note:_** Documentation for the client can be found [here.](doc/client.md)

The following parameters are configurable for the API Client:

| Parameter | Type | Description |
|  --- | --- | --- |
| `environment` | `Environment` | The API environment. <br> **Default: `Environment.SIT`** |
| `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']** |
| `basic_auth_credentials` | [`BasicAuthCredentials`](__base_path/$a/basic-authentication.md) | The credential object for Basic Authentication |
| `bearer_token_credentials` | [`BearerTokenCredentials`](__base_path/$a/oauth-2-client-credentials-grant.md) | The credential object for OAuth 2 Client Credentials Grant |

The API client can be initialized as follows:

```python
client = ShelldatareportingapisClient(
    basic_auth_credentials=BasicAuthCredentials(
        username='Username',
        password='Password'
    ),
    bearer_token_credentials=BearerTokenCredentials(
        o_auth_client_id='OAuthClientId',
        o_auth_client_secret='OAuthClientSecret'
    )
)
```

## Environments

The SDK can be configured to use a different environment for making API calls. Available environments are:

### Fields

| Name | Description |
|  --- | --- |
| SIT | **Default** |
| Production | - |

## Authorization

This API uses the following authentication schemes.

* [`BasicAuth (Basic Authentication)`](__base_path/$a/basic-authentication.md)
* [`BearerToken (OAuth 2 Client Credentials Grant)`](__base_path/$a/oauth-2-client-credentials-grant.md)

## List of APIs

* [O Auth Authorization](doc/controllers/o-auth-authorization.md)
* [Customer](doc/controllers/customer.md)
* [Transaction](doc/controllers/transaction.md)
* [Invoice](doc/controllers/invoice.md)

## Classes Documentation

* [Utility Classes](doc/utility-classes.md)
* [HttpResponse](doc/http-response.md)
* [HttpRequest](doc/http-request.md)


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "data-and-reporting-sdk",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "Shell, DataAndReporting, APIMatic, SDKs, APIs",
    "author": null,
    "author_email": "developer sdksio <developer+sdksio@apimatic.io>",
    "download_url": "https://files.pythonhosted.org/packages/41/26/3ece049bdcee1d6b698621ab208f96e10eececda8ea003369779cd5bd2d7/data_and_reporting_sdk-1.0.0.tar.gz",
    "platform": null,
    "description": "\n# Getting Started with Shell Data & Reporting APIs\n\n## Introduction\n\nData And Reporting product consists of API's which provides details of transaction and invoice informations about shell cards.\nThe Shell Card Transaction and Invoice API is REST-based and employs Basic authentication in Version 1 and Oauth authentication in Version 2 end points. The API endpoints accept JSON-encoded request bodies, return JSON-encoded responses and use standard HTTP response codes.\nAll resources are located in the Shell Card Platform.  The Shell Card Platform is the overall platform that encompasses all the internal Shell systems used to manage resources.\nAll endpoints use the `POST` verb for retrieving, updating, creating and deleting resources in the Shell Card Platform. The endpoints that retrieve resources from the Shell Card Platform allow flexible search parameters in the API request body.\n\nGo to the Shell Developer Portal: [https://developer.shell.com](https://developer.shell.com)\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 data-and-reporting-sdk==1.0.0\n```\n\nYou can also view the package at:\nhttps://pypi.python.org/pypi/data-and-reporting-sdk/1.0.0\n\n## Test the SDK\n\nYou can test the generated SDK and the server with test cases. `unittest` is used as the testing framework and `pytest` is used as the test runner. You can run the tests as follows:\n\nNavigate to the root directory of the SDK and run the following commands\n\n```\npip install -r test-requirements.txt\npytest\n```\n\n## Initialize the API Client\n\n**_Note:_** Documentation for the client can be found [here.](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.SIT`** |\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| `basic_auth_credentials` | [`BasicAuthCredentials`](__base_path/$a/basic-authentication.md) | The credential object for Basic Authentication |\n| `bearer_token_credentials` | [`BearerTokenCredentials`](__base_path/$a/oauth-2-client-credentials-grant.md) | The credential object for OAuth 2 Client Credentials Grant |\n\nThe API client can be initialized as follows:\n\n```python\nclient = ShelldatareportingapisClient(\n    basic_auth_credentials=BasicAuthCredentials(\n        username='Username',\n        password='Password'\n    ),\n    bearer_token_credentials=BearerTokenCredentials(\n        o_auth_client_id='OAuthClientId',\n        o_auth_client_secret='OAuthClientSecret'\n    )\n)\n```\n\n## Environments\n\nThe SDK can be configured to use a different environment for making API calls. Available environments are:\n\n### Fields\n\n| Name | Description |\n|  --- | --- |\n| SIT | **Default** |\n| Production | - |\n\n## Authorization\n\nThis API uses the following authentication schemes.\n\n* [`BasicAuth (Basic Authentication)`](__base_path/$a/basic-authentication.md)\n* [`BearerToken (OAuth 2 Client Credentials Grant)`](__base_path/$a/oauth-2-client-credentials-grant.md)\n\n## List of APIs\n\n* [O Auth Authorization](doc/controllers/o-auth-authorization.md)\n* [Customer](doc/controllers/customer.md)\n* [Transaction](doc/controllers/transaction.md)\n* [Invoice](doc/controllers/invoice.md)\n\n## Classes Documentation\n\n* [Utility Classes](doc/utility-classes.md)\n* [HttpResponse](doc/http-response.md)\n* [HttpRequest](doc/http-request.md)\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Data And Reporting product consists of API's which provides details of transaction and invoice informations about shell cards.",
    "version": "1.0.0",
    "project_urls": {
        "Documentation": "https://developer.shell.com/product-catalog/data-and-reporting-premium/sdk#/http/setting-up-sdks"
    },
    "split_keywords": [
        "shell",
        " dataandreporting",
        " apimatic",
        " sdks",
        " apis"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea65faf136d8b353321363e2fdd61f32cbf4f549b46155d060b31a7c850a0f2d",
                "md5": "65634e8792a003fd1aa3d7a9a8eba3ee",
                "sha256": "8908c0dae02057c76b8d33f919aa2f534590e74bdfcd9ff5431bcbc447815c49"
            },
            "downloads": -1,
            "filename": "data_and_reporting_sdk-1.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "65634e8792a003fd1aa3d7a9a8eba3ee",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 332190,
            "upload_time": "2024-05-28T06:18:34",
            "upload_time_iso_8601": "2024-05-28T06:18:34.036748Z",
            "url": "https://files.pythonhosted.org/packages/ea/65/faf136d8b353321363e2fdd61f32cbf4f549b46155d060b31a7c850a0f2d/data_and_reporting_sdk-1.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "41263ece049bdcee1d6b698621ab208f96e10eececda8ea003369779cd5bd2d7",
                "md5": "bdff5459be2a16035ddd98678b09f0c4",
                "sha256": "2d1ef4b75b03ff522b3dbbd33765f79c0e25a671e95d4cfbc79692f88f264a50"
            },
            "downloads": -1,
            "filename": "data_and_reporting_sdk-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "bdff5459be2a16035ddd98678b09f0c4",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 188255,
            "upload_time": "2024-05-28T06:18:36",
            "upload_time_iso_8601": "2024-05-28T06:18:36.243187Z",
            "url": "https://files.pythonhosted.org/packages/41/26/3ece049bdcee1d6b698621ab208f96e10eececda8ea003369779cd5bd2d7/data_and_reporting_sdk-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-28 06:18:36",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "data-and-reporting-sdk"
}
        
Elapsed time: 0.26829s