makridenko / supadantic

Supadantic is a small Python library that allows you to manage Supabase tables through Pydantic models.
https://makridenko.github.io/supadantic/
MIT License
24 stars 2 forks source link

`QSet` object #9

Closed makridenko closed 2 months ago

makridenko commented 3 months ago

QSet object will store supadantic entities. It should have two methods:

users = User.get_list()
users.update(data={'name': 'John Doe'})
users.delete()