STO
├── __init__.py
├── jsonopenlayers
│ ├── ingestion
│ │ └── ingestShp.py
│ ├── __init__.py
│ ├── models.py
│ └── views.py
├── manage.py
└── settings.py
What I would like to do is to import the functions written inside
ingestShp.py into my views.py.
I've tried in several ways, for example with
from jsonopenlayers.ingestion.ingestShp import *
inside the views.py file, but I get the error
Could not import jsonopenlayers.views. Error was: No module named
ingestion.ingestShp
How can I import this file?
Thanks in advance