hello i am working on my first python project and i have problem with importing from subfolders in project
for example this my project tree
C:\USERS\AHMAD\DESKTOP\myProject
│
├───project
│ │ __init__.py
│ │
│ ├───core
│ │ config.py
│ │ __init__.py
│ │
│ ├───libs
│ │ lib1.py
│ │ __init__.py
│ │
│ └───modules
│ │ __init__.py
│ │
│ ├───module1
│ | script1.py
│ │ __init__.py
│ │
│ ├───module2
│ │ __init__.py
│ │
│ ├───module3
│ │ __init__.py
│ │
│ └───module4
│ __init__.py
now at script1 in module1 how can i import config file from core folder?? is that possible ? help please!!.