Skip to content

Commit

Permalink
Habilita novos raspadores DOSP (#960)
Browse files Browse the repository at this point in the history
  • Loading branch information
trevineju authored Oct 6, 2023
2 parents 2c736f0 + 07484a5 commit 444c4bd
Show file tree
Hide file tree
Showing 6 changed files with 55 additions and 0 deletions.
10 changes: 10 additions & 0 deletions data_collection/gazette/spiders/ce/ce_horizonte.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 CeHorizonteSpider(DospGazetteSpider):
TERRITORY_ID = "2305233"
name = "ce_horizonte"
code = "687"
start_date = date(2023, 7, 3)
10 changes: 10 additions & 0 deletions data_collection/gazette/spiders/sp/sp_aracatuba.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 SpAracatubaSpider(DospGazetteSpider):
TERRITORY_ID = "3502804"
name = "sp_aracatuba"
code = "4680"
start_date = date(2020, 4, 22)
10 changes: 10 additions & 0 deletions data_collection/gazette/spiders/sp/sp_avare.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 SpAvareSpider(DospGazetteSpider):
TERRITORY_ID = "3504503"
name = "sp_avare"
code = "4700"
start_date = date(2018, 10, 3)
10 changes: 10 additions & 0 deletions data_collection/gazette/spiders/sp/sp_campo_limpo_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 SpCampoLimpoPaulistaSpider(DospGazetteSpider):
TERRITORY_ID = "3509601"
name = "sp_campo_limpo_paulista"
code = "4758"
start_date = date(2022, 1, 7)
10 changes: 10 additions & 0 deletions data_collection/gazette/spiders/sp/sp_itapeva.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 SpItapevaSpider(DospGazetteSpider):
TERRITORY_ID = "3522406"
name = "sp_itapeva"
code = "4907"
start_date = date(2017, 12, 18)
5 changes: 5 additions & 0 deletions scripts/enabled_spiders.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"ba_senhor_do_bonfim",
"ba_teolandia",
"ba_tucano",
"ce_horizonte",
"ce_sobral",
"df_brasilia",
"es_serra",
Expand Down Expand Up @@ -96,16 +97,20 @@
"sp_adolfo",
"sp_alto_alegre",
"sp_aracariguama",
"sp_aracatuba",
"sp_avare",
"sp_barao_de_antonina",
"sp_birigui",
"sp_braganca_paulista",
"sp_campinas",
"sp_campo_limpo_paulista",
"sp_catanduva",
"sp_coronel_macedo",
"sp_glicerio",
"sp_guaracai",
"sp_guarulhos",
"sp_ibitinga",
"sp_itapeva",
"sp_itapevi",
"sp_itapirapua_paulista",
"sp_jaboticabal",
Expand Down

0 comments on commit 444c4bd

Please sign in to comment.