Metadata-Version: 2.1
Name: rest_mysql
Version: 1.1.5
Summary: Stand alone version of Record_MySQL from Rest-OC to facilitate updating code to newer librairies
Home-page: UNKNOWN
Author: Chris Nasr - Ouroboros Coding Inc.
Author-email: chris@ouroboroscoding.com
License: MIT
Project-URL: Source, https://github.com/ouroboroscoding/rest_mysql
Project-URL: Tracker, https://github.com/ouroboroscoding/rest_mysql/issues
Keywords: rest,mysql,sql
Platform: UNKNOWN
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE

# rest_mysql
[![pypi version](https://img.shields.io/pypi/v/rest_mysql.svg)](https://pypi.org/project/rest_mysql) ![MIT License](https://img.shields.io/pypi/l/rest_mysql.svg)

Stand alone version of Record_MySQL from Rest-OC to facilitate updating code to newer librairies.

## Install

```bash
pip install rest_mysql
```

## Using

Instead of pulling Record_MySQL from RestOC as we did in the past, change any references to rest_mysql

Old:
```python
from RestOC import Record_MySQL
from RestOC.Record_MySQL import db_create, Record
from RestOC.Record_Base import register_type
```

New:
```python
from rest_mysql import Record_MySQL
from rest_mysql.Record_MySQL import db_create, Record
from rest_mysql.Record_Base import register_type
```

