How To Import Python Code Into Views.py File In Django
I am new to django and I am trying to link a response from a form submission to a couple python methods I wrote in a different file which will use the user input as parameters. I
Solution 1:
Try the following
from <app name>.Crunch import *
Post a Comment for "How To Import Python Code Into Views.py File In Django"