Metadata-Version: 2.1
Name: kraken-browser
Version: 0.0.3
Summary: Kraken Browser
Home-page: https://github.com/tactik8/kraken_image_processing
Author: Tactik8
Author-email: info@tactik8.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# Kraken Browser

## Overview
Runs a chromium browser in the background.
Class Browser() retrieves a webpage along with images and screenshots

## Features
Auto-proxy: rotates proxy automatically


## Input
- url: url of the webpage to retrieve

## Attributes
- url: url of the webpage
- html: html fo the webpage retrieved
- screenshot: image object (dict) of the screenshot file (viewport)
- screenshot_full: image object (dict) of the screenshot file (full page)
- image_files: path of the image files
- images: array of image objects of the image files
- image object keys: 
    - schema:url url of the webpage
    - schema:contenturl url of the image
    - temp:data binary data of the image


## How to use

`from kraken_browser import Browser`

`url = 'https://www.test.com`

`browser = Browser(url)`

`html = browser.html`



