Metadata-Version: 2.4
Name: sumup
Version: 0.0.3
Summary: Official Python SDK for the SumUp API.
Author-email: SumUp <support@sumup.com>
License-Expression: Apache-2.0
Project-URL: Homepage, https://github.com/sumup/sumup-py
Project-URL: Issues, https://github.com/sumup/sumup-py/issues
Project-URL: Source Code, https://github.com/sumup/stripe-py
Keywords: sdk,sumup,payments
Classifier: Typing :: Typed
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
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: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: Natural Language :: English
Classifier: Topic :: Office/Business :: Financial
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: httpx>=0.28.1
Requires-Dist: pydantic>=2.11.3
Dynamic: license-file

<div align="center">

# sumup-py

[![pypi](https://img.shields.io/pypi/v/sumup.svg)](https://pypi.python.org/pypi/sumup)
[![CI Status](https://github.com/sumup/sumup-py/workflows/CI/badge.svg)](https://github.com/sumup/sumup-py/actions/workflows/ci.yml)

</div>

_**IMPORTANT:** This SDK is under heavy development and subject to breaking changes._

The Python SDK for the SumUp [API](https://developer.sumup.com).

## Installation

Install the latest version of the SumUp SDK:

```sh
pip install sumup
# or
uv add sumup
```

## Usage

```python
from sumup import Sumup

client = Sumup(api_key="sup_sk_MvxmLOl0...")

merchant = client.merchant.get()
print(merchant)
```

## Version support policy

`sumup-py` maintains compatibility with Python versions that are no pass their End of life support, see [Status of Python versions](https://devguide.python.org/versions/).
