get¶
- requests_pelican.get(url, params=None, **kwargs)[source]¶
Sends a GET request.
- Parameters:
url – URL for the new
Requestobject.params – (optional) Dictionary, list of tuples or bytes to send in the query string for the
Request.**kwargs – Optional arguments that
requesttakes.
- Returns:
Responseobject- Return type:
requests.Response
requests.getThe upstream function of which this is a wrapper.