Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/tiagocordeiro/pywebshot
- Owner: tiagocordeiro
- License: mit
- Created: 2019-03-20T17:12:54.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-06-01T23:31:50.000Z (over 3 years ago)
- Last Synced: 2024-10-30T09:43:26.671Z (3 months ago)
- Language: Python
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```