I have main.py and app.py In main.py I import app.py But I have both programs use requests module. app.py is just one class, where I am in __init__() doing self.r = requests . Same thing in main.py
What is the best way to do, import requests into both of my modules or import only into main.py and from there "shove" into my app.py ?
I would like to use the second option, but it turns out some kind of hat :(