DEV Community

Azeem Haider
Azeem Haider

Posted on

Google Firestore ORM package in Python

FireO is ORM package in Python for the Google’s Firestore

A modern and simplest convenient ORM package in Python. FireO is specifically designed for the Google’s Firestore. It implements validation, type checking, relational model logic and much more facilities. FireO is more than just ORM

Example Usage

class User(Model):
    name = TextField()
    age = NumberField()


u = User()
u.name = "Azeem"
u.age = 26
u.save()

Checkout FireO Repository in GitHub and give some Feedback

Top comments (0)