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 and use a package, instead of running
import my_module
run TD_Pip like this:
my_module = op('td_pip').Import_Module("my_module",
pip_name = "my_module_on_pip,
additional_settings = [list of additional arguments])
i.E.Â
import socketio
becomes
socketio = op("td_pip").Import_Module( "socketio", pip_name = "python-socketio[client]" (
To just install a package run
Â
op('td_pip').InstallPackage( package_name )
Â