I am using proxy in python requests and have followig question. The syntax
http://username:password@host:port
Does the usename and passowrd have to be encoded like quote(usrname) and quote(password) as the username and passowrd can have special chars like #, $ etc.
Does requests need encoding ?
Any github link would be helpful