john1
1
I’m following the Talk Python video tutorial on Anvil and can’t seem to import the navigation client module. In the video the author simply types:
import navigation
When I do that I get the following error:
ModuleNotFoundError: No module named ‘navigation’
When I use code completion it says to do the following:
from … import navigation
But that gives me the following error:
ImportError: Attempted relative import beyond toplevel package
What am I missing?
Links to code below:
Note I did make the adjustment of … in front of the forms you are importing, which the author alerted me too in the videos
john1
2
Disregard, I see following this tutorial isn’t the best way to go