Skip to content

Commit

Permalink
Add: 3 novas cidades (#1002)
Browse files Browse the repository at this point in the history
  • Loading branch information
trevineju authored Oct 28, 2023
2 parents 66cee9e + 0a8de5d commit ab4b6a8
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
10 changes: 10 additions & 0 deletions data_collection/gazette/spiders/ba/ba_monte_santo.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 BaMonteSantoSpider(DoemGazetteSpider):
TERRITORY_ID = "2921500"
name = "ba_monte_santo"
start_date = date(2021, 1, 2)
state_city_url_part = "ba/montesanto"
10 changes: 10 additions & 0 deletions data_collection/gazette/spiders/ba/ba_morro_do_chapeu.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 BaMorroDoChapeuSpider(DoemGazetteSpider):
TERRITORY_ID = "2921708"
name = "ba_morro_do_chapeu"
start_date = date(2021, 1, 6)
state_city_url_part = "ba/morrodochapeu"
10 changes: 10 additions & 0 deletions data_collection/gazette/spiders/ba/ba_santa_luzia.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 BaSantaLuziaSpider(DoemGazetteSpider):
TERRITORY_ID = "2928059"
name = "ba_santa_luzia"
start_date = date(2021, 1, 4)
state_city_url_part = "ba/santaluzia"

0 comments on commit ab4b6a8

Please sign in to comment.