2
I was learning to use API’s from websites to a project, and right at the beginning I had difficulties and had to ask.
This was the example of the use of API to test credentials on the site, I believe it is C++:
curl -u user:password https://myanimelist.net/api/account/verify_credentials.xml
The problem is that I started learning now and was by Python 3, then I have no idea what the command does, let alone an equivalent in Python.
After a few seconds I thought I’d wear something with the RobotBrowser
or urllib
, but
I’m not sure if it’s right.
helped a lot, thanks
– SirRW