My example of returning the Python library path served two purposes. It shows how to run Python3 in Bash without it being contained in a Bash function, and it shows how to determine the PYTHONPATH to the Python3 library (boxed red content).
As long as there is no syntax, or module naming issue, Python3 is also very happy to dip into the System Python 2.7.10 modules, and you don't want that.
If the code example runs for you and returns the path to your Python3 library, then your Python3 is finding its library, and you just replace the Python code that I used with your own.
If the code that I provided bombs because it could not find your Python3 library, or it shows a path to the System Python 2.7 library path, then you need to determine where your package manager installed it, and then do the following prior to the Python3 HERE script line:
export PYTHONPATH="/usr/local/lib"
or whatever the appropriate path.