Metadata-Version: 2.4
Name: leadping
Version: 1.0.1
Summary: Typed Python client for the Leadping API, generated from the Leadping OpenAPI document with Microsoft Kiota.
Home-page: https://github.com/leadpingai/leadping-python
Author: Leadping
License: Proprietary
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Typing :: Typed
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: microsoft-kiota-abstractions<2.0.0,>=1.10.2
Requires-Dist: microsoft-kiota-serialization-form<2.0.0,>=1.10.2
Requires-Dist: microsoft-kiota-serialization-json<2.0.0,>=1.10.2
Requires-Dist: microsoft-kiota-serialization-multipart<2.0.0,>=1.10.2
Requires-Dist: microsoft-kiota-serialization-text<2.0.0,>=1.10.2
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Leadping Python SDK

Type-safe Python client for the Leadping API.

## Install

```bash
pip install leadping
```

The generated client uses a Kiota request adapter. Install the default HTTP adapter:

```bash
pip install microsoft-kiota-http
```

## Use

```python
from leadping import LeadpingOpenApiClient

adapter = create_leadping_request_adapter()
client = LeadpingOpenApiClient(adapter)

me = await client.users.me.get()
```

`create_leadping_request_adapter` is application code. Configure it to send one of:

- `Authorization: Bearer <token>`
- `X-Leadping-Api-Key: <key>`

The client defaults to `https://api.leadping.ai` when the adapter does not already have a base URL.

## Links

- [API reference](https://leadping.ai/docs/api-reference)
- [License](LICENSE)
