DEV Community

Azeem Haider
Azeem Haider

Posted on

1 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)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

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

Okay