python script import local module code example

Example 1: import local module python

# If the module is in the same directory:
import <module_name>

# If the module isn't in the same directory:
import sys
# insert at 1, 0 is the script path (or '' in REPL)
sys.path.insert(1, '/path/to/application/app/folder')

import <module_name>

Example 2: How import a module in python

import mymodule #Ex : tkinter, turtle, etc...
#If you want import a module who isn't in Python (PyGame, QWidgets)
#and you have PyCharm, write : "pip install mymodule", wait the installation
#and write in interpreter : import mymodule, for other ide, search on 
#forums