For a search function I want to save django query to database & later execute it. I have saved the query as shown below in one table(Company, which have id,qryText). The django query is saved as string.
qrySaved = (AND: ('code__in', ['10', '11', '12']), ('color__in', ['1', '2', '3']))
I am unable to execute it like
q = Company.objects.get(id=1)
Car.objects.filter(q.qryText)
as q.qryText is a string not django.db.models.query_utils.Q format. How could I execute this string query ?
The string representation of the query is not easily (safely) reversible so I would try a different type of encoding instead. For example, using the pickle library instead.
To encode:
To decode again: