Metadata-Version: 2.4
Name: credyt-api
Version: 0.0.1
Summary:  Credyt Api Client Library for Python
Author: 
License-Expression: MIT
Project-URL: Homepage, https://credyt.ai
Project-URL: Documentation, https://docs.credyt.ai
Project-URL: Repository, https://github.com/credyt/sdk-python
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: isodate>=0.6.1
Requires-Dist: corehttp[requests]>=1.0.0b6
Requires-Dist: typing-extensions>=4.6.0

# Python SDK for Credyt.ai API

## Getting started

### Prequisites

- Python 3.9 or later is required to use this package.

### Install the package

Step into folder where setup.py is then run:

```bash
pip install credyt/api-client
```

### Examples

```python
def main():
    client = CredytApiClient(
        credential=ServiceKeyCredential(key=os.getenv("CREDYT_API_KEY")),
    )

    response = client.customers.get(
        customer_id="cust_4qh0wajx2n9qtazh2tghzkyan2",
    )
    print(response)


# x-ms-original-file: next/Customers_get_Get_a_Customer.json
if __name__ == "__main__":
    main()
```

For more examples, check the [samples](samples/) folder.
# Release History

## 0.0.1 (2026-05-05)

### Other Changes

  - Initial version
