Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tiagocordeiro/pywebshot

Website screenshot generator with Python
https://github.com/tiagocordeiro/pywebshot

Last synced: about 2 months ago
JSON representation

Website screenshot generator with Python

Awesome Lists containing this project

README

        

# PyWebShot
## Crie capturas de tela de uma página web.

[![GitHub](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/tiagocordeiro/pywebshot/blob/master/LICENSE)

### Importante
Você vai precisar do webdriver instalado no path do seu sistema.
Faça o download da versão equivalente ao seu navegador em `http://chromedriver.chromium.org/downloads`

Obs: Você pode copiar o arquivo execultável para dentro da venv que será criado.

### Como rodar o projeto
* Clone esse repositório.
* Crie um virtualenv com Python 3.
* Ative o virtualenv.
* Instale as dependências.
* Rode a aplicação.

```
git clone https://github.com/tiagocordeiro/pywebshot.git
cd pywebshot
python3 -m venv venv
source venv/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
python pywebshot.py https://www.mulhergorila.com --metodo fullpage
```