Metadata-Version: 2.4
Name: pingdartdb
Version: 1.0.0
Summary: PingDart Direct Database SDK for Python
Home-page: https://github.com/pingdart/pingdart
Author: PingDart
Author-email: support@pingdart.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: pymysql>=1.0.0
Requires-Dist: cryptography>=3.4.0
Requires-Dist: requests>=2.25.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# PingDartDB Python SDK

The official direct database driver for PingDart in Python. 

## Installation

```bash
pip install pingdartdb
```

## Usage

```python
from pingdartdb import PingDartDB

db = PingDartDB("pd_your_license_key_here", {
    "host": "localhost",
    "user": "root",
    "password": "password",
    "database": "pingdart_test",
    "type": "mysql"
})

db.connect()

# Read data
result = db.table('users').read({'conditions': {'status': 'active'}})
print(result)

db.close()
```
