Skip to main content

Quick mixin to provide basic features to firedantic

Project description

Firedantic Order by / Select / Limit

Objective

This is a quick 'monkeypatch' / mixin for Firedantic to provide missing capabilities Based on the issue https://github.com/ioxiocom/firedantic/issues/43

Firedantic is a pydantic wrapper for Google Firestore, it's actually quite handy, however it is missing some design / direction and strategy.

Currently is no select, order_by capabilities, which limits (a function also missing) you to filter and listing, reducing the ability to use it for most needs.

Attempts to influence and encourage direction are met with hostility from the maintainer(s). This had driven the direction of this solution to use a monkey patch and extension to allow for easy integration.

Installation

Standard install, note - vs _

poetry add firedantic-mixin

Usage

from firedantic_mixin.mixin import FiredanticMonkey

How to use

Simply swap the super class of firedantic.Model for FiredanticMonkey

Firedantic standard Firedantic mixin
from firedantic import Model

class Orders(Model):  
   __collection__ = "Monkey-Orders"
   
   item : str
   quantity : int
   price: float
from firedantic_mixin.mixin import FiredanticMonkey

class Orders(FiredanticMonkey): 
    
    __collection__ = "Monkey-Orders"
    
    item : str
    quantity : int
    price: float

This opens up the ability to do standard compound tasks by returning Firestores BaseQuery

# return just item and price fields, order by price
query = Orders.select(['item', 'price']).\
            order_by("price", Query.ASCENDING)

results = list(query.stream())

Results will be Firestores DocumentSnapshots to go back to a Firedantic model simply do:

models = Orders.to_dantic(results)

What else can you now do?

As you have direct access to BasicQuery as part of the model

Orders.query() # returns a BaseQuery
Orders.query({"price": {">": 1}}) # filtering

Orders.query().offset(20).limit(10) # pagination

Orders.select(['item', 'price']) # field selects

Orders.query().order_by("price", Query.ASCENDING) # ordering by 

There is currently less than 70 lines of code that just opens this up and makes it usable.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

firedantic_mixin-1.0.6.tar.gz (7.7 kB view details)

Uploaded Source

Built Distribution

firedantic_mixin-1.0.6-py3-none-any.whl (8.5 kB view details)

Uploaded Python 3

File details

Details for the file firedantic_mixin-1.0.6.tar.gz.

File metadata

  • Download URL: firedantic_mixin-1.0.6.tar.gz
  • Upload date:
  • Size: 7.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.11.0 Linux/6.2.0-1012-azure

File hashes

Hashes for firedantic_mixin-1.0.6.tar.gz
Algorithm Hash digest
SHA256 6a8ed0c6ce7e7a65244c9b23c7db2a643d01c9b04911c9cdb1a68d079f31a40c
MD5 c719d992be129d6d7dfac9f7a593a117
BLAKE2b-256 cfd5c194b7fefa45489e0af0a3fc3a4aacc1f042e1895257de3ec08f496161b9

See more details on using hashes here.

File details

Details for the file firedantic_mixin-1.0.6-py3-none-any.whl.

File metadata

  • Download URL: firedantic_mixin-1.0.6-py3-none-any.whl
  • Upload date:
  • Size: 8.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.6.1 CPython/3.11.0 Linux/6.2.0-1012-azure

File hashes

Hashes for firedantic_mixin-1.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 343cf65ab9923da55a87e3805358c7746bf9c7564316650bf126cdfd577beebd
MD5 2f7b228d9c2dcea3291d418a9fcdaff3
BLAKE2b-256 359b0079c3f50d09a6213f4ff06690e33ad45074f85d48167409829011fb28e2

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page