Skip to content

Commit

Permalink
Teste e separação grupo 1 dosp
Browse files Browse the repository at this point in the history
  • Loading branch information
Winzen committed Oct 2, 2023
1 parent f5ca080 commit 5a1d312
Show file tree
Hide file tree
Showing 5 changed files with 50 additions and 0 deletions.
10 changes: 10 additions & 0 deletions data_collection/gazette/spiders/pe/pe_cabrobo.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from datetime import date

from gazette.spiders.base.dosp import DospGazetteSpider


class PeCabroboSpider(DospGazetteSpider):
TERRITORY_ID = "2603009"
name = "pe_cabrobo"
code = "3190"
start_date = date(2019, 4, 8)
10 changes: 10 additions & 0 deletions data_collection/gazette/spiders/sp/sp_braganca_paulista.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from datetime import date

from gazette.spiders.base.dosp import DospGazetteSpider


class SpBragancaPaulistaSpider(DospGazetteSpider):
TERRITORY_ID = "3507605"
name = "sp_braganca_paulista"
code = "4735"
start_date = date(2019, 1, 4)
10 changes: 10 additions & 0 deletions data_collection/gazette/spiders/sp/sp_itapevi.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from datetime import date

from gazette.spiders.base.dosp import DospGazetteSpider


class SpItapeviSpider(DospGazetteSpider):
TERRITORY_ID = "3522505"
name = "sp_itapevi"
code = "4908"
start_date = date(2018, 12, 21)
10 changes: 10 additions & 0 deletions data_collection/gazette/spiders/sp/sp_rio_claro.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from datetime import date

from gazette.spiders.base.dosp import DospGazetteSpider


class SpRioClaroSpider(DospGazetteSpider):
TERRITORY_ID = "3543907"
name = "sp_rio_claro"
code = "5142"
start_date = date(2023, 6, 21)
10 changes: 10 additions & 0 deletions data_collection/gazette/spiders/sp/sp_sao_bernardo_do_campo.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from datetime import date

from gazette.spiders.base.dosp import DospGazetteSpider


class SpSaoBernardoDoCampoSpider(DospGazetteSpider):
TERRITORY_ID = "3548708"
name = "sp_sao_bernardo_do_campo"
code = "5195"
start_date = date(2017, 5, 12)

0 comments on commit 5a1d312

Please sign in to comment.