You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ObjectAPI provides a concise negative-boilerplate paradigm for creating full-stack web applications with Python. It is built on top of [FastAPI](https://fastapi.tiangolo.com/), [SQLModel](https://sqlmodel.tiangolo.com/), and [pydantic](https://docs.pydantic.dev/latest/).
4
+
5
+
## Features
6
+
7
+
- Active record pattern for database access
8
+
- Automatic get_by_id lookup for instance methods with route decorators
9
+
- Automatic CRUD routes
10
+
- Scheduled service methods
11
+
- Managed DB sessions for service methods and for each request
12
+
13
+
## Installation
14
+
15
+
```bash
16
+
pip install object-api
17
+
```
18
+
19
+
## Usage
20
+
21
+
```python
22
+
from object_api import App, Entity, RouterBuilder, ServiceBuilder
0 commit comments