mddanishyusuf / dailyhack

🐱‍💻 Tiny Tiny Hacks we use in our daily life.
https://dailyhack.now.sh/
149 stars 15 forks source link

FireO - Google cloud Firestore ORM package in python #103

Open AxeemHaider opened 4 years ago

AxeemHaider commented 4 years ago

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

mddanishyusuf commented 4 years ago

@AxeemHaider Thanks for contributing your hack.