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