I have a problem with importing a python module. I installed django (it can be any other module). I am using this module:
from django.template import Context
I have a folder in my application named "utilities". In this folder I created the file "django.py" - this file contains some functions for working with django. Therefore, I import django into my module and get an error: File "... \ utilities \ django.py", line 1, from django.template import Context ImportError: there is no module named template
source share