Reputation: 81
I've been trying making websites recently and I am trying to make a python code to check some vulnerabilities and bugs that might occur on the website.
Issue is that I currently don't have a domain and can't test it with a real server so I was wondering, in the meantime, if I could send "requests" to the index.html file as if it were a real server somehow.
Anything would be greatly appreciated, thanks!
Upvotes: 0
Views: 139
Reputation: 861
You could just make a real web server on your pc. Using Flask, docker, etc.
Then just point your python tests at that new web server.
Upvotes: 1