with exception of requests, are there other ways for doing a POST HttpRequest?
I CAN ONLY USE DJANGO LIBS, so I cannot import requests
.
In particular, I would like to pass the username and the password in the post request. something like:
data = {
"username": "user",
"password": "pass",
}
r = request.POST( data )
(please note that this code is just an example)
Anyone knows?
note: I'm using python 2.7
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…