Metadata-Version: 2.1
Name: stofware-client-sdk
Version: 0.1.2
Summary: A client SDK for interacting with the Stofware API
Home-page: https://github.com/stofloos/stofware-python-client-sdk
Author: Stofloos
Author-email: robin@stofloos.nl
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.0.0

# Stofware Client

Stofware Client is a Python SDK for interacting with the Stofware API.

## Installation

You can install the package using pip:

```bash
pip install stofware-client
```

Usage
```python
from stofware_client import StofwareClient

client = StofwareClient("https://api.example.com", "your-token-here")
data = client.model("your-entity").get_all()
