How to Solve NameError: name 'format_suffix_patterns' is not defined -- rest_framework

Solution: Import the 'format_suffix_patterns' module

# Add the following line to the top of your code
from rest_framework.urlpatterns import format_suffix_patterns

 

For more information:
rest_framework format_suffix_patterns