Skip to content

Commit

Permalink
Adiciona novos 3 raspadores do Maranhão (#1190)
Browse files Browse the repository at this point in the history
  • Loading branch information
trevineju authored Dec 19, 2024
2 parents 871f44a + 771c90f commit c78d789
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 0 deletions.
11 changes: 11 additions & 0 deletions data_collection/gazette/spiders/ma/ma_anajatuba.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from datetime import date

from gazette.spiders.base.adiarios_v1 import BaseAdiariosV1Spider


class MaAnajatubaSpider(BaseAdiariosV1Spider):
TERRITORY_ID = "2100709"
name = "ma_anajatuba"
allowed_domains = ["anajatuba.ma.gov.br"]
BASE_URL = "https://www.anajatuba.ma.gov.br"
start_date = date(2021, 2, 12)
11 changes: 11 additions & 0 deletions data_collection/gazette/spiders/ma/ma_bom_jardim.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from datetime import date

from gazette.spiders.base.adiarios_v1 import BaseAdiariosV1Spider


class MaBomJardimSpider(BaseAdiariosV1Spider):
TERRITORY_ID = "2102002"
name = "ma_bom_jardim"
allowed_domains = ["bomjardim.ma.gov.br"]
BASE_URL = "https://www.bomjardim.ma.gov.br"
start_date = date(2017, 7, 19)
11 changes: 11 additions & 0 deletions data_collection/gazette/spiders/ma/ma_bom_lugar.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from datetime import date

from gazette.spiders.base.adiarios_v1 import BaseAdiariosV1Spider


class MaBomLugarSpider(BaseAdiariosV1Spider):
TERRITORY_ID = "2102077"
name = "ma_bom_lugar"
allowed_domains = ["bomlugar.ma.gov.br"]
BASE_URL = "https://www.bomlugar.ma.gov.br"
start_date = date(2013, 1, 13)

0 comments on commit c78d789

Please sign in to comment.