You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Este projeto é um scraper para verificar as bibliotecas Python que tiveram atualização no último mês e listá-las, facilitando a identificação de bibliotecas com major version releases.
2
+
3
+
Este projeto é um scraper (raspador de dados) para verificar as bibliotecas Python que tiveram atualização no último mês e listá-las, facilitando a identificação de bibliotecas com lançamentos de versão major.
4
+
5
+
# Como utilizar
6
+
7
+
Para criar um ambiente virtual, execute
8
+
```
9
+
python -m venv .venv
10
+
```
11
+
12
+
Para ativar o ambiente virtual, execute
13
+
```
14
+
source .venv/bin/activate
15
+
```
16
+
17
+
Para instalar as dependências do projeto no ambiente virtual, execute
18
+
```
19
+
pip install -r requirements.txt
20
+
```
21
+
22
+
Para rodar o scrapper, execute
23
+
```
24
+
python getNews.py
25
+
```
26
+
27
+
Para desativar o ambiente virtual, execute `deactivate`.
0 commit comments