Last active
July 12, 2018 20:40
-
-
Save fmasanori/e01fa0d85dfd33f0bdc3d744356aee70 to your computer and use it in GitHub Desktop.
Raspa 15 mil vencimentos da UFRJ e mostra os maiores
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
from bs4 import BeautifulSoup as bs | |
u = 'http://www.portaldatransparencia.gov.br/servidores/OrgaoLotacao-ListaServidores.asp?CodOS=15000&DescOS=MINISTERIO%20DA%20EDUCACAO&CodOrg=26245&DescOrg=UNIVERSIDADE%20FEDERAL%20DO%20RIO%20DE%20JANEIRO&Pagina=' | |
base = 'http://www.portaldatransparencia.gov.br/' | |
def extrai_valor(u): | |
j = u.find('=') + 1 | |
k = u.find('&', j) | |
id_servidor = u[j: k] | |
u = base + 'servidores/Servidor-DetalhaRemuneracao.asp?Op=2&IdServidor=%s&CodOrgao=26238&CodOS=15000&bInformacaoFinanceira=True' %id_servidor | |
p = requests.get(u) | |
s = bs(p.content, 'html.parser') | |
if 'Total da Remuneração Após Deduções' not in str(s): | |
return id_servidor, '0' | |
x = s.findAll('tr', {'class':'remuneracaodetalhe'}) | |
valor = x[2].find('td', {'class':'colunaValor'}) | |
valor = valor.string.replace('.', '') | |
valor = valor.replace(',', '.') | |
return id_servidor, valor | |
for k in range(1, 1002): | |
f = open('UFRJ.txt', 'a') | |
url = u + str(k) | |
p = requests.get(url) | |
print ('Página:', k) | |
s = bs(p.content, 'html.parser') | |
x = s.findAll('table') | |
profs = x[1].findAll('tr') | |
for p in profs[1:]: | |
a = p.find('a') | |
nome = a.string.strip() | |
id_servidor, valor = extrai_valor (a['href']) | |
f.write(','.join([id_servidor, nome, valor])) | |
f.write('\n') | |
f.close() | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Why not downloading all the data from http://www.portaldatransparencia.gov.br/downloads/servidores.asp?
Public resources are needed to maintain all servers running.