Skip to content

Commit

Permalink
Add: 3 novas cidades (#998)
Browse files Browse the repository at this point in the history
  • Loading branch information
trevineju authored Oct 28, 2023
2 parents 65337d7 + 56a4679 commit 66cee9e
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/ms/ms_bela_vista.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from datetime import date

from gazette.spiders.base.instar import BaseInstarSpider


class MsBelaVistaSpider(BaseInstarSpider):
TERRITORY_ID = "5002100"
name = "ms_bela_vista"
allowed_domains = ["belavista.ms.gov.br"]
base_url = "https://www.belavista.ms.gov.br/portal/diario-oficial"
start_date = date(2011, 11, 16)
11 changes: 11 additions & 0 deletions data_collection/gazette/spiders/ms/ms_costa_rica.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from datetime import date

from gazette.spiders.base.instar import BaseInstarSpider


class MsCostaRicaSpider(BaseInstarSpider):
TERRITORY_ID = "5003256"
name = "ms_costa_rica"
allowed_domains = ["costarica.ms.gov.br"]
base_url = "https://www.costarica.ms.gov.br/portal/diario-oficial"
start_date = date(2005, 1, 3)
11 changes: 11 additions & 0 deletions data_collection/gazette/spiders/pr/pr_antonio_olinto.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from datetime import date

from gazette.spiders.base.instar import BaseInstarSpider


class PrAntonioOlintoSpider(BaseInstarSpider):
TERRITORY_ID = "4101309"
name = "pr_antonio_olinto"
allowed_domains = ["antonioolinto.pr.gov.br"]
base_url = "https://antonioolinto.pr.gov.br/portal/diario-oficial"
start_date = date(2016, 6, 14)

0 comments on commit 66cee9e

Please sign in to comment.