Metadata-Version: 2.1
Name: sellapp
Version: 1.0.3
Summary: Python SDK for sell.app
Project-URL: Homepage, https://github.com/qoft/sellapp.py
Keywords: sell.app,sellapp
Requires-Python: >=3.7
Description-Content-Type: text/markdown


# sellapp

A Python SDK made for [sell.app](https://sell.app) 


## Installation

```bash
  pip install sellapp
```
    
## Usage

### Basic usage
```python
import sellapp

api = sellapp.Api("Your api key")
blacklists = api.get_all_blacklists()
orders = api.get_all_orders()

print(blacklists)
print(orders)
```
