I have a request object which has a header and some query parameters.
I can get the headers parameters like this:
request.headers.get('content-type')
How can I get the value for query parameter "Subject" in Python?
For example: http://localhost:5000/api?Subject=Test
I'm using Flask (flask.pocoo.org) for the servers and Requests (docs.python-requests.org/en/master) for the client.