dailyhack
dailyhack copied to clipboard
FireO - Google cloud Firestore ORM package in python
A modern and simplest convenient ORM package in Python. FireO is specifically designed for the Google's Firestore, it's more than just ORM. It implements validation, type checking, relational model logic and much more facilities.
Usage Example
class User(Model):
name = TextField()
u = User()
u.name = "Azeem Haider"
u.save()
# Get user
user = User.collection.get(u.key)
print(user.name)
Read More about FireO
Give and some good feedback and appreciate our work by giving stars on our project FireO
@AxeemHaider Thanks for contributing your hack.