I want to import a file from subdir and I get an error like that:
ModuleNotFoundError: No module named 'special'
│   
├── constants.py
├── crawler.py
├── case.py ===================>>>> I working on this file
├── special
    ├── __init__.py
    └── wantToImport.py =================>>>I want to import this file
My case.py like that:
from special.wantToImport import ImportClass
And my wantToImport.py file like that:
class ImportClass:
    def mydefination(self):
        #Some codes here
 
I want to use mydefinitioon function on my case.py file But I cannot import this file. Why Im getting this error? How can I solve this?
 
     
    