Metadata-Version: 2.4
Name: stitchdb
Version: 1.0.0
Summary: StitchDB database backend for Django
Home-page: https://github.com/stitchdb/django
Author: StitchDB
Author-email: support@stitchdb.com
License: MIT
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.2
Classifier: Framework :: Django :: 4.0
Classifier: Framework :: Django :: 4.1
Classifier: Framework :: Django :: 4.2
Classifier: Framework :: Django :: 5.0
Classifier: Framework :: Django :: 5.1
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: django>=3.2
Requires-Dist: requests>=2.25.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# StitchDB for Django

## Install

```bash
pip install stitchdb
```

## Configure

In `settings.py`:

```python
DATABASES = {
    'default': {
        'ENGINE': 'stitchdb_django',
        'URL': os.environ.get('STITCHDB_URL', 'https://db.stitchdb.com'),
        'API_KEY': os.environ.get('STITCHDB_API_KEY', ''),
    }
}
```

No other setup needed. Run `python manage.py migrate` and use Django ORM as usual.
