UrlShots Python API DocumentationΒΆ

This document should serve as a guide for utilizing the installable urlshots-api python egg with your projects.

Quickstart Example with defaults:

(todo: add api-key)

>>> from urlshots import API
>>> urlshot = API()
>>> screenshot = urlshot.image('http://www.google.com')
>>> with open('image.png', 'w') as open_file:
...     open_file.write(screenshot)

Contents:

Project Versions

Next topic

Tutorial

This Page