According to the official Python documentations or to this post importing own modules into scripts is quite easy. Basically I just need to create my .py files, save them in one directory and I can import them using just
from my_module import my_function
It is exactly what I did in my Project. I wrote two scripts and saved them inside one directory. I would like to use some functions from them in third script (again it is saved in the same directory). As in the picture below.
Now I import WebScraper.py in the following way
As you can see in the picture above there's an error which says that there is no module named WebScraper. How can I deal with that problem?