investec-za-pb


Nameinvestec-za-pb JSON
Version 0.1.2 PyPI version JSON
download
home_pagehttps://github.com/rijnhardtkotze/investec-za-pb-python.git
SummaryPython Client SDK Generated by Speakeasy.
upload_time2024-12-21 08:51:44
maintainerNone
docs_urlNone
authorSpeakeasy
requires_python<4.0,>=3.8
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # investec-za-pb

Developer-friendly & type-safe Python SDK specifically catered to leverage *investec-za-pb* API.

<div align="left">
    <a href="https://www.speakeasy.com/?utm_source=investec-za-pb&utm_campaign=python"><img src="https://custom-icon-badges.demolab.com/badge/-Built%20By%20Speakeasy-212015?style=for-the-badge&logoColor=FBE331&logo=speakeasy&labelColor=545454" /></a>
    <a href="https://opensource.org/licenses/MIT">
        <img src="https://img.shields.io/badge/License-MIT-blue.svg" style="width: 100px; height: 28px;" />
    </a>
</div>


<br /><br />
> [!IMPORTANT]
> This SDK is not yet ready for production use. To complete setup please follow the steps outlined in your [workspace](https://app.speakeasy.com/org/rijnhardtkotze/investec-za-pb). Delete this section before > publishing to a package manager.

<!-- Start Summary [summary] -->
## Summary

SA PB Account Information: # Introduction
The Investec Private Banking API is a set of programmatic endpoints that can access Private Bank personal and business banking accounts. This API allows you to access the following:
- Accounts
- Balances
- Transactions
- Beneficiaries
- Beneficiary Payments
- Account Transfers
- Documents

There are many possible use cases for the Account Information API: from extracting the data to aggregate it with financial data from other banking institutions to personal money management tools. 

# Getting Started
To start using the Programmable Card API, you'll need API credentials, which you can access in your [Investec Online Banking](https://login.secure.investec.com) profile. Create a new API key (x-api-key) with specified API scopes. Remember to include the *cards* scope

Optionally, use the Investec Sandbox account and credentials to generate mock responses to test your applications. You can use the Sandbox account without opening an Investec Private Bank account. 

## Run with Postman
[Open the collection in postman](https://www.postman.com/investec-open-api/workspace/programmable-banking/collection/26868804-00260d55-0009-42ee-b148-d439992e64ff?action=share&creator=26868804)  
or fork  
[![Run in Postman](https://run.pstmn.io/button.svg)](https://god.gw.postman.com/run-collection/26868804-00260d55-0009-42ee-b148-d439992e64ff?action=collection%2Ffork&collection-url=entityId%3D26868804-00260d55-0009-42ee-b148-d439992e64ff%26entityType%3Dcollection%26workspaceId%3D905c2bab-81a1-4297-8b70-2456c776a7a0)

The instructions below will guide you through the process of authenticating in the Postman app: 
1. Set the verb to POST and enter the auth URL [https://openapi.investec.com/identity/v2/oauth2/token](https://openapi.investec.com/identity/v2/oauth2/token) as the request URL.
2. The endpoint receives your client ID and client secret as [BASIC](https://en.wikipedia.org/wiki/BASIC) authentication headers. Select the Authorization tab and select BASIC AUTH from the Type list.
3. Enter your client_ID into the USERNAME field and your secret into the PASSWORD field 
4. Select the Headers tab and enter the **x-api-key** into the KEY field
5. Enter your API key into the VALUE field
6. Select the Body tab and select the x-www-form-urlencoded option
7. Enter grant_type into the KEY field and client_credentials into the VALUE field.
8. Send off your request.

If your keys are valid, the response will contain an access token and the number of seconds the access token is valid. 
Sample response:
```json
{ "access_token": "Z1CRQarGOSogNuUhRlENi5iKAGqh�, "token_type": "Bearer", "expires_in": 1799, "scope": "accounts" }
```

# Authentication
1. OAuth 2.0 access tokens are used to authenticate requests. Your access token authorises you to use the Programmable Card API.
2. To call the API, you must exchange your client ID, secret and API (x-api-key) key for an access token. 
3. You need to include the access token in the Authorisation header with the designation bearer when making calls to the API
4. The access token returned during the authentication request is valid for 30 minutes, at which point it will expire, and you will need to request a new one by calling /identity/v2/oauth2/token again.

When you make calls to the API, include the access token in the Authorisation header with the designation as Bearer. 
<SecurityDefinitions /> 

# Release Notes 
2024-11-07
*   **Enhancement**: Added an additional pending transactions endpoint za/pb/v1/accounts/{accountid}/pending-transactions just returning the pending ones with only the properties available.
*   **Enhancement**: Added the pending transactions to the existing transactions endpoint. Append `?includePending=true` to the querystring
*   **Enhancement**: Added a uuid property to the transactions endpoint. `( accountId.Substring(accountId.Length - 5) + postingDate.Replace("-", "") + postedOrder.PadLeft(7, '0') )` This will only be populated for posted transaction on Private Bank Accounts. This is not a backend banking generated ID and will change if any of the properties making it up changes.
*   **Enhancement**: Added approved beneficiaries to the beneficiary endpoint. They can be identified by the `"beneficiaryType": "INVESTECAPPROVED"` property with another new property eg. `"approvedBeneficiaryCategory": "Municipalities"`

2023-09-07
*   **Enhancement**: Added payment initiation requiring authorisation

2023-08-24
*   **Enhancement**: Added document retreival
*   **Enhancement**: Added more balances to the Balance endpoint

2023-05-29
*   **Enhancement**: Updated response codes returned

2023-03-05
*   **Enhancement**: Added a sandbox environment

2022-11-25
*   **Enhancement**: Included inter account transfers v2 - Transfer Multiple v2
*   **Enhancement**: Included beneficiary payments - Pay Multiple
*   **Enhancement**: Included beneficiaries - Get Beneficiaries
*   **Enhancement**: Included beneficiary categories - Get Beneficiary Categories
*   **Enhancement**: Added properties kycCompliant and profileId to accounts - Get Accounts
*   **Enhancement**: Added property profileId to beneficiaries - Beneficiaries

2022-02-21
*   **Enhancement**: Included inter account transfers - Transfer Multiple

2021-10-01
*   **Fix**: The runningBalance on transactions shows (-) if it is a negative balance - Get Account Transactions

2020-07-21
*   **Enhancement**: Included transactionDate to - Get Account Transactions
*   **Enhancement**: Included date range filter to - Get Account Transactions

2020-09-08
*   **Fix**: Implemented CORS support
*   **Fix**: Implemented multi User-Agent support

2020-11-10
*   **Enhancement**: Included postedOrder to - Get Account Transactions
*   **Enhancement**: Included transactionType to - Get Account Transactions

2020-11-13
*   **Enhancement**: Included transaction type filter to - Get Account Transactions


More information about the API can be found at .
<!-- End Summary [summary] -->

<!-- Start Table of Contents [toc] -->
## Table of Contents
<!-- $toc-max-depth=2 -->
* [investec-za-pb](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#investec-za-pb)
* [Getting Started](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#getting-started)
  * [Run with Postman](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#run-with-postman)
* [Authentication](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#authentication)
* [Release Notes](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#release-notes)
  * [SDK Installation](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#sdk-installation)
  * [IDE Support](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#ide-support)
  * [SDK Example Usage](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#sdk-example-usage)
  * [Authentication](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#authentication-1)
  * [Available Resources and Operations](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#available-resources-and-operations)
  * [Retries](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#retries)
  * [Error Handling](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#error-handling)
  * [Server Selection](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#server-selection)
  * [Custom HTTP Client](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#custom-http-client)
  * [Debugging](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#debugging)
* [Development](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#development)
  * [Maturity](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#maturity)
  * [Contributions](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#contributions)

<!-- End Table of Contents [toc] -->

<!-- Start SDK Installation [installation] -->
## SDK Installation

> [!TIP]
> To finish publishing your SDK to PyPI you must [run your first generation action](https://www.speakeasy.com/docs/github-setup#step-by-step-guide).


The SDK can be installed with either *pip* or *poetry* package managers.

### PIP

*PIP* is the default package installer for Python, enabling easy installation and management of packages from PyPI via the command line.

```bash
pip install git+https://github.com/rijnhardtkotze/investec-za-pb-python.git
```

### Poetry

*Poetry* is a modern tool that simplifies dependency management and package publishing by using a single `pyproject.toml` file to handle project metadata and dependencies.

```bash
poetry add git+https://github.com/rijnhardtkotze/investec-za-pb-python.git
```
<!-- End SDK Installation [installation] -->

<!-- Start IDE Support [idesupport] -->
## IDE Support

### PyCharm

Generally, the SDK will work well with most IDEs out of the box. However, when using PyCharm, you can enjoy much better integration with Pydantic by installing an additional plugin.

- [PyCharm Pydantic Plugin](https://docs.pydantic.dev/latest/integrations/pycharm/)
<!-- End IDE Support [idesupport] -->

<!-- Start SDK Example Usage [usage] -->
## SDK Example Usage

### Example

```python
# Synchronous Example
import investec_za_pb
from investec_za_pb import Investec
import os

with Investec(
    security=investec_za_pb.Security(
        client_id=os.getenv("INVESTEC_CLIENT_ID", ""),
        client_secret=os.getenv("INVESTEC_CLIENT_SECRET", ""),
    ),
) as investec:

    res = investec.accounts.get_all()

    # Handle response
    print(res)
```

</br>

The same SDK client can also be used to make asychronous requests by importing asyncio.
```python
# Asynchronous Example
import asyncio
import investec_za_pb
from investec_za_pb import Investec
import os

async def main():
    async with Investec(
        security=investec_za_pb.Security(
            client_id=os.getenv("INVESTEC_CLIENT_ID", ""),
            client_secret=os.getenv("INVESTEC_CLIENT_SECRET", ""),
        ),
    ) as investec:

        res = await investec.accounts.get_all_async()

        # Handle response
        print(res)

asyncio.run(main())
```
<!-- End SDK Example Usage [usage] -->

<!-- Start Authentication [security] -->
## Authentication

### Per-Client Security Schemes

This SDK supports the following security scheme globally:

| Name                            | Type   | Scheme                         | Environment Variable                                                       |
| ------------------------------- | ------ | ------------------------------ | -------------------------------------------------------------------------- |
| `client_id`<br/>`client_secret` | oauth2 | OAuth2 Client Credentials Flow | `INVESTEC_CLIENT_ID`<br/>`INVESTEC_CLIENT_SECRET`<br/>`INVESTEC_TOKEN_URL` |

You can set the security parameters through the `security` optional parameter when initializing the SDK client instance. For example:
```python
import investec_za_pb
from investec_za_pb import Investec
import os

with Investec(
    security=investec_za_pb.Security(
        client_id=os.getenv("INVESTEC_CLIENT_ID", ""),
        client_secret=os.getenv("INVESTEC_CLIENT_SECRET", ""),
    ),
) as investec:

    res = investec.accounts.get_all()

    # Handle response
    print(res)

```
<!-- End Authentication [security] -->

<!-- Start Available Resources and Operations [operations] -->
## Available Resources and Operations

<details open>
<summary>Available methods</summary>

### [accounts](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/accounts/README.md)

* [get_all](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/accounts/README.md#get_all) - Get Accounts
* [get_balance](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/accounts/README.md#get_balance) - Get Account Balance
* [get_transactions](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/accounts/README.md#get_transactions) - Get Account Transactions
* [get_pending_transactions](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/accounts/README.md#get_pending_transactions) - Get Account Pending Transactions
* [get_profile_accounts](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/accounts/README.md#get_profile_accounts) - Get Profile Accounts
* [get_authorization_setup](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/accounts/README.md#get_authorization_setup) - Get Authorisation Setup Details
* [get_profile_beneficiaries](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/accounts/README.md#get_profile_beneficiaries) - Get Profile Beneficiaries

### [beneficiaries](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/beneficiaries/README.md)

* [pay_multiple](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/beneficiaries/README.md#pay_multiple) - Pay Multiple
* [get_all](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/beneficiaries/README.md#get_all) - Get Beneficiaries
* [get_categories](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/beneficiaries/README.md#get_categories) - Get Beneficiary Categories

### [documents](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/documents/README.md)

* [get_all](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/documents/README.md#get_all) - Get Documents
* [get_specific](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/documents/README.md#get_specific) - Get Document

### [inter_account_transfers](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/interaccounttransfers/README.md)

* [~~transfer~~](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/interaccounttransfers/README.md#transfer) - Transfer Multiple (TO BE DEPRECATED) :warning: **Deprecated**
* [transfer_v2](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/interaccounttransfers/README.md#transfer_v2) - Transfer Multiple v2


### [profiles](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/profiles/README.md)

* [get](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/profiles/README.md#get) - Get Profiles

</details>
<!-- End Available Resources and Operations [operations] -->

<!-- Start Retries [retries] -->
## Retries

Some of the endpoints in this SDK support retries. If you use the SDK without any configuration, it will fall back to the default retry strategy provided by the API. However, the default retry strategy can be overridden on a per-operation basis, or across the entire SDK.

To change the default retry strategy for a single API call, simply provide a `RetryConfig` object to the call:
```python
import investec_za_pb
from investec_za_pb import Investec
from investec_za_pb.utils import BackoffStrategy, RetryConfig
import os

with Investec(
    security=investec_za_pb.Security(
        client_id=os.getenv("INVESTEC_CLIENT_ID", ""),
        client_secret=os.getenv("INVESTEC_CLIENT_SECRET", ""),
    ),
) as investec:

    res = investec.accounts.get_all(,
        RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False))

    # Handle response
    print(res)

```

If you'd like to override the default retry strategy for all operations that support retries, you can use the `retry_config` optional parameter when initializing the SDK:
```python
import investec_za_pb
from investec_za_pb import Investec
from investec_za_pb.utils import BackoffStrategy, RetryConfig
import os

with Investec(
    retry_config=RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False),
    security=investec_za_pb.Security(
        client_id=os.getenv("INVESTEC_CLIENT_ID", ""),
        client_secret=os.getenv("INVESTEC_CLIENT_SECRET", ""),
    ),
) as investec:

    res = investec.accounts.get_all()

    # Handle response
    print(res)

```
<!-- End Retries [retries] -->

<!-- Start Error Handling [errors] -->
## Error Handling

Handling errors in this SDK should largely match your expectations. All operations return a response object or raise an exception.

By default, an API error will raise a models.APIError exception, which has the following properties:

| Property        | Type             | Description           |
|-----------------|------------------|-----------------------|
| `.status_code`  | *int*            | The HTTP status code  |
| `.message`      | *str*            | The error message     |
| `.raw_response` | *httpx.Response* | The raw HTTP response |
| `.body`         | *str*            | The response content  |

When custom error responses are specified for an operation, the SDK may also raise their associated exceptions. You can refer to respective *Errors* tables in SDK docs for more details on possible exception types for each operation. For example, the `get_all_async` method may raise the following exceptions:

| Error Type      | Status Code | Content Type |
| --------------- | ----------- | ------------ |
| models.APIError | 4XX, 5XX    | \*/\*        |

### Example

```python
import investec_za_pb
from investec_za_pb import Investec, models
import os

with Investec(
    security=investec_za_pb.Security(
        client_id=os.getenv("INVESTEC_CLIENT_ID", ""),
        client_secret=os.getenv("INVESTEC_CLIENT_SECRET", ""),
    ),
) as investec:
    res = None
    try:

        res = investec.accounts.get_all()

        # Handle response
        print(res)

    except models.APIError as e:
        # handle exception
        raise(e)
```
<!-- End Error Handling [errors] -->

<!-- Start Server Selection [server] -->
## Server Selection

### Override Server URL Per-Client

The default server can also be overridden globally by passing a URL to the `server_url: str` optional parameter when initializing the SDK client instance. For example:
```python
import investec_za_pb
from investec_za_pb import Investec
import os

with Investec(
    server_url="https://openapi.investec.com",
    security=investec_za_pb.Security(
        client_id=os.getenv("INVESTEC_CLIENT_ID", ""),
        client_secret=os.getenv("INVESTEC_CLIENT_SECRET", ""),
    ),
) as investec:

    res = investec.accounts.get_all()

    # Handle response
    print(res)

```
<!-- End Server Selection [server] -->

<!-- Start Custom HTTP Client [http-client] -->
## Custom HTTP Client

The Python SDK makes API calls using the [httpx](https://www.python-httpx.org/) HTTP library.  In order to provide a convenient way to configure timeouts, cookies, proxies, custom headers, and other low-level configuration, you can initialize the SDK client with your own HTTP client instance.
Depending on whether you are using the sync or async version of the SDK, you can pass an instance of `HttpClient` or `AsyncHttpClient` respectively, which are Protocol's ensuring that the client has the necessary methods to make API calls.
This allows you to wrap the client with your own custom logic, such as adding custom headers, logging, or error handling, or you can just pass an instance of `httpx.Client` or `httpx.AsyncClient` directly.

For example, you could specify a header for every request that this sdk makes as follows:
```python
from investec_za_pb import Investec
import httpx

http_client = httpx.Client(headers={"x-custom-header": "someValue"})
s = Investec(client=http_client)
```

or you could wrap the client with your own custom logic:
```python
from investec_za_pb import Investec
from investec_za_pb.httpclient import AsyncHttpClient
import httpx

class CustomClient(AsyncHttpClient):
    client: AsyncHttpClient

    def __init__(self, client: AsyncHttpClient):
        self.client = client

    async def send(
        self,
        request: httpx.Request,
        *,
        stream: bool = False,
        auth: Union[
            httpx._types.AuthTypes, httpx._client.UseClientDefault, None
        ] = httpx.USE_CLIENT_DEFAULT,
        follow_redirects: Union[
            bool, httpx._client.UseClientDefault
        ] = httpx.USE_CLIENT_DEFAULT,
    ) -> httpx.Response:
        request.headers["Client-Level-Header"] = "added by client"

        return await self.client.send(
            request, stream=stream, auth=auth, follow_redirects=follow_redirects
        )

    def build_request(
        self,
        method: str,
        url: httpx._types.URLTypes,
        *,
        content: Optional[httpx._types.RequestContent] = None,
        data: Optional[httpx._types.RequestData] = None,
        files: Optional[httpx._types.RequestFiles] = None,
        json: Optional[Any] = None,
        params: Optional[httpx._types.QueryParamTypes] = None,
        headers: Optional[httpx._types.HeaderTypes] = None,
        cookies: Optional[httpx._types.CookieTypes] = None,
        timeout: Union[
            httpx._types.TimeoutTypes, httpx._client.UseClientDefault
        ] = httpx.USE_CLIENT_DEFAULT,
        extensions: Optional[httpx._types.RequestExtensions] = None,
    ) -> httpx.Request:
        return self.client.build_request(
            method,
            url,
            content=content,
            data=data,
            files=files,
            json=json,
            params=params,
            headers=headers,
            cookies=cookies,
            timeout=timeout,
            extensions=extensions,
        )

s = Investec(async_client=CustomClient(httpx.AsyncClient()))
```
<!-- End Custom HTTP Client [http-client] -->

<!-- Start Debugging [debug] -->
## Debugging

You can setup your SDK to emit debug logs for SDK requests and responses.

You can pass your own logger class directly into your SDK.
```python
from investec_za_pb import Investec
import logging

logging.basicConfig(level=logging.DEBUG)
s = Investec(debug_logger=logging.getLogger("investec_za_pb"))
```

You can also enable a default debug logger by setting an environment variable `INVESTEC_DEBUG` to true.
<!-- End Debugging [debug] -->

<!-- Placeholder for Future Speakeasy SDK Sections -->

# Development

## Maturity

This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning usage
to a specific package version. This way, you can install the same version each time without breaking changes unless you are intentionally
looking for the latest version.

## Contributions

While we value open-source contributions to this SDK, this library is generated programmatically. Any manual changes added to internal files will be overwritten on the next generation. 
We look forward to hearing your feedback. Feel free to open a PR or an issue with a proof of concept and we'll do our best to include it in a future release. 

### SDK Created by [Speakeasy](https://www.speakeasy.com/?utm_source=investec-za-pb&utm_campaign=python)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/rijnhardtkotze/investec-za-pb-python.git",
    "name": "investec-za-pb",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": "Speakeasy",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/50/7d/f95df37154da87a78e1849ffdd1b965f4c6623dde0e4a73e4c87f3bcf76b/investec_za_pb-0.1.2.tar.gz",
    "platform": null,
    "description": "# investec-za-pb\n\nDeveloper-friendly & type-safe Python SDK specifically catered to leverage *investec-za-pb* API.\n\n<div align=\"left\">\n    <a href=\"https://www.speakeasy.com/?utm_source=investec-za-pb&utm_campaign=python\"><img src=\"https://custom-icon-badges.demolab.com/badge/-Built%20By%20Speakeasy-212015?style=for-the-badge&logoColor=FBE331&logo=speakeasy&labelColor=545454\" /></a>\n    <a href=\"https://opensource.org/licenses/MIT\">\n        <img src=\"https://img.shields.io/badge/License-MIT-blue.svg\" style=\"width: 100px; height: 28px;\" />\n    </a>\n</div>\n\n\n<br /><br />\n> [!IMPORTANT]\n> This SDK is not yet ready for production use. To complete setup please follow the steps outlined in your [workspace](https://app.speakeasy.com/org/rijnhardtkotze/investec-za-pb). Delete this section before > publishing to a package manager.\n\n<!-- Start Summary [summary] -->\n## Summary\n\nSA PB Account Information: # Introduction\nThe Investec Private Banking API is a set of programmatic endpoints that can access Private Bank personal and business banking accounts. This API allows you to access the following:\n- Accounts\n- Balances\n- Transactions\n- Beneficiaries\n- Beneficiary Payments\n- Account Transfers\n- Documents\n\nThere are many possible use cases for the Account Information API: from extracting the data to aggregate it with financial data from other banking institutions to personal money management tools. \n\n# Getting Started\nTo start using the Programmable Card API, you'll need API credentials, which you can access in your [Investec Online Banking](https://login.secure.investec.com) profile. Create a new API key (x-api-key) with specified API scopes. Remember to include the *cards* scope\n\nOptionally, use the Investec Sandbox account and credentials to generate mock responses to test your applications. You can use the Sandbox account without opening an Investec Private Bank account. \n\n## Run with Postman\n[Open the collection in postman](https://www.postman.com/investec-open-api/workspace/programmable-banking/collection/26868804-00260d55-0009-42ee-b148-d439992e64ff?action=share&creator=26868804)  \nor fork  \n[![Run in Postman](https://run.pstmn.io/button.svg)](https://god.gw.postman.com/run-collection/26868804-00260d55-0009-42ee-b148-d439992e64ff?action=collection%2Ffork&collection-url=entityId%3D26868804-00260d55-0009-42ee-b148-d439992e64ff%26entityType%3Dcollection%26workspaceId%3D905c2bab-81a1-4297-8b70-2456c776a7a0)\n\nThe instructions below will guide you through the process of authenticating in the Postman app: \n1. Set the verb to POST and enter the auth URL [https://openapi.investec.com/identity/v2/oauth2/token](https://openapi.investec.com/identity/v2/oauth2/token) as the request URL.\n2. The endpoint receives your client ID and client secret as [BASIC](https://en.wikipedia.org/wiki/BASIC) authentication headers. Select the Authorization tab and select BASIC AUTH from the Type list.\n3. Enter your client_ID into the USERNAME field and your secret into the PASSWORD field \n4. Select the Headers tab and enter the **x-api-key** into the KEY field\n5. Enter your API key into the VALUE field\n6. Select the Body tab and select the x-www-form-urlencoded option\n7. Enter grant_type into the KEY field and client_credentials into the VALUE field.\n8. Send off your request.\n\nIf your keys are valid, the response will contain an access token and the number of seconds the access token is valid. \nSample response:\n```json\n{ \"access_token\": \"Z1CRQarGOSogNuUhRlENi5iKAGqh\ufffd, \"token_type\": \"Bearer\", \"expires_in\": 1799, \"scope\": \"accounts\" }\n```\n\n# Authentication\n1. OAuth 2.0 access tokens are used to authenticate requests. Your access token authorises you to use the Programmable Card API.\n2. To call the API, you must exchange your client ID, secret and API (x-api-key) key for an access token. \n3. You need to include the access token in the Authorisation header with the designation bearer when making calls to the API\n4. The access token returned during the authentication request is valid for 30 minutes, at which point it will expire, and you will need to request a new one by calling /identity/v2/oauth2/token again.\n\nWhen you make calls to the API, include the access token in the Authorisation header with the designation as Bearer. \n<SecurityDefinitions /> \n\n# Release Notes \n2024-11-07\n*   **Enhancement**: Added an additional pending transactions endpoint za/pb/v1/accounts/{accountid}/pending-transactions just returning the pending ones with only the properties available.\n*   **Enhancement**: Added the pending transactions to the existing transactions endpoint. Append `?includePending=true` to the querystring\n*   **Enhancement**: Added a uuid property to the transactions endpoint. `( accountId.Substring(accountId.Length - 5) + postingDate.Replace(\"-\", \"\") + postedOrder.PadLeft(7, '0') )` This will only be populated for posted transaction on Private Bank Accounts. This is not a backend banking generated ID and will change if any of the properties making it up changes.\n*   **Enhancement**: Added approved beneficiaries to the beneficiary endpoint. They can be identified by the `\"beneficiaryType\": \"INVESTECAPPROVED\"` property with another new property eg. `\"approvedBeneficiaryCategory\": \"Municipalities\"`\n\n2023-09-07\n*   **Enhancement**: Added payment initiation requiring authorisation\n\n2023-08-24\n*   **Enhancement**: Added document retreival\n*   **Enhancement**: Added more balances to the Balance endpoint\n\n2023-05-29\n*   **Enhancement**: Updated response codes returned\n\n2023-03-05\n*   **Enhancement**: Added a sandbox environment\n\n2022-11-25\n*   **Enhancement**: Included inter account transfers v2 - Transfer Multiple v2\n*   **Enhancement**: Included beneficiary payments - Pay Multiple\n*   **Enhancement**: Included beneficiaries - Get Beneficiaries\n*   **Enhancement**: Included beneficiary categories - Get Beneficiary Categories\n*   **Enhancement**: Added properties kycCompliant and profileId to accounts - Get Accounts\n*   **Enhancement**: Added property profileId to beneficiaries - Beneficiaries\n\n2022-02-21\n*   **Enhancement**: Included inter account transfers - Transfer Multiple\n\n2021-10-01\n*   **Fix**: The runningBalance on transactions shows (-) if it is a negative balance - Get Account Transactions\n\n2020-07-21\n*   **Enhancement**: Included transactionDate to - Get Account Transactions\n*   **Enhancement**: Included date range filter to - Get Account Transactions\n\n2020-09-08\n*   **Fix**: Implemented CORS support\n*   **Fix**: Implemented multi User-Agent support\n\n2020-11-10\n*   **Enhancement**: Included postedOrder to - Get Account Transactions\n*   **Enhancement**: Included transactionType to - Get Account Transactions\n\n2020-11-13\n*   **Enhancement**: Included transaction type filter to - Get Account Transactions\n\n\nMore information about the API can be found at .\n<!-- End Summary [summary] -->\n\n<!-- Start Table of Contents [toc] -->\n## Table of Contents\n<!-- $toc-max-depth=2 -->\n* [investec-za-pb](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#investec-za-pb)\n* [Getting Started](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#getting-started)\n  * [Run with Postman](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#run-with-postman)\n* [Authentication](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#authentication)\n* [Release Notes](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#release-notes)\n  * [SDK Installation](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#sdk-installation)\n  * [IDE Support](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#ide-support)\n  * [SDK Example Usage](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#sdk-example-usage)\n  * [Authentication](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#authentication-1)\n  * [Available Resources and Operations](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#available-resources-and-operations)\n  * [Retries](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#retries)\n  * [Error Handling](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#error-handling)\n  * [Server Selection](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#server-selection)\n  * [Custom HTTP Client](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#custom-http-client)\n  * [Debugging](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#debugging)\n* [Development](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#development)\n  * [Maturity](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#maturity)\n  * [Contributions](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/#contributions)\n\n<!-- End Table of Contents [toc] -->\n\n<!-- Start SDK Installation [installation] -->\n## SDK Installation\n\n> [!TIP]\n> To finish publishing your SDK to PyPI you must [run your first generation action](https://www.speakeasy.com/docs/github-setup#step-by-step-guide).\n\n\nThe SDK can be installed with either *pip* or *poetry* package managers.\n\n### PIP\n\n*PIP* is the default package installer for Python, enabling easy installation and management of packages from PyPI via the command line.\n\n```bash\npip install git+https://github.com/rijnhardtkotze/investec-za-pb-python.git\n```\n\n### Poetry\n\n*Poetry* is a modern tool that simplifies dependency management and package publishing by using a single `pyproject.toml` file to handle project metadata and dependencies.\n\n```bash\npoetry add git+https://github.com/rijnhardtkotze/investec-za-pb-python.git\n```\n<!-- End SDK Installation [installation] -->\n\n<!-- Start IDE Support [idesupport] -->\n## IDE Support\n\n### PyCharm\n\nGenerally, the SDK will work well with most IDEs out of the box. However, when using PyCharm, you can enjoy much better integration with Pydantic by installing an additional plugin.\n\n- [PyCharm Pydantic Plugin](https://docs.pydantic.dev/latest/integrations/pycharm/)\n<!-- End IDE Support [idesupport] -->\n\n<!-- Start SDK Example Usage [usage] -->\n## SDK Example Usage\n\n### Example\n\n```python\n# Synchronous Example\nimport investec_za_pb\nfrom investec_za_pb import Investec\nimport os\n\nwith Investec(\n    security=investec_za_pb.Security(\n        client_id=os.getenv(\"INVESTEC_CLIENT_ID\", \"\"),\n        client_secret=os.getenv(\"INVESTEC_CLIENT_SECRET\", \"\"),\n    ),\n) as investec:\n\n    res = investec.accounts.get_all()\n\n    # Handle response\n    print(res)\n```\n\n</br>\n\nThe same SDK client can also be used to make asychronous requests by importing asyncio.\n```python\n# Asynchronous Example\nimport asyncio\nimport investec_za_pb\nfrom investec_za_pb import Investec\nimport os\n\nasync def main():\n    async with Investec(\n        security=investec_za_pb.Security(\n            client_id=os.getenv(\"INVESTEC_CLIENT_ID\", \"\"),\n            client_secret=os.getenv(\"INVESTEC_CLIENT_SECRET\", \"\"),\n        ),\n    ) as investec:\n\n        res = await investec.accounts.get_all_async()\n\n        # Handle response\n        print(res)\n\nasyncio.run(main())\n```\n<!-- End SDK Example Usage [usage] -->\n\n<!-- Start Authentication [security] -->\n## Authentication\n\n### Per-Client Security Schemes\n\nThis SDK supports the following security scheme globally:\n\n| Name                            | Type   | Scheme                         | Environment Variable                                                       |\n| ------------------------------- | ------ | ------------------------------ | -------------------------------------------------------------------------- |\n| `client_id`<br/>`client_secret` | oauth2 | OAuth2 Client Credentials Flow | `INVESTEC_CLIENT_ID`<br/>`INVESTEC_CLIENT_SECRET`<br/>`INVESTEC_TOKEN_URL` |\n\nYou can set the security parameters through the `security` optional parameter when initializing the SDK client instance. For example:\n```python\nimport investec_za_pb\nfrom investec_za_pb import Investec\nimport os\n\nwith Investec(\n    security=investec_za_pb.Security(\n        client_id=os.getenv(\"INVESTEC_CLIENT_ID\", \"\"),\n        client_secret=os.getenv(\"INVESTEC_CLIENT_SECRET\", \"\"),\n    ),\n) as investec:\n\n    res = investec.accounts.get_all()\n\n    # Handle response\n    print(res)\n\n```\n<!-- End Authentication [security] -->\n\n<!-- Start Available Resources and Operations [operations] -->\n## Available Resources and Operations\n\n<details open>\n<summary>Available methods</summary>\n\n### [accounts](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/accounts/README.md)\n\n* [get_all](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/accounts/README.md#get_all) - Get Accounts\n* [get_balance](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/accounts/README.md#get_balance) - Get Account Balance\n* [get_transactions](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/accounts/README.md#get_transactions) - Get Account Transactions\n* [get_pending_transactions](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/accounts/README.md#get_pending_transactions) - Get Account Pending Transactions\n* [get_profile_accounts](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/accounts/README.md#get_profile_accounts) - Get Profile Accounts\n* [get_authorization_setup](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/accounts/README.md#get_authorization_setup) - Get Authorisation Setup Details\n* [get_profile_beneficiaries](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/accounts/README.md#get_profile_beneficiaries) - Get Profile Beneficiaries\n\n### [beneficiaries](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/beneficiaries/README.md)\n\n* [pay_multiple](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/beneficiaries/README.md#pay_multiple) - Pay Multiple\n* [get_all](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/beneficiaries/README.md#get_all) - Get Beneficiaries\n* [get_categories](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/beneficiaries/README.md#get_categories) - Get Beneficiary Categories\n\n### [documents](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/documents/README.md)\n\n* [get_all](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/documents/README.md#get_all) - Get Documents\n* [get_specific](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/documents/README.md#get_specific) - Get Document\n\n### [inter_account_transfers](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/interaccounttransfers/README.md)\n\n* [~~transfer~~](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/interaccounttransfers/README.md#transfer) - Transfer Multiple (TO BE DEPRECATED) :warning: **Deprecated**\n* [transfer_v2](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/interaccounttransfers/README.md#transfer_v2) - Transfer Multiple v2\n\n\n### [profiles](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/profiles/README.md)\n\n* [get](https://github.com/rijnhardtkotze/investec-za-pb-python/blob/master/docs/sdks/profiles/README.md#get) - Get Profiles\n\n</details>\n<!-- End Available Resources and Operations [operations] -->\n\n<!-- Start Retries [retries] -->\n## Retries\n\nSome of the endpoints in this SDK support retries. If you use the SDK without any configuration, it will fall back to the default retry strategy provided by the API. However, the default retry strategy can be overridden on a per-operation basis, or across the entire SDK.\n\nTo change the default retry strategy for a single API call, simply provide a `RetryConfig` object to the call:\n```python\nimport investec_za_pb\nfrom investec_za_pb import Investec\nfrom investec_za_pb.utils import BackoffStrategy, RetryConfig\nimport os\n\nwith Investec(\n    security=investec_za_pb.Security(\n        client_id=os.getenv(\"INVESTEC_CLIENT_ID\", \"\"),\n        client_secret=os.getenv(\"INVESTEC_CLIENT_SECRET\", \"\"),\n    ),\n) as investec:\n\n    res = investec.accounts.get_all(,\n        RetryConfig(\"backoff\", BackoffStrategy(1, 50, 1.1, 100), False))\n\n    # Handle response\n    print(res)\n\n```\n\nIf you'd like to override the default retry strategy for all operations that support retries, you can use the `retry_config` optional parameter when initializing the SDK:\n```python\nimport investec_za_pb\nfrom investec_za_pb import Investec\nfrom investec_za_pb.utils import BackoffStrategy, RetryConfig\nimport os\n\nwith Investec(\n    retry_config=RetryConfig(\"backoff\", BackoffStrategy(1, 50, 1.1, 100), False),\n    security=investec_za_pb.Security(\n        client_id=os.getenv(\"INVESTEC_CLIENT_ID\", \"\"),\n        client_secret=os.getenv(\"INVESTEC_CLIENT_SECRET\", \"\"),\n    ),\n) as investec:\n\n    res = investec.accounts.get_all()\n\n    # Handle response\n    print(res)\n\n```\n<!-- End Retries [retries] -->\n\n<!-- Start Error Handling [errors] -->\n## Error Handling\n\nHandling errors in this SDK should largely match your expectations. All operations return a response object or raise an exception.\n\nBy default, an API error will raise a models.APIError exception, which has the following properties:\n\n| Property        | Type             | Description           |\n|-----------------|------------------|-----------------------|\n| `.status_code`  | *int*            | The HTTP status code  |\n| `.message`      | *str*            | The error message     |\n| `.raw_response` | *httpx.Response* | The raw HTTP response |\n| `.body`         | *str*            | The response content  |\n\nWhen custom error responses are specified for an operation, the SDK may also raise their associated exceptions. You can refer to respective *Errors* tables in SDK docs for more details on possible exception types for each operation. For example, the `get_all_async` method may raise the following exceptions:\n\n| Error Type      | Status Code | Content Type |\n| --------------- | ----------- | ------------ |\n| models.APIError | 4XX, 5XX    | \\*/\\*        |\n\n### Example\n\n```python\nimport investec_za_pb\nfrom investec_za_pb import Investec, models\nimport os\n\nwith Investec(\n    security=investec_za_pb.Security(\n        client_id=os.getenv(\"INVESTEC_CLIENT_ID\", \"\"),\n        client_secret=os.getenv(\"INVESTEC_CLIENT_SECRET\", \"\"),\n    ),\n) as investec:\n    res = None\n    try:\n\n        res = investec.accounts.get_all()\n\n        # Handle response\n        print(res)\n\n    except models.APIError as e:\n        # handle exception\n        raise(e)\n```\n<!-- End Error Handling [errors] -->\n\n<!-- Start Server Selection [server] -->\n## Server Selection\n\n### Override Server URL Per-Client\n\nThe default server can also be overridden globally by passing a URL to the `server_url: str` optional parameter when initializing the SDK client instance. For example:\n```python\nimport investec_za_pb\nfrom investec_za_pb import Investec\nimport os\n\nwith Investec(\n    server_url=\"https://openapi.investec.com\",\n    security=investec_za_pb.Security(\n        client_id=os.getenv(\"INVESTEC_CLIENT_ID\", \"\"),\n        client_secret=os.getenv(\"INVESTEC_CLIENT_SECRET\", \"\"),\n    ),\n) as investec:\n\n    res = investec.accounts.get_all()\n\n    # Handle response\n    print(res)\n\n```\n<!-- End Server Selection [server] -->\n\n<!-- Start Custom HTTP Client [http-client] -->\n## Custom HTTP Client\n\nThe Python SDK makes API calls using the [httpx](https://www.python-httpx.org/) HTTP library.  In order to provide a convenient way to configure timeouts, cookies, proxies, custom headers, and other low-level configuration, you can initialize the SDK client with your own HTTP client instance.\nDepending on whether you are using the sync or async version of the SDK, you can pass an instance of `HttpClient` or `AsyncHttpClient` respectively, which are Protocol's ensuring that the client has the necessary methods to make API calls.\nThis allows you to wrap the client with your own custom logic, such as adding custom headers, logging, or error handling, or you can just pass an instance of `httpx.Client` or `httpx.AsyncClient` directly.\n\nFor example, you could specify a header for every request that this sdk makes as follows:\n```python\nfrom investec_za_pb import Investec\nimport httpx\n\nhttp_client = httpx.Client(headers={\"x-custom-header\": \"someValue\"})\ns = Investec(client=http_client)\n```\n\nor you could wrap the client with your own custom logic:\n```python\nfrom investec_za_pb import Investec\nfrom investec_za_pb.httpclient import AsyncHttpClient\nimport httpx\n\nclass CustomClient(AsyncHttpClient):\n    client: AsyncHttpClient\n\n    def __init__(self, client: AsyncHttpClient):\n        self.client = client\n\n    async def send(\n        self,\n        request: httpx.Request,\n        *,\n        stream: bool = False,\n        auth: Union[\n            httpx._types.AuthTypes, httpx._client.UseClientDefault, None\n        ] = httpx.USE_CLIENT_DEFAULT,\n        follow_redirects: Union[\n            bool, httpx._client.UseClientDefault\n        ] = httpx.USE_CLIENT_DEFAULT,\n    ) -> httpx.Response:\n        request.headers[\"Client-Level-Header\"] = \"added by client\"\n\n        return await self.client.send(\n            request, stream=stream, auth=auth, follow_redirects=follow_redirects\n        )\n\n    def build_request(\n        self,\n        method: str,\n        url: httpx._types.URLTypes,\n        *,\n        content: Optional[httpx._types.RequestContent] = None,\n        data: Optional[httpx._types.RequestData] = None,\n        files: Optional[httpx._types.RequestFiles] = None,\n        json: Optional[Any] = None,\n        params: Optional[httpx._types.QueryParamTypes] = None,\n        headers: Optional[httpx._types.HeaderTypes] = None,\n        cookies: Optional[httpx._types.CookieTypes] = None,\n        timeout: Union[\n            httpx._types.TimeoutTypes, httpx._client.UseClientDefault\n        ] = httpx.USE_CLIENT_DEFAULT,\n        extensions: Optional[httpx._types.RequestExtensions] = None,\n    ) -> httpx.Request:\n        return self.client.build_request(\n            method,\n            url,\n            content=content,\n            data=data,\n            files=files,\n            json=json,\n            params=params,\n            headers=headers,\n            cookies=cookies,\n            timeout=timeout,\n            extensions=extensions,\n        )\n\ns = Investec(async_client=CustomClient(httpx.AsyncClient()))\n```\n<!-- End Custom HTTP Client [http-client] -->\n\n<!-- Start Debugging [debug] -->\n## Debugging\n\nYou can setup your SDK to emit debug logs for SDK requests and responses.\n\nYou can pass your own logger class directly into your SDK.\n```python\nfrom investec_za_pb import Investec\nimport logging\n\nlogging.basicConfig(level=logging.DEBUG)\ns = Investec(debug_logger=logging.getLogger(\"investec_za_pb\"))\n```\n\nYou can also enable a default debug logger by setting an environment variable `INVESTEC_DEBUG` to true.\n<!-- End Debugging [debug] -->\n\n<!-- Placeholder for Future Speakeasy SDK Sections -->\n\n# Development\n\n## Maturity\n\nThis SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning usage\nto a specific package version. This way, you can install the same version each time without breaking changes unless you are intentionally\nlooking for the latest version.\n\n## Contributions\n\nWhile we value open-source contributions to this SDK, this library is generated programmatically. Any manual changes added to internal files will be overwritten on the next generation. \nWe look forward to hearing your feedback. Feel free to open a PR or an issue with a proof of concept and we'll do our best to include it in a future release. \n\n### SDK Created by [Speakeasy](https://www.speakeasy.com/?utm_source=investec-za-pb&utm_campaign=python)\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Python Client SDK Generated by Speakeasy.",
    "version": "0.1.2",
    "project_urls": {
        "Homepage": "https://github.com/rijnhardtkotze/investec-za-pb-python.git",
        "Repository": "https://github.com/rijnhardtkotze/investec-za-pb-python.git"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ab26a4fccfed6726b4d8408e86dd33606330e1924abaa7979b6b495a56c4ac4",
                "md5": "80710448d32b6c0573fe4e8c326de52d",
                "sha256": "8d3edd2e65c58d65f1d9e4df03496364fb6ff133aa36e01f662434d1042af57a"
            },
            "downloads": -1,
            "filename": "investec_za_pb-0.1.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "80710448d32b6c0573fe4e8c326de52d",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.8",
            "size": 70429,
            "upload_time": "2024-12-21T08:51:42",
            "upload_time_iso_8601": "2024-12-21T08:51:42.110378Z",
            "url": "https://files.pythonhosted.org/packages/0a/b2/6a4fccfed6726b4d8408e86dd33606330e1924abaa7979b6b495a56c4ac4/investec_za_pb-0.1.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "507df95df37154da87a78e1849ffdd1b965f4c6623dde0e4a73e4c87f3bcf76b",
                "md5": "8315f9864cae27446a2a8571994d1c65",
                "sha256": "9828f00a64014ece0c7edd0762f1f068b02f8008aeef692ca3280ff49f626f2d"
            },
            "downloads": -1,
            "filename": "investec_za_pb-0.1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "8315f9864cae27446a2a8571994d1c65",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.8",
            "size": 49657,
            "upload_time": "2024-12-21T08:51:44",
            "upload_time_iso_8601": "2024-12-21T08:51:44.642429Z",
            "url": "https://files.pythonhosted.org/packages/50/7d/f95df37154da87a78e1849ffdd1b965f4c6623dde0e4a73e4c87f3bcf76b/investec_za_pb-0.1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-21 08:51:44",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "rijnhardtkotze",
    "github_project": "investec-za-pb-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "investec-za-pb"
}
        
Elapsed time: 0.40418s