-
Notifications
You must be signed in to change notification settings - Fork 0
/
deputados_expenses.py
35 lines (28 loc) · 1.33 KB
/
deputados_expenses.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
import json
import os
import multiprocessing
from utils import get_data, get_info_deputados_recursive, set_global_session
SRC_FOLDER = 'deputados_data'
FOLDER = 'deputados_expenses_data'
def get_expenses_deputado(deputado, update=False):
print('Requesting data for {}'.format(deputado['nome']))
file_name = '{}/dep_{}.json'.format(FOLDER, deputado['id'])
if not os.path.isfile(file_name) or update:
url = 'https://dadosabertos.camara.leg.br/api/v2/deputados/{}/despesas?ordem=ASC&ordenarPor=ano&itens=100'.format(deputado['id'])
expenses = get_info_deputados_recursive(url, [])
print(deputado['nome'], len(expenses))
with open(file_name, 'w+') as f:
print('Writing data for deputado'.format(deputado['nome']))
json.dump(expenses, f, indent=4, ensure_ascii=False)
f.close()
else:
print('Already have data for {}'.format(deputado['nome']))
def main():
if not os.path.isfile('{}/deputados.json'.format(SRC_FOLDER)):
raise Exception('File not found: {}/deputados.json'.format(SRC_FOLDER))
with open('{}/deputados.json'.format(SRC_FOLDER), 'r') as f:
deputados = json.load(f)
with multiprocessing.Pool(initializer=set_global_session, processes=8) as pool:
pool.map(get_expenses_deputado, deputados)
if __name__ == '__main__':
main()