[Answer]-Case insensitive search using a method in Python

1👍

you could do a case insesitive match by

get_obj_or_none(Song, name__iexact=song_name, artist=dj)

0👍

Pass name__iexact instead of name.

The documentation is here

Leave a comment