I have developed two different python libraries in my project and I use those two libraries in my build script. For Example,
In lib1.py
, I import pandas as pd
and,
In lib2.py
, I import pandas as same.
In my build script run.py
, I import both lib1
and lib2
. So in this what python will do? How do I prevent importing python two time in my build script run.py
?