I am implementing a webservice with a bunch of REST API. These REST API will all be invoked from a python command line interface script.
When a userA, logged in as himself on a unix system, invokes that CLI python script, I would like the script to be able to invoke the REST API through the python HTTP client, but do it without having to use a password.
Since he is already, authenticated as himself on the linux.
How can this be implemented? Are there any Django packages/documentation that help with it?