Been getting this error
ModuleNotFoundError: No module named 'main'
Code :
import pandas as pd
import numpy as np
from selenium import webdriver
import main
import visuals
Anyone that could help?
Thanks
Been getting this error
ModuleNotFoundError: No module named 'main'
Code :
import pandas as pd
import numpy as np
from selenium import webdriver
import main
import visuals
Anyone that could help?
Thanks
It looks like you meant to use import __main__
... but here are some good reasons not to do that.