I am using Python\'s requests library in one method of my application. The body of the method looks like this:
def handle_remote_file(url, **kwargs):
res
I think simple solution for this will be creating temporary http server using python and using it.
python -m http.server 8000 (Note 8000 is port no.)