Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

import class in python

import sys
sys.path.append("")		# fixes import issues

from your_file import your_class
# OR
from your_dir.your_file import your_class

# also, make sure there is an empty __init__.py file in each directory
 
PREVIOUS NEXT
Tagged: #import #class #python
ADD COMMENT
Topic
Name
5+7 =