i have some scripts which imports pandas, numpy... and the time to import all these packages is about 1.5 s and the total execution time of the script is less 2s
Is there any way to speed up the import modules under python3 ?
Using the technique from pandas import xxx
of how to reduce the time of python import modules?
does not improve the execution time (despite of i only import three functions)
Thank you.