DEV Community

Azeem Haider
Azeem Haider

Posted on

2 1

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

Checkout FireO Repository in GitHub and give some Feedback

Top comments (0)

Speedy emails, satisfied customers

Postmark Image

Are delayed transactional emails costing you user satisfaction? Postmark delivers your emails almost instantly, keeping your customers happy and connected.

Sign up

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay