Skip to content

Commit

Permalink
Adiciona novos 7 raspadores
Browse files Browse the repository at this point in the history
  • Loading branch information
trevineju committed Jun 5, 2024
1 parent 7da36d4 commit 43b0031
Show file tree
Hide file tree
Showing 7 changed files with 77 additions and 0 deletions.
11 changes: 11 additions & 0 deletions data_collection/gazette/spiders/al/al_sao_luis_do_quitunde.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from datetime import date

from gazette.spiders.base.municipioonline import BaseMunicipioOnlineSpider


class AlSaoLuisDoQuitundeSpider(BaseMunicipioOnlineSpider):
TERRITORY_ID = "2708501"
name = "al_sao_luis_do_quitunde"
url_uf = "al"
url_city = "saoluisdoquitunde"
start_date = date(2020, 7, 29)
11 changes: 11 additions & 0 deletions data_collection/gazette/spiders/ba/ba_itanhem.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from datetime import date

from gazette.spiders.base.municipioonline import BaseMunicipioOnlineSpider


class BaItanhemSpider(BaseMunicipioOnlineSpider):
TERRITORY_ID = "2916005"
name = "ba_itanhem"
url_uf = "ba"
url_city = "itanhem"
start_date = date(2021, 1, 5)
11 changes: 11 additions & 0 deletions data_collection/gazette/spiders/se/se_macambira.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from datetime import date

from gazette.spiders.base.municipioonline import BaseMunicipioOnlineSpider


class SeMacambiraSpider(BaseMunicipioOnlineSpider):
TERRITORY_ID = "2803708"
name = "se_macambira"
url_uf = "se"
url_city = "macambira"
start_date = date(2019, 1, 22)
11 changes: 11 additions & 0 deletions data_collection/gazette/spiders/se/se_maruim.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from datetime import date

from gazette.spiders.base.municipioonline import BaseMunicipioOnlineSpider


class SeMaruimSpider(BaseMunicipioOnlineSpider):
TERRITORY_ID = "2804003"
name = "se_maruim"
url_uf = "se"
url_city = "maruim"
start_date = date(2023, 1, 2)
11 changes: 11 additions & 0 deletions data_collection/gazette/spiders/se/se_pedrinhas.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from datetime import date

from gazette.spiders.base.municipioonline import BaseMunicipioOnlineSpider


class SePedrinhasSpider(BaseMunicipioOnlineSpider):
TERRITORY_ID = "2805109"
name = "se_pedrinhas"
url_uf = "se"
url_city = "pedrinhas"
start_date = date(2018, 2, 7)
11 changes: 11 additions & 0 deletions data_collection/gazette/spiders/se/se_propria.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from datetime import date

from gazette.spiders.base.municipioonline import BaseMunicipioOnlineSpider


class SePropriaSpider(BaseMunicipioOnlineSpider):
TERRITORY_ID = "2805703"
name = "se_propria"
url_uf = "se"
url_city = "propria"
start_date = date(2021, 2, 23)
11 changes: 11 additions & 0 deletions data_collection/gazette/spiders/se/se_salgado.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from datetime import date

from gazette.spiders.base.municipioonline import BaseMunicipioOnlineSpider


class SeSalgadoSpider(BaseMunicipioOnlineSpider):
TERRITORY_ID = "2806206"
name = "se_salgado"
url_uf = "se"
url_city = "salgado"
start_date = date(2023, 1, 2)

0 comments on commit 43b0031

Please sign in to comment.