-
-
Notifications
You must be signed in to change notification settings - Fork 415
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
244 additions
and
4 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 SpAvanhandavaSpider(BaseInstarSpider): | ||
TERRITORY_ID = "3504404" | ||
name = "sp_avanhandava" | ||
allowed_domains = ["avanhandava.sp.gov.br"] | ||
base_url = "https://www.avanhandava.sp.gov.br/portal/diario-oficial" | ||
start_date = date(2022, 1, 7) |
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 SpBarbosaSpider(BaseInstarSpider): | ||
TERRITORY_ID = "3505104" | ||
name = "sp_barbosa" | ||
allowed_domains = ["barbosa.sp.gov.br"] | ||
base_url = "https://www.barbosa.sp.gov.br/portal/diario-oficial" | ||
start_date = date(2017, 1, 5) |
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 SpCharqueadaSpider(BaseInstarSpider): | ||
TERRITORY_ID = "3511706" | ||
name = "sp_charqueada" | ||
allowed_domains = ["charqueada.sp.gov.br"] | ||
base_url = "https://www.charqueada.sp.gov.br/portal/diario-oficial" | ||
start_date = date(2009, 1, 9) |
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 SpEldoradoSpider(BaseInstarSpider): | ||
TERRITORY_ID = "3514809" | ||
name = "sp_eldorado" | ||
allowed_domains = ["eldorado.sp.gov.br"] | ||
base_url = "https://www.eldorado.sp.gov.br/portal/diario-oficial" | ||
start_date = date(2018, 12, 4) |
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 SpGeneralSalgadoSpider(BaseInstarSpider): | ||
TERRITORY_ID = "3516903" | ||
name = "sp_general_salgado" | ||
allowed_domains = ["generalsalgado.sp.gov.br"] | ||
base_url = "https://www.generalsalgado.sp.gov.br/portal/diario-oficial" | ||
start_date = date(2022, 1, 13) |
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 SpIepeSpider(BaseInstarSpider): | ||
TERRITORY_ID = "3519907" | ||
name = "sp_iepe" | ||
allowed_domains = ["iepe.sp.gov.br"] | ||
base_url = "https://www.iepe.sp.gov.br/portal/diario-oficial" | ||
start_date = date(2019, 10, 16) |
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 SpIrapuruSpider(BaseInstarSpider): | ||
TERRITORY_ID = "3521606" | ||
name = "sp_irapuru" | ||
allowed_domains = ["irapuru.sp.gov.br"] | ||
base_url = "https://www.irapuru.sp.gov.br/portal/diario-oficial" | ||
start_date = date(2023, 3, 10) |
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 SpItapuiSpider(BaseInstarSpider): | ||
TERRITORY_ID = "3522901" | ||
name = "sp_itapui" | ||
allowed_domains = ["itapui.sp.gov.br"] | ||
base_url = "https://www.itapui.sp.gov.br/portal/diario-oficial" | ||
start_date = date(2017, 12, 15) |
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 SpItaririSpider(BaseInstarSpider): | ||
TERRITORY_ID = "3523305" | ||
name = "sp_itariri" | ||
allowed_domains = ["itariri.sp.gov.br"] | ||
base_url = "https://www.itariri.sp.gov.br/portal/diario-oficial" | ||
start_date = date(2023, 2, 24) |
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 SpItobiSpider(BaseInstarSpider): | ||
TERRITORY_ID = "3523800" | ||
name = "sp_itobi" | ||
allowed_domains = ["itobi.sp.gov.br"] | ||
base_url = "https://www.itobi.sp.gov.br/portal/diario-oficial" | ||
start_date = date(2011, 4, 1) |
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 SpJoanopolisSpider(BaseInstarSpider): | ||
TERRITORY_ID = "3525508" | ||
name = "sp_joanopolis" | ||
allowed_domains = ["joanopolis.sp.gov.br"] | ||
base_url = "https://www.joanopolis.sp.gov.br/portal/diario-oficial" | ||
start_date = date(2013, 1, 30) |
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 SpJunqueiropolisSpider(BaseInstarSpider): | ||
TERRITORY_ID = "3526001" | ||
name = "sp_junqueiropolis" | ||
allowed_domains = ["junqueiropolis.sp.gov.br"] | ||
base_url = "https://www.junqueiropolis.sp.gov.br/portal/diario-oficial" | ||
start_date = date(2020, 10, 24) |
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 SpMacaubalSpider(BaseInstarSpider): | ||
TERRITORY_ID = "3528106" | ||
name = "sp_macaubal" | ||
allowed_domains = ["macaubal.sp.gov.br"] | ||
base_url = "https://macaubal.sp.gov.br/portal/diario-oficial" | ||
start_date = date(2023, 6, 21) |
11 changes: 11 additions & 0 deletions
11
data_collection/gazette/spiders/sp/sp_mirante_do_paranapanema.py
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 SpMiranteDoParanapanemaSpider(BaseInstarSpider): | ||
TERRITORY_ID = "3530201" | ||
name = "sp_mirante_do_paranapanema" | ||
allowed_domains = ["mirantedoparanapanema.sp.gov.br"] | ||
base_url = "https://www.mirantedoparanapanema.sp.gov.br/portal/diario-oficial" | ||
start_date = date(2019, 5, 7) |
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 SpNhandearaSpider(BaseInstarSpider): | ||
TERRITORY_ID = "3532603" | ||
name = "sp_nhandeara" | ||
allowed_domains = ["nhandeara.sp.gov.br"] | ||
base_url = "https://www.nhandeara.sp.gov.br/portal/diario-oficial" | ||
start_date = date(2023, 8, 17) |
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 SpPalmitalSpider(BaseInstarSpider): | ||
TERRITORY_ID = "3535309" | ||
name = "sp_palmital" | ||
allowed_domains = ["palmital.sp.gov.br"] | ||
base_url = "https://www.palmital.sp.gov.br/portal/diario-oficial" | ||
start_date = date(2005, 6, 11) |
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 SpPindoramaSpider(BaseInstarSpider): | ||
TERRITORY_ID = "3538105" | ||
name = "sp_pindorama" | ||
allowed_domains = ["pindorama.sp.gov.br"] | ||
base_url = "https://www.pindorama.sp.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 SpPorangabaSpider(BaseInstarSpider): | ||
TERRITORY_ID = "3540507" | ||
name = "sp_porangaba" | ||
allowed_domains = ["porangaba.sp.gov.br"] | ||
base_url = "https://www.porangaba.sp.gov.br/portal/diario-oficial" | ||
start_date = date(2020, 10, 6) |
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 SpTapiraiSpider(BaseInstarSpider): | ||
TERRITORY_ID = "3553500" | ||
name = "sp_tapirai" | ||
allowed_domains = ["tapirai.sp.gov.br"] | ||
base_url = "https://www.tapirai.sp.gov.br/portal/diario-oficial" | ||
start_date = date(2019, 9, 3) |
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 SpTerraRoxaSpider(BaseInstarSpider): | ||
TERRITORY_ID = "3554409" | ||
name = "sp_terra_roxa" | ||
allowed_domains = ["terraroxa.sp.gov.br"] | ||
base_url = "https://www.terraroxa.sp.gov.br/portal/diario-oficial" | ||
start_date = date(2022, 6, 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