Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FireO - Google cloud Firestore ORM package in python #103

Open
AxeemHaider opened this issue Oct 31, 2019 · 1 comment
Open

FireO - Google cloud Firestore ORM package in python #103

AxeemHaider opened this issue Oct 31, 2019 · 1 comment
Assignees
Labels
coding dailyhack This issue belongs to dailyhack.xyz

Comments

@AxeemHaider
Copy link

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 mddanishyusuf added coding dailyhack This issue belongs to dailyhack.xyz labels Oct 31, 2019
@mddanishyusuf
Copy link
Owner

@AxeemHaider Thanks for contributing your hack.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
coding dailyhack This issue belongs to dailyhack.xyz
Projects
None yet
Development

No branches or pull requests

2 participants