fastapi-sqlalchemy-ease 0.1.0__tar.gz → 0.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {fastapi_sqlalchemy_ease-0.1.0 → fastapi_sqlalchemy_ease-0.1.1}/PKG-INFO +1 -1
- {fastapi_sqlalchemy_ease-0.1.0 → fastapi_sqlalchemy_ease-0.1.1}/README.md +3 -3
- {fastapi_sqlalchemy_ease-0.1.0 → fastapi_sqlalchemy_ease-0.1.1}/fastapi_sqlalchemy_ease/__init__.py +1 -1
- {fastapi_sqlalchemy_ease-0.1.0 → fastapi_sqlalchemy_ease-0.1.1}/fastapi_sqlalchemy_ease.egg-info/PKG-INFO +1 -1
- {fastapi_sqlalchemy_ease-0.1.0 → fastapi_sqlalchemy_ease-0.1.1}/setup.py +1 -1
- {fastapi_sqlalchemy_ease-0.1.0 → fastapi_sqlalchemy_ease-0.1.1}/fastapi_sqlalchemy_ease/core.py +0 -0
- {fastapi_sqlalchemy_ease-0.1.0 → fastapi_sqlalchemy_ease-0.1.1}/fastapi_sqlalchemy_ease/exceptions.py +0 -0
- {fastapi_sqlalchemy_ease-0.1.0 → fastapi_sqlalchemy_ease-0.1.1}/fastapi_sqlalchemy_ease.egg-info/SOURCES.txt +0 -0
- {fastapi_sqlalchemy_ease-0.1.0 → fastapi_sqlalchemy_ease-0.1.1}/fastapi_sqlalchemy_ease.egg-info/dependency_links.txt +0 -0
- {fastapi_sqlalchemy_ease-0.1.0 → fastapi_sqlalchemy_ease-0.1.1}/fastapi_sqlalchemy_ease.egg-info/requires.txt +0 -0
- {fastapi_sqlalchemy_ease-0.1.0 → fastapi_sqlalchemy_ease-0.1.1}/fastapi_sqlalchemy_ease.egg-info/top_level.txt +0 -0
- {fastapi_sqlalchemy_ease-0.1.0 → fastapi_sqlalchemy_ease-0.1.1}/pyproject.toml +0 -0
- {fastapi_sqlalchemy_ease-0.1.0 → fastapi_sqlalchemy_ease-0.1.1}/setup.cfg +0 -0
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
# fastapi-sqlalchemy
|
|
1
|
+
# fastapi-sqlalchemy-ease
|
|
2
2
|
A reusable SQLAlchemy extension for FastAPI.
|
|
3
3
|
|
|
4
4
|
## Installation
|
|
5
5
|
```bash
|
|
6
|
-
pip install fastapi-sqlalchemy
|
|
6
|
+
pip install fastapi-sqlalchemy-ease
|
|
7
7
|
```
|
|
8
8
|
|
|
9
9
|
## Usage
|
|
10
10
|
```python
|
|
11
|
-
from
|
|
11
|
+
from fastapi_sqlalchemy_ease import SQLAlchemy
|
|
12
12
|
|
|
13
13
|
db = SQLAlchemy()
|
|
14
14
|
DATABASE_URI = "sqlite:///site.db"
|
{fastapi_sqlalchemy_ease-0.1.0 → fastapi_sqlalchemy_ease-0.1.1}/fastapi_sqlalchemy_ease/core.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|