I have a folder defined "models". inside that, I have a python class(site.py)
I want to import that class to my main class.
I tried several ways but not working.
site.py
class site(object):
....
Main.py
def BuildATGSiteConfig():
a= site()
return a