I'm looking at the requests
module, and I don't understand how the method requests.get()
can be invoked.
In the root directory of requests module, there is api.py
module that has method get(url, **kwargs)
. Then, how come I don't have to do requests.api.get()
to invoke it?