Socket
Socket
Sign inDemoInstall

screenshot-api

Package Overview
Dependencies
3
Maintainers
1
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    screenshot-api

Python client library for Screenshot API.


Maintainers
1

Readme

.. image:: https://img.shields.io/badge/License-MIT-green.svg :alt: screenshot-py license :target: https://opensource.org/licenses/MIT

.. image:: https://img.shields.io/pypi/v/screenshot-api.svg :alt: screenshot-py release :target: https://pypi.org/project/screenshot-api

.. image:: https://github.com/whois-api-llc/screenshot-py/workflows/Build/badge.svg :alt: screenshot-py build :target: https://github.com/whois-api-llc/screenshot-py/actions

======== Overview

The client library for Screenshot API <https://website-screenshot.whoisxmlapi.com/>_ in Python language.

The minimum Python version is 3.6.

Installation

.. code-block:: shell

pip install screenshot-api

Examples

Full API documentation available here <https://website-screenshot.whoisxmlapi.com/api/documentation/making-requests>_

Create a new client

.. code-block:: python

from screenshotapi import *

client = Client('Your API key')

Capture screenshots

.. code-block:: python

client.get(filename='screen.jpg',url='example.com')

Extras

.. code-block:: python

cookies = {
    'name1': 'value1',
    'name2': 'value2'
}

# Pass cookies, emulate mobile device, disable JS, wait for network idle
# event, output API errors in XML, capture PDF screenshot in full page
# mode and get image data in base64.
response = client.get_raw(
    url='example.com',
    type=ImageFormat.PDF,
    mode=Client.SLOW_MODE,
    full_page=True,
    mobile=True,
    output_format=Client.XML_FORMAT,
    image_output_format=Client.BASE64_FORMAT,
    no_js=True,
    cookies=cookies
)

Changelog

1.0.0 (2021-12-16)

  • First release

Keywords

FAQs


Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc