requests.status
requests.status(int) => list
List the status of all screenshot requests in a group.
Arguments
~~~~~~~~~
* id int (request group id from requests.submit)
Return value
~~~~~~~~~~~~
* status list (request status for each requested browser)
The list will contain a dictionary for each browser, with the
following entries:
* browser string (browser name)
* status string (pending / starting / loading / uploaded / failed)
* seconds int (estimated or actual time between request and upload)
* hashkey string (after the screenshot is uploaded)
You can use the hashkey to generate the resulting PNG file URL,
for example if the hashkey is beef1234:
* http://api.browsershots.org/png/original/be/beef1234.png
* http://api.browsershots.org/png/512/be/beef1234.png
* http://api.browsershots.org/png/160/be/beef1234.png
The /be/ part is the first two characters of the hashkey.
Normally, the hashkey consists of 32 random lowercase hex
characters.
Back to the list of supported methods