My API server wants the URL to have %3A which I generate using urllib parse quote. However when I pass the URL to aiohtttp it replaces it with ':' . How to avoid this ?
Example : END POINT = http://server/item_url/http%3A//<path_to_item>
when i pass this url to aiohttp session.post(END_POINT, data)
my request fails which when i debug found out that http%3A//
has become http://