-
-
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.
Adiciona novos 9 raspadores da Paraíba (#1185)
- Loading branch information
Showing
9 changed files
with
99 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.adiarios_v1 import BaseAdiariosV1Spider | ||
|
||
|
||
class PbJacarauSpider(BaseAdiariosV1Spider): | ||
TERRITORY_ID = "2507309" | ||
name = "pb_jacarau" | ||
allowed_domains = ["jacarau.pb.gov.br"] | ||
BASE_URL = "https://www.jacarau.pb.gov.br" | ||
start_date = date(2019, 3, 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.adiarios_v1 import BaseAdiariosV1Spider | ||
|
||
|
||
class PbJericoSpider(BaseAdiariosV1Spider): | ||
TERRITORY_ID = "2507408" | ||
name = "pb_jerico" | ||
allowed_domains = ["jerico.pb.gov.br"] | ||
BASE_URL = "https://www.jerico.pb.gov.br" | ||
start_date = date(2021, 6, 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.adiarios_v1 import BaseAdiariosV1Spider | ||
|
||
|
||
class PbMarizopolisSpider(BaseAdiariosV1Spider): | ||
TERRITORY_ID = "2509156" | ||
name = "pb_marizopolis" | ||
allowed_domains = ["marizopolis.pb.gov.br"] | ||
BASE_URL = "https://www.marizopolis.pb.gov.br" | ||
start_date = date(2021, 1, 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.adiarios_v1 import BaseAdiariosV1Spider | ||
|
||
|
||
class PbPiloezinhosSpider(BaseAdiariosV1Spider): | ||
TERRITORY_ID = "2511707" | ||
name = "pb_piloezinhos" | ||
allowed_domains = ["piloezinhos.pb.gov.br"] | ||
BASE_URL = "https://www.piloezinhos.pb.gov.br" | ||
start_date = date(2022, 6, 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.adiarios_v1 import BaseAdiariosV1Spider | ||
|
||
|
||
class PbRiachaoSpider(BaseAdiariosV1Spider): | ||
TERRITORY_ID = "2512747" | ||
name = "pb_riachao" | ||
allowed_domains = ["riachao.pb.gov.br"] | ||
BASE_URL = "https://www.riachao.pb.gov.br" | ||
start_date = date(2024, 2, 29) |
11 changes: 11 additions & 0 deletions
11
data_collection/gazette/spiders/pb/pb_sao_jose_dos_ramos.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.adiarios_v1 import BaseAdiariosV1Spider | ||
|
||
|
||
class PbSaoJoseDosRamosSpider(BaseAdiariosV1Spider): | ||
TERRITORY_ID = "2514453" | ||
name = "pb_sao_jose_dos_ramos" | ||
allowed_domains = ["saojosedosramos.pb.gov.br"] | ||
BASE_URL = "https://www.saojosedosramos.pb.gov.br" | ||
start_date = date(2021, 1, 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.adiarios_v1 import BaseAdiariosV1Spider | ||
|
||
|
||
class PbSerrariaSpider(BaseAdiariosV1Spider): | ||
TERRITORY_ID = "2515906" | ||
name = "pb_serraria" | ||
allowed_domains = ["serraria.pb.gov.br"] | ||
BASE_URL = "https://www.serraria.pb.gov.br" | ||
start_date = date(2024, 3, 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.adiarios_v1 import BaseAdiariosV1Spider | ||
|
||
|
||
class PbSertaozinhoSpider(BaseAdiariosV1Spider): | ||
TERRITORY_ID = "2515930" | ||
name = "pb_sertaozinho" | ||
allowed_domains = ["sertaozinho.pb.gov.br"] | ||
BASE_URL = "https://www.sertaozinho.pb.gov.br" | ||
start_date = date(2024, 2, 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.adiarios_v1 import BaseAdiariosV1Spider | ||
|
||
|
||
class PbTacimaSpider(BaseAdiariosV1Spider): | ||
TERRITORY_ID = "2516409" | ||
name = "pb_tacima" | ||
allowed_domains = ["pmtacima.pb.gov.br"] | ||
BASE_URL = "https://www.pmtacima.pb.gov.br" | ||
start_date = date(2024, 1, 26) |