-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcorreios.py
234 lines (205 loc) · 8.39 KB
/
correios.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
231
232
233
234
from typing import Type
import requests, html_to_json, jsonlines, logging
from scrapy import Selector
logger = logging.getLogger('Correios Web Crawler')
logger.setLevel(logging.DEBUG)
# create console handler and set level to debug
ch = logging.StreamHandler()
ch.setLevel(logging.DEBUG)
# create formatter
formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s', datefmt='%Y-%m-%d %H:%M:%S')
# add formatter to ch
ch.setFormatter(formatter)
# add ch to logger
logger.addHandler(ch)
class Correios():
def __init__(self, initHeaders: dict) -> object:
self._headers = initHeaders
#Initializing session and using cookies for later requests :D
logger.info('Initializing session on buscaFaixaCep.cfm page.')
self.s = requests.Session()
try:
initRequest = self.s.get('https://www2.correios.com.br/sistemas/buscacep/buscaFaixaCep.cfm', headers=self._headers)
except requests.exceptions.Timeout:
logger.error("Source has timed out. Let`s try again in few minutes.")
raise
except requests.exceptions.TooManyRedirects:
logger.error("Bad URL. Too many redirects.")
raise
except requests.exceptions.RequestException as e:
logger.critical(e)
raise
logger.info('Extracting all states from html page.')
self.states = self._extractStates(initRequest.content)
def _convertHTMLTableToList(self, html: str) -> list:
self._html = html
try:
rawList = html_to_json.convert_tables(self._html)
except:
logger.error('html_to_json failed to convert html to json object')
raise
logger.info('Cleaning up empty records...')
cleanEmptyElements = self._cleanEmptyElements(rawList)
return cleanEmptyElements
def _convertHTMLTableToListIter(self, html: str) -> list:
self._html = html
try:
rawList = html_to_json.convert_tables(self._html)
except:
logger.error("html_to_json failed to convert html to json object")
raise
cleanEmptyElements = self._cleanEmptyElements(rawList)
preparedList = [list(element.values()) for element in cleanEmptyElements]
return preparedList
def _cleanEmptyElements(self, rawList: list) -> list:
self._rawList = rawList
cleanList = [element for element in self._rawList[0] if element]
return cleanList
def _extractHTMLTable(self, html: str) -> str:
self._html = html
try:
sel = Selector(text=self._html, type='html')
except TypeError:
logger.error("Wrong input type.")
raise
try:
table = sel.xpath("/html/body/div[@class='back']/div[@class='tabs']/div[@class='wrap'][2]/div[@class='content']/div[@class='laminas']/div[@class='column2']/div[@class='content ']/div[@class='ctrlcontent']/table[@class='tmptabela'][2]").extract()
except:
logger.error("xpath failed to parse HTM content")
raise
return table[0]
def _extractHTMLTableIter(self, html: str) -> str:
self._html = html
try:
sel = Selector(text=self._html, type='html')
except TypeError:
logger.error("Wrong input type.")
raise
try:
table = sel.xpath("/html/body/div[@class='back']/div[@class='tabs']/div[@class='wrap'][2]/div[@class='content']/div[@class='laminas']/div[@class='column2']/div[@class='content ']/div[@class='ctrlcontent']/table[@class='tmptabela'][1]").extract()
except:
logger.error("xpath failed to parse HTM content")
raise
return table[0]
def _extractPages(self, html: str) -> tuple:
self._html = html
try:
sel = Selector(text=self._html, type='html')
except TypeError:
logger.error("Wrong input type.")
raise
try:
pagesText = sel.xpath("/html/body/div[@class='back']/div[@class='tabs']/div[@class='wrap'][2]/div[@class='content']/div[@class='laminas']/div[@class='column2']/div[@class='content ']/div[@class='ctrlcontent']/br/preceding::text()[1]").extract()
except:
logger.error("xpath failed to parse HTM content")
raise
else:
pages = tuple([int(integer) for integer in pagesText[0].strip().split(' ') if integer.isdigit()])
return pages
def _extractStates(self, html: str) -> list:
self._html = html
try:
sel = Selector(text=self._html, type='html')
except TypeError:
logger.error("Wrong input type.")
raise
try:
statesSelect = sel.xpath("/html/body/div[@class='back']/div[@class='tabs']/div[@class='wrap'][2]/div[@class='content']/div[@class='laminas']/div[@class='column2']/div[@class='content ']/div[@class='ctrlcontent']/form[@id='Geral']/div[@class='form']/div[@class='contentform']/span[2]/label/select[@class='f1col']").extract()
except:
logger.error("xpath failed to parse HTM content")
raise
try:
dictStates = html_to_json.convert(statesSelect[0], capture_element_attributes=False)
except:
logger.error("html_to_json failed to convert html to json object")
raise
states = [state['_value'] for state in dictStates['select'][0]['option'] if state]
return states
def buscaFaixaCEP(self, state: str) -> list:
self._state = state
self._data = {
'UF': self._state,
'Localidade': '',
'Bairro': '',
'qtdrow': 50,
'pagini': 1,
'pagfim': 50
}
logger.info('Fetching records from first page...')
response, status = self._buscaResultado(data=self._data)
if(status == True):
logger.info('OK! Let\'s extract the HTML table from the first page now')
table = self._extractHTMLTable(response)
logger.info('Extracting how many records are available to fetch...')
startPage, endPage, maxElements = self._extractPages(response)
logger.info(f'Extraction found a total of {maxElements} records!')
logger.info('Converting HTML table to a list...')
tableList = self._convertHTMLTableToList(table)
iterStartPage = endPage
while(iterStartPage < maxElements):
logger.info('Wait! There is more records we need to fetch :D')
self._data['pagini'] = iterStartPage + 1,
self._data['pagfim'] = iterStartPage + 50
logger.info(f'Next POST payload will be including pagini: {iterStartPage + 1} and pagfim: {iterStartPage + 50}')
logger.info(f'Fetching new records...')
iterResponse, iterStatus = self._buscaResultado(data=self._data)
if(iterStatus == True):
logger.info('OK! Let\'s extract the HTML table from this new page now')
iterTable = self._extractHTMLTableIter(iterResponse)
iterStartPage, iterEndPage, iterMaxElements = self._extractPages(iterResponse)
logger.info('Converting HTML table to a list...')
itertableList = self._convertHTMLTableToListIter(iterTable)
iterStartPage = iterEndPage
logger.info('Appending records to list...')
tableList.extend(itertableList)
return tableList
return []
def _buscaResultado(self, data: dict) -> tuple:
self._data = data
try:
response = self.s.post('https://www2.correios.com.br/sistemas/buscacep/ResultadoBuscaFaixaCEP.cfm', data=self._data)
except requests.exceptions.Timeout:
logger.error("Source has timed out. Let`s try again in few minutes.")
raise
except requests.exceptions.TooManyRedirects:
logger.error("Bad URL. Too many redirects.")
raise
except requests.exceptions.RequestException as e:
logger.critical(e)
raise
return response.text, response.ok
def _structureList(self, list: list) -> list:
self._list = list
structuredList = [{"localidade": element[0], "faixaCEP": element[1].strip()} for element in self._list if element[3] == "Total do município"]
return structuredList
def _removeDuplicatesFromList(self, list: list) -> list:
self._list = list
removeDuplicates = [i for n, i in enumerate(self._list ) if i not in self._list[n + 1:]]
return removeDuplicates
def _generateListIdentifier(self, list: list) -> list:
self._list = list
addIdentifier = [self._mergeDictionaries({"id":id + 1}, dictionary) for id, dictionary in enumerate(self._list)]
return addIdentifier
def _mergeDictionaries(self, dict1: dict, dict2: dict) -> dict:
self._dict1 = dict1
self._dict2 = dict2
return {**self._dict1, **self._dict2}
def writeJSONLine(self, list: list) -> bool:
self._list = list
file = 'output.jsonl'
try:
with jsonlines.open(file, 'w') as writer:
writer.write_all(self._list)
writer.close()
return True
except:
return False
def listFormating(self, responseList: list) -> list:
self._list = responseList
logger.info('Structuring records to match requirements')
structuredList = self._structureList(self._list)
logger.info('Removing duplicate records from list')
removeDuplicates = self._removeDuplicatesFromList(structuredList)
logger.info('Assigning unique id to records')
addIdentifier = self._generateListIdentifier(removeDuplicates)
return addIdentifier