This repository has been archived by the owner on Feb 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathparse_votaciones.py
executable file
·230 lines (181 loc) · 6.43 KB
/
parse_votaciones.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
#!/usr/bin/python
# -*- coding: utf-8 -*-
import os
import sys
import subprocess
import argparse
import urllib
import json
# ArgumentParser configuration
parser = argparse.ArgumentParser(description='Parsea PDF de votaciones.')
parser.add_argument('infile', type=argparse.FileType('r'),
help='archivo PDF a procesar')
parser.add_argument('outfile', nargs='?', default=sys.stdout,
type=argparse.FileType('w'),
help='archivo de salida (stdout si se omite)')
parser.add_argument('--keep-textfile', action='store_true',
help='mantiene el archivo generado por pdftotext')
parser.add_argument('--pretty-print', action='store_true',
help='imprime una versión legible')
parser.add_argument('--outformat', choices=['csv', 'json'], default='json',
help='formato de salida')
def call_pdftotext(filename):
''' Uses pdftotext to create a text file based on the given filename of a
pdf file. Returns the name of the text file.
'''
subprocess.call('pdftotext -nopgbrk -layout %s' % filename, shell=True)
return infilename[:-3] + 'txt'
def deactivate_readflag(line):
''' Returns True if the readflag must be deactivated.
Returns False if not.
'''
return line.strip()[0] == '[' \
or line.find('Página') != -1 \
or line.find('Observaciones') != -1
def activate_readflag(line):
''' Returns True if the readflag must be activated. Returns False if not.'''
return line.find('Apellido y Nombre') != -1
def split_data(line):
''' Splits the line and returns a list with non-empty data.
>>> split_data("Base Mayoría: Votos Emitidos Tipo de Mayoría: ...")
["Base Mayoría: Votos Emitidos","Tipo de Mayoría: Más de la mitad", ... )
'''
return [e.strip() for e in line.strip().split(' ') if e]
def split_data_with_number(text):
'''>>> split_data_with_number("19ava Sesión Ordinaria")
[19, "Sesión Ordinaria"]
'''
data = text.split()
s = ''
for i in range(len(data[0])):
if data[0][i].isdigit():
s += data[0][i]
return int(s), ' '.join(data[1:])
def output_json(textfile, outfile):
PERIODO = 'periodo'
SESION = 'sesion'
REUNION = 'reunion'
TIPOPERIODO = 'tipo_periodo'
TIPOSESION = 'tipo_sesion'
TIPOREUNION = 'tipo_reunion'
TITULO = 'titulo'
ACTA = 'acta'
VERSION = 'version'
FECHA = 'fecha'
HORA = 'hora'
BASE = 'base_mayoria'
TIPO = 'tipo_mayoria'
QUORUM = 'quorum'
MIEMBROS = 'miembros'
RESULTADO = 'resultado'
PRESIDENTE = 'presidente'
VOTOS = 'votos'
OBSERVACIONES = 'observaciones'
# process input file and write to output file
line = textfile.readline()
# parse file header
acta = {}
while line.find('Período') == -1:
line = textfile.readline().strip()
periodo_str, sesion_str, reunion_str = line.split(' - ')
acta[PERIODO], acta[TIPOPERIODO] = split_data_with_number(periodo_str)
acta[SESION], acta[TIPOSESION] = split_data_with_number(sesion_str)
acta[REUNION], acta[TIPOREUNION] = split_data_with_number(reunion_str)
acta[TITULO] = textfile.readline().strip()
line = textfile.readline().strip()
nro_acta, version, fecha, hora = split_data(line)
acta[ACTA] = int(nro_acta.split(' ')[-1])
acta[FECHA] = fecha.split(' ')[-1]
acta[HORA] = hora.split(' ')[-1]
acta[VERSION] = version
while line.find('Base Mayoría') == -1:
line = textfile.readline()
base, tipo, quorum = split_data(line)
acta[BASE] = base.split(':')[-1].strip()
acta[TIPO] = tipo.split(':')[-1].strip()
acta[QUORUM] = quorum.split(':')[-1].strip()
while line.find('Miembros del cuerpo') == -1:
line = textfile.readline()
miembros, basura, resultado = split_data(line)
acta[MIEMBROS] = int(miembros.split(':')[-1])
acta[RESULTADO] = resultado
while line.find('Presidente') == -1:
line = textfile.readline()
acta[PRESIDENTE] = line.split(':')[-1].strip()
# parse individual votes
acta[VOTOS] = []
line = textfile.readline()
readflag = False
while line and line.find('Observaciones') == -1:
# ignore blank lines
if not line.strip():
line = textfile.readline()
continue
if deactivate_readflag(line):
readflag = False
if readflag:
data = split_data(line)
if len(data) == 4:
acta[VOTOS].append(data)
if activate_readflag(line):
readflag = True
line = textfile.readline()
# parse observations
if line:
observaciones = []
line = textfile.readline()
while line and line.find('Modificación') == -1:
if not line.strip():
line = textfile.readline()
continue
observaciones.append(line)
line = textfile.readline()
acta[OBSERVACIONES] = ''.join(observaciones)
# write json file
if pretty_print:
json.dump(acta, fp=outfile, indent=4, separators=(',', ': '),
encoding='utf-8', ensure_ascii=False)
else:
json.dump(acta, fp=outfile, encoding='utf-8', ensure_ascii=False)
def output_csv(textfile, outfile):
line = textfile.readline()
readflag = False
while line:
# ignore blank lines
if not line.strip():
line = textfile.readline()
continue
if deactivate_readflag(line):
readflag = False
if readflag:
data = split_data(line)
if len(data) == 4:
# Apellido y Nombre, Bloque, Provincia, Voto
outfile.write(','.join(data) + '\n')
if activate_readflag(line):
readflag = True
line = textfile.readline()
if __name__ == '__main__':
# parse program arguments
args = parser.parse_args()
infile = args.infile
outfile = args.outfile
outformat = args.outformat
pretty_print = args.pretty_print
keep_textfile = args.keep_textfile
infilename = infile.name
# pdftotext call
textfilename = call_pdftotext(infilename)
# Fix filenames
textfilename = urllib.unquote(textfilename.encode("utf-8"))
textfile = open(textfilename, 'r')
if outformat == 'json':
output_json(textfile, outfile)
elif outformat == 'csv':
output_csv(textfile, outfile)
# close files
infile.close()
outfile.close()
textfile.close()
if not keep_textfile:
os.remove(textfilename)