Skip to content

Commit

Permalink
add: 3 novas cidades (#1028)
Browse files Browse the repository at this point in the history
Contribuindo com duas PRs que faltam para a issue #984 ser completa.
  • Loading branch information
trevineju authored Nov 17, 2023
2 parents 0c57ad9 + 5ef1861 commit a0fbf53
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 0 deletions.
10 changes: 10 additions & 0 deletions data_collection/gazette/spiders/ba/ba_angical.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from datetime import date

from gazette.spiders.base.doem import DoemGazetteSpider


class BaAngicalSpider(DoemGazetteSpider):
TERRITORY_ID = "2901403"
name = "ba_angical"
start_date = date(2021, 1, 4)
state_city_url_part = "ba/angical"
10 changes: 10 additions & 0 deletions data_collection/gazette/spiders/ba/ba_cipo.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from datetime import date

from gazette.spiders.base.doem import DoemGazetteSpider


class BaCipoSpider(DoemGazetteSpider):
TERRITORY_ID = "2907905"
name = "ba_cipo"
start_date = date(2021, 1, 4)
state_city_url_part = "ba/cipo"
10 changes: 10 additions & 0 deletions data_collection/gazette/spiders/ba/ba_cotegipe.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from datetime import date

from gazette.spiders.base.doem import DoemGazetteSpider


class BaCotegipeSpider(DoemGazetteSpider):
TERRITORY_ID = "2909406"
name = "ba_cotegipe"
start_date = date(2023, 1, 5)
state_city_url_part = "ba/cotegipe"
3 changes: 3 additions & 0 deletions scripts/enabled_spiders.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,14 @@
"ba_acajutiba",
"ba_alagoinhas",
"ba_alcobaca",
"ba_angical",
"ba_banzae",
"ba_barreiras",
"ba_brotas_de_macaubas",
"ba_campo_formoso",
"ba_canudos",
"ba_cipo",
"ba_cotegipe",
"ba_cristopolis",
"ba_cruz_das_almas",
"ba_esplanada",
Expand Down

0 comments on commit a0fbf53

Please sign in to comment.