You should be able to import the module from your current working directory straight away. If not, you can add your current working directory to sys.path
:
import sys
sys.path.insert(0, 'path_to_your_module') # or: sys.path.insert(0, os.getcwd())
import your_module
You can also add the directory to PYTHONPATH environment variable.