Skip to content
Advertisement

How do I filter a Django Model by month or year from a JSON dict?

I am trying to parse through a JSON database and filter by month or by year using Django and this is driving me up a wall since this should be simple.

An example of the dict key value pair in the JSON object is formatted as so:

JavaScript

From my views.py file, I set up this function to filter the model:

JavaScript

And in my urls.py, I have this urlpattern (ignoring every other pattern)

JavaScript

Character model from models.py as requested:

JavaScript

I followed this link to get the idea to append “__year” to the release_date attribute when filtering the queryset. But it’s not filtering the database, I’m still seeing all objects. Where am I going wrong? I can’t look to filter by months if I can’t even get the years filtered, so I’m focusing on the year first. Thank you in advance.

Advertisement

Answer

The typical way to add filters to a view is by accepting query parameters in the URL such as http://localhost:8000/character/?year=1990.

To implement this in your view, you get the parameters from request.GET:

JavaScript

The complexity of this grows quickly as you add more fields to filter on. The django-filter library provides a great API for configuring filters on all of your models so you don’t have to write all of this yourself.

Advertisement