Skip to content

Commit

Permalink
Adição das cidades de PR3
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigolyusei authored and trevineju committed Oct 28, 2023
1 parent 60d37b9 commit 522fea9
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_itapicuru.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 BaItapicuruSpider(DoemGazetteSpider):
TERRITORY_ID = "2916500"
name = "ba_itapicuru"
start_date = date(2021, 1, 4)
state_city_url_part = "ba/itapicuru"
10 changes: 10 additions & 0 deletions data_collection/gazette/spiders/ba/ba_jaguaquara.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 BaJaguaquaraSpider(DoemGazetteSpider):
TERRITORY_ID = "2917607"
name = "ba_jaguaquara"
start_date = date(2021, 4, 5)
state_city_url_part = "ba/jaguaquara"
10 changes: 10 additions & 0 deletions data_collection/gazette/spiders/ba/ba_lajedao.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 BaLajedaoSpider(DoemGazetteSpider):
TERRITORY_ID = "2918902"
name = "ba_lajedao"
start_date = date(2021, 4, 14)
state_city_url_part = "ba/lajedao"

0 comments on commit 522fea9

Please sign in to comment.