fabiobatalha / crossrefapi

A python library that implements the Crossref API.
BSD 2-Clause "Simplified" License
265 stars 44 forks source link

supporting proxies #14

Open almugabo opened 6 years ago

almugabo commented 6 years ago

Great package ! It would be nice to add support for proxies

the request.get method accept proxies (in a form of a dictionary)

 dict_proxies = {'https': 'https://username:password@HOST:PORT',
            'http': 'http://username:password@HOST:PORT',
               }
  requests.get(url , proxies = dict_proxies)