Google Firestore ORM package in Python

Azeem Haider - Oct 28 '19 - - Dev Community

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()
Enter fullscreen mode Exit fullscreen mode

Checkout FireO Repository in GitHub and give some Feedback

. . . . . . .
Terabox Video Player