filter on django-import-export
django, django-import-export, django-models
Solution
Pass `queryset` to export method:
queryset = Price.objects.exclude(...)
data = ExportData().export(queryset)
data.csv
Problem
I want to create csv file form my model send a dictionary of Queries ( filter exclude ) to django-import-export and return data from my model. using flowing code i have all of model fields but i need to filter them with a query. ``` from import_export import resources from finance.models import Price class ExportData(resources.ModelResource): class Meta: model = Price ```