Metadata-Version: 2.4
Name: pickn
Version: 1.0.0
Summary: SDK officiel pour l'API Pickn - Paiements et livraisons
Author-email: Pickn Technologies <dev@pickn.fr>
License: MIT
Project-URL: Homepage, https://pickn.fr/developers
Project-URL: Documentation, https://pickn.fr/api-docs
Project-URL: Repository, https://github.com/pickn/python-sdk
Project-URL: Bug Tracker, https://github.com/pickn/python-sdk/issues
Keywords: pickn,payment,delivery,api,sdk
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
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
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25.0

# Pickn Python SDK

SDK officiel pour l'API Pickn - Paiements et livraisons

## Installation

```bash
pip install pickn
```

## Usage

```python
import pickn

# Configuration
sdk = pickn.PicknSDK()
sdk.config(api_key='pk_test_...', environment='test')

# Créer un paiement
payment = sdk.payments.create({
    'amount': 5000,  # en centimes (50.00€)
    'currency': 'EUR',
    'customer_id': 'cus_abc123',
    'description': 'Achat produit'
})

print(payment['status'])  # 'succeeded'
```

## Documentation

Consultez la documentation complète sur [pickn.fr/developers](https://pickn.fr/developers)
