how to ust TA python package code example
Example 1: how to install packages inside thepython script
import sys
import subprocess
# implement pip as a subprocess:
subprocess.check_call([sys.executable, '-m', 'pip', 'install',
'<packagename>'])
Example 2: package in python
A package is basically a directory with Python files and a file with the name __init__.py