TileMapBase icon indicating copy to clipboard operation
TileMapBase copied to clipboard

Add proxy support

Open dstrigl opened this issue 4 years ago • 0 comments

A request to add proxy support, like passing a dict which can be used by the requests.get() function:

proxies = {
    "http": "http://10.10.10.10:8000",
    "https": "http://10.10.10.10:8000",
}
response = _requests.get(url, proxies=proxies)

dstrigl avatar Oct 13 '21 12:10 dstrigl