You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, thank you fort your open source package PyPika!
I want to use pypika objects as a custom filed type in pydantic, when I want to serialize and deserialize my pydantic model, for pypika field I get error.
It seems I need method like QueryBuilder.from_str(query_str) that get string and make querybuider from it.
for example
It is not part of the library. But I think it would be cool functionality
I've built out some simple parsing using sqlparse but it is not very robust so I haven't released it. Mainly making use of the sqlparse.parse function. It might be good to look into if it isn't on your radar.
How complex are the queries that you are working with?
Thank you very much for your response, my queries will be complex. As I explained, my main issue is using pypika objects as a field type in the pydantic. For now I simply stringify them, but in deserialization I have no idea. Do you have suggestion for serialization and deserialization of pypika instanses (except stringify)?
Hi, thank you fort your open source package PyPika!
I want to use pypika objects as a custom filed type in pydantic, when I want to serialize and deserialize my pydantic model, for pypika field I get error.
It seems I need method like QueryBuilder.from_str(query_str) that get string and make querybuider from it.
for example
get us :query_str =
"SELECT id FROM customers"
I want to get
q
object when I have query_strIs it possible?
The text was updated successfully, but these errors were encountered: