How to Solve NameError: name 'synchronous_func1' is not defined -- django_app

Solution: Import the 'synchronous_func1' module

To Solve the error, add the following line to the top of your code.

from django_app.xxx import synchronous_func1

 

For more information:
Python django_app synchronous_func1