forked from alexbnkz/FUNDATEC-Pagamentos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run.py
124 lines (99 loc) · 3.96 KB
/
run.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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
# -*- coding: utf-8 -*-
import os
import csv
import json
from uuid import uuid4
import requests
from bs4 import BeautifulSoup
from datetime import datetime
from concurrent.futures import ThreadPoolExecutor,as_completed
def get_time_now():
return datetime.now().strftime('%Y-%m-%d %H:%M:%S')
def download_file(row):
file_name = f"folhafundatec{row['year']}"
ROOT_DIR = os.path.realpath(os.path.dirname(__file__))
CSV_FILE = f'{file_name}.csv'
if not os.path.isfile(f'{ROOT_DIR}/{CSV_FILE}'):
print(f"{get_time_now()} downloading file {row['url']}")
with requests.get(row['url']) as r:
with open(f'{ROOT_DIR}/{CSV_FILE}', 'wb') as f:
f.write(r.content)
f.close()
print(f"{get_time_now()} download Ok {CSV_FILE}")
with open(f'{ROOT_DIR}/{CSV_FILE}',
encoding='utf-8', errors='ignore') as f:
reader = csv.reader(f, delimiter=';')
first = True
for row in reader:
if not first:
empresa = row[0]
mes = row[1]
ano = row[2]
nome = row[3]
cargo = row[4]
lotacao = row[5]
admissao = row[6]
nascimento = row[7]
vencimentos = row[8].strip()
encargos = row[9].strip()
beneficios = row[10].strip()
outras_remuneracoes = row[11].strip()
vinculo = row[12]
detalhe_vinculo = row[13]
liminar = row[14]
arquivo_id = row[15]
dict_data = {
'empresa': empresa,
'mes': mes,
'ano': ano,
'nome': nome,
'cargo': cargo,
'lotacao': lotacao,
'admissao': admissao,
'nascimento': nascimento,
'vencimentos': vencimentos,
'encargos': encargos,
'beneficios': beneficios,
'outras_remuneracoes': outras_remuneracoes,
'vinculo': vinculo,
'detalhe_vinculo': detalhe_vinculo,
'liminar': liminar,
'arquivo_id': arquivo_id
}
# hashing json file name with uuid
hash = uuid4().hex.lower()
file_json = f'{ROOT_DIR}/data/{hash}.json'
# save file
with open(file_json, mode="w") as f:
f.write(json.dumps(dict_data, indent=4))
print(f'{get_time_now()} [ Ok ] {hash} {nome}')
else:
first = not first
return f'{CSV_FILE}'
#===============================================================================
if __name__ == '__main__':
print(f"{get_time_now()} Starting... ")
URL = 'http://dados.prefeitura.sp.gov.br'
URL = f'{URL}/dataset/folha-de-pagamento-fundatec'
yearOfPayroll = [ '2018' ] # just one
links = []
print(f"{get_time_now()} yearOfPayroll {yearOfPayroll}")
# getting page content
result = requests.get(URL)
# parsing
soup = BeautifulSoup(result.text, features='html.parser')
for el in soup.select('ul.resource-list li.resource-item'):
year = el.find('a', { 'class': 'heading'})['title'][-4:]
url = el.find('a', { 'class': 'resource-url-analytics'})['href']
if year in yearOfPayroll and '.csv' in url:
links.append({ 'year': year, 'url': url})
# threading in python to run faster (asynchronous)
with ThreadPoolExecutor(max_workers=3) as executor:
for thread in as_completed({
executor.submit(download_file, row): row for row in links
}):
try:
thread.result()
except Exception as e:
print(f"{get_time_now()} ERROR {e}")
exit(0)