Answers for "getting functions from another folder python"

3

importing python module from different directory

# test.py
import sys
# append current python modules' folder path
# example: need to import module.py present in '/path/to/python/module/not/in/syspath'
sys.path.append('/path/to/python/module/not/in/syspath')

import module
Posted by: Guest on May-16-2020

Code answers related to "getting functions from another folder python"

Python Answers by Framework

Browse Popular Code Answers by Language