-
Notifications
You must be signed in to change notification settings - Fork 10
/
exemplo-tjsp.py
80 lines (71 loc) · 1.92 KB
/
exemplo-tjsp.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# %%
import requests
import pandas as pd
# %%
# conversationId:
# dadosConsulta.pesquisaLivre: league of legends
# tipoNumero: UNIFICADO
# numeroDigitoAnoUnificado:
# foroNumeroUnificado:
# dadosConsulta.nuProcesso:
# dadosConsulta.nuProcessoAntigo:
# classeTreeSelection.values:
# classeTreeSelection.text:
# assuntoTreeSelection.values:
# assuntoTreeSelection.text:
# agenteSelectedEntitiesList:
# contadoragente: 0
# contadorMaioragente: 0
# cdAgente:
# nmAgente:
# dadosConsulta.dtInicio:
# dadosConsulta.dtFim: 13/03/2024
# varasTreeSelection.values:
# varasTreeSelection.text:
# dadosConsulta.ordenacao: DESC
# %%
query_dict = {
"conversationId": "",
"dadosConsulta.pesquisaLivre": "league of legends",
"tipoNumero": "UNIFICADO",
"numeroDigitoAnoUnificado": "",
"foroNumeroUnificado": "",
"dadosConsulta.nuProcesso": "",
"dadosConsulta.nuProcessoAntigo": "",
"classeTreeSelection.values": "",
"classeTreeSelection.text": "",
"assuntoTreeSelection.values": "",
"assuntoTreeSelection.text": "",
"agenteSelectedEntitiesList": "",
"contadoragente": 0,
"contadorMaioragente": 0,
"cdAgente": "",
"nmAgente": "",
"dadosConsulta.dtInicio": "",
"dadosConsulta.dtFim": "13/03/2024",
"varasTreeSelection.values": "",
"varasTreeSelection.text": "",
"dadosConsulta.ordenacao": "DESC"
}
u = 'https://esaj.tjsp.jus.br/cjpg/pesquisar.do'
r0 = requests.get(u, params=query_dict)
# %%
# %%
with open('resultados-tjsp-requests.html', 'w') as f:
f.write(r0.text)
# %%
import os
# create folder livetjsp/requests
os.makedirs('livetjsp/requests', exist_ok=True)
def baixar_pagina(pag):
f_save = f'livetjsp/requests/{pag}.html'
param_pagina = {'pagina': pag, 'conversationId': ''}
u = 'https://esaj.tjsp.jus.br/cjpg/trocarDePagina.do'
r = requests.get(u, params=param_pagina, cookies=r0.cookies)
with open(f_save, 'w') as f:
f.write(r.text)
# %%
paginas = 3
for pag in range(1, paginas+1):
baixar_pagina(pag)
# %%