Using ORI PeeWee, I have the following query:
query = DataModel.select()where(DataModel.field == "value")
Is there a way to convert queryto pandas DataFrame without iterating over all values? I am looking for a more "pythonic" way to do this.
source
share