supadantic icon indicating copy to clipboard operation
supadantic copied to clipboard

Supadantic is a small Python library that allows you to manage Supabase tables through Pydantic models.

Results 14 supadantic issues
Sort by recently updated
recently updated
newest added

1. Idea is to use `sphinx` + `readthedocs`. Need to add docs generation to CI/CD 2. there is an error in README.md (supabase link)

documentation
next-release

feature-request
need to describe
next-release

```python # This hits supabase 3 times, need 1 User.filter(eq={'name': 'name'}).filter(eq={'age': 21}).filter(eq={'is_active': True}) ```

feature-request

Need to describe. ```python class User(BaseDBEntity): pass class UserSettings(BaseDBEntity): user: User user = User() user_settings = UserSettings(user=user) ```

feature-request
need to describe