Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

import python script from another directory

#Unfortunately, Python will only find your file if your file is in the systems path. But fear not! There is a way around this!
#Using python's sys module, we can add a directory to the path just while Python is running, and once Python stops running, it will remove it from the path.
#You can do this by:

import sys
sys.path.insert(0, '/path/to/application/app/folder')
import [file]
 
PREVIOUS NEXT
Tagged: #import #python #script #directory
ADD COMMENT
Topic
Name
3+7 =