-
-
Notifications
You must be signed in to change notification settings - Fork 416
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add cidades instar (Cachoeira do sul-RS, Januaria-MG, Monte Mor-SP) (#…
…991) Issue #986 Task 4 Adicionado Spiders das cidades abaixo: Cachoeira do sul-RS, Januária-MG, Monte Mor-SP
- Loading branch information
Showing
4 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 MgJanuariaSpider(BaseInstarSpider): | ||
TERRITORY_ID = "3135209" | ||
name = "mg_januaria" | ||
allowed_domains = ["januaria.mg.gov.br"] | ||
base_url = "https://www.januaria.mg.gov.br/portal/diario-oficial" | ||
start_date = date(2022, 4, 29) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 RsCachoeiraDoSulSpider(BaseInstarSpider): | ||
TERRITORY_ID = "4303004" | ||
name = "rs_cachoeira_do_sul" | ||
allowed_domains = ["cachoeiradosul.rs.gov.br"] | ||
base_url = "https://www.cachoeiradosul.rs.gov.br/portal/diario-oficial" | ||
start_date = date(2021, 10, 27) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 SpMonteMor(BaseInstarSpider): | ||
TERRITORY_ID = "3531803" | ||
name = "sp_monte_mor" | ||
allowed_domains = ["montemor.sp.gov.br"] | ||
base_url = "https://www.montemor.sp.gov.br/portal/diario-oficial" | ||
start_date = date(2019, 9, 20) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters