https://github.com/AliFlux/MapTilesDownloader I tried the following:
PS C:\Program Files\MapTilesDownloader-master\src> python server.py
but I received the following result:
Traceback (most recent call last):
File "server.py", line 3, in <module>
from http.server import BaseHTTPRequestHandler, HTTPServer
ImportError: No module named http.server
Could you please help me solve this problem? Thank You in advance.
It should be because you have the wrong Python version, you need Python 3 to use http.server
Check out this link, this person also has a similar issue, try starting the server with
python3 server.py, you may have to download Python 3 if it doesn't work