'Django convert external API data into a queryset without actually interacting with local database [closed]

In my Django project im fetching data from an external API. It is possible to convert the API data into a django model or class.

The resulting data shell be used in a view form which is using django-filter to filter the information by user input.

The django-filter instance expects a queryset as input.

How do i turn the external API data into a queryset without interacting with the local database in any form?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source