python requests get querystring code example
Example: python requests query string
>>> requests.get(
... 'https://api.github.com/search/repositories',
... params={'q': 'requests+language:python'}
... )
<Response [200]>
>>> requests.get(
... 'https://api.github.com/search/repositories',
... params={'q': 'requests+language:python'}
... )
<Response [200]>