Tagged Questions
1
vote
1answer
97 views
Which of these is a good way to request an API?
Whenever looking at API libraries for Python, there seems to be about half of them simply using:
response = urllib2.urlopen('https://www.example.com/api', data)
and about half using:
connection = ...
