MY following question: How can i call auth username and password from a config file.
r = requests.get(url, auth=('username', 'password')).content
What i wish is a config file which include username, password
r = requests.get(url, auth=(MYconfig file)).content
hope any one can give me a sample.
thank you in advance