If you want to import x and use it in another file, you just need to import it once. There's no need for another import or a "grab" function.
x
main.py:
from ImporterFile import x print(x)
ImporterFile.py:
x = "hii!!"