-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathexemplo-datajud.r
108 lines (80 loc) · 1.95 KB
/
exemplo-datajud.r
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
api_key <- "cDZHYzlZa0JadVREZDJCendQbXY6SkJlTzNjLV9TRENyQk1RdnFKZGRQdw=="
endpoint <- "https://api-publica.datajud.cnj.jus.br/api_publica_{tribunal}/_search"
# remotes::install_github("abjur/forosCNJ")
forosCNJ::da_justica
tribunais_estaduais <- forosCNJ::da_tribunal |>
tibble::as_tibble() |>
dplyr::filter(id_justica == 8) |>
dplyr::pull(sigla) |>
stringr::str_to_lower()
links <- glue::glue(endpoint, tribunal = tribunais_estaduais)
id_processo <- "10219161720228260224"
# exemplo básico de uso ----------------------------------------------
library(httr)
#Substituir <API Key> pela Chave Pública
headers <- httr::add_headers(
"Authorization" = paste("ApiKey", api_key)
)
payload <- list(
query = list(
match = list(
numeroProcesso = id_processo
)
)
)
res <- httr::POST(
links[25],
body = payload,
headers,
encode = "json"
)
dados_resultantes <- httr::content(res, "parsed", simplifyDataFrame = TRUE) |>
purrr::pluck("hits", "hits", "_source") |>
tibble::as_tibble()
dplyr::glimpse(dados_resultantes)
dados_resultantes$movimentos
cat(content(res, 'text'))
dados_resultantes$orgaoJulgador
# exemplo de busca por assunto do processo.
codigo_assunto <- "4829"
body <- list(
query = list(
bool = list(
must = list(
match = list(
"assuntos.codigo" = codigo_assunto
)
)
)
),
size = 10000,
sort = list(
list(
"@timestamp" = list(
order = "asc"
)
)
)
)
res <- httr::POST(
links[19],
body = body,
headers,
encode = "json"
)
res
dados_resultantes <- httr::content(res, "parsed", simplifyDataFrame = TRUE) |>
purrr::pluck("hits", "hits")
dados_resultantes |>
str()
dados_resultantes[["_source"]] |>
tibble::tibble()
dplyr::glimpse(dados_resultantes)
# RVEST
## remotes::install_github("tidyverse/rvest")
library(rvest)
sess <- read_html_live(
"https://www.google.com/search?q=ibovespa"
)
sess$view()
sess$html_elements(xpath=".//a")