-
-
Notifications
You must be signed in to change notification settings - Fork 409
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ValeGazetteSpider e alguns municípios que a utilizam #1127
base: main
Are you sure you want to change the base?
Conversation
website_date_text = gazette.xpath( | ||
'.//*[contains(text(), "Publicado")]/text()' | ||
).get() | ||
[day, month, year] = findall(r", (.*) de (.*) de (.*)", website_date_text)[0] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Em vez de colocar o espaço em branco , a regex ficaria mais consistente se usasse o token \s
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Não seria mais interessante usar o dateparser para tratar essa data?
website_date_text = gazette.xpath(
'.//*[contains(text(), "Publicado")]/text()'
).get()
website_date_text = publish_date.split(',')[1]
website_date_text = dateparser.parse(
website_date_text, languages=["pt"]).date()
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Obrigado pela sugestão! Já subi a alteração!
AO ABRIR uma Pull Request de um novo raspador (spider), marque com um X cada um dos items da checklist abaixo. Caso algum item não seja marcado, JUSTIFIQUE o motivo.
Layout do site publicador de diários oficiais
Marque apenas um dos itens a seguir:
Código da(s) spider(s)
Testes
.log
e .csv deste teste estão anexados na PR.Verificações
Descrição
Esse PR resolve #1116 assim como adiciona mais três municípios (to_buriti_do_tocantins, to_pium, to_cristalandia)
Coleta-teste completa:
to_buriti_do_tocantins-full-extraction.csv
to_buriti_do_tocantins-full-extraction.log
to_pium-full-extraction.csv
to_pium-full-extraction.log
to_cristalandia-full-extraction.csv
to_cristalandia-full-extraction.log
Coleta-teste intervalo arbitrário:
to_buriti_do_tocantins-2022-12-31--2024-04-11.csv
to_buriti_do_tocantins-2022-12-31--2024-04-11.log
to_pium-2022-12-31--2024-04-11.csv
to_pium-2022-12-31--2024-04-11.log
to_cristalandia-2022-12-31--2024-04-11.csv
to_cristalandia-2022-12-31--2024-04-11.log
Coleta-teste última edição:
to_buriti_do_tocantins-last-edition.log
to_cristalandia-last-edition.log
to_pium-last-edition.log