cara memulai server cepat python

# if you want to simple server then you can use this
python -m http.server 8000
# To access this server you can either use localhost:8000 or 127.0.0.1:8000
Hammad Zafar