Metadata-Version: 2.4
Name: leadping
Version: 1.0.0
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

Typed Python client for the Leadping API, generated from `leadpingai/openapi` with Kiota.

## Install

```bash
pip install leadping
```

Use a Kiota request adapter, such as:

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

## Use

```python
from leadping import LeadpingOpenApiClient

adapter = create_leadping_request_adapter()
adapter.base_url = "https://api.leadping.ai"

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

`create_leadping_request_adapter` should return a Kiota request adapter configured with your Leadping authentication.

## Notes

- Generated code comes from `leadpingai/openapi`; update the OpenAPI spec instead of hand-editing generated files.
- Package name: `leadping`
- License: see `LICENSE`
