Having to handle external python libraries is a thing of the past. This component installs PIP directly in your project and dynamicly downloads and import the libraries in your project.
To install a package call the InstallPackage method
op('td_pip').InstallPackage( package_name )
Even better is to use the Import_Module method, checking if the module exists, if not downloading in, and then returning the imported module!
socketio = op('td_pip').Import_Module("socketio", pip_name = "python-socketio")