-
-
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 spiders para Abaré, Adustina, Almadina, Anagé e Andorinha (#…
- Loading branch information
Showing
5 changed files
with
55 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 @@ | ||
import datetime as dt | ||
|
||
from gazette.spiders.base.sai import SaiGazetteSpider | ||
|
||
|
||
class BaAbareSpider(SaiGazetteSpider): | ||
TERRITORY_ID = "2900207" | ||
name = "ba_abare" | ||
start_date = dt.date(2007, 1, 9) | ||
allowed_domains = ["sai.io.org.br"] | ||
base_url = "https://sai.io.org.br/ba/abare" |
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 @@ | ||
import datetime as dt | ||
|
||
from gazette.spiders.base.sai import SaiGazetteSpider | ||
|
||
|
||
class BaAdustinaSpider(SaiGazetteSpider): | ||
TERRITORY_ID = "2900355" | ||
name = "ba_adustina" | ||
start_date = dt.date(2017, 1, 3) | ||
allowed_domains = ["adustina.ba.gov.br"] | ||
base_url = "https://www.adustina.ba.gov.br" |
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 @@ | ||
import datetime as dt | ||
|
||
from gazette.spiders.base.sai import SaiGazetteSpider | ||
|
||
|
||
class BaAlmadinaSpider(SaiGazetteSpider): | ||
TERRITORY_ID = "2900900" | ||
name = "ba_almadina" | ||
start_date = dt.date(2005, 1, 3) | ||
allowed_domains = ["almadina.ba.gov.br"] | ||
base_url = "https://www.almadina.ba.gov.br" |
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 @@ | ||
import datetime as dt | ||
|
||
from gazette.spiders.base.sai import SaiGazetteSpider | ||
|
||
|
||
class BaAnageSpider(SaiGazetteSpider): | ||
TERRITORY_ID = "2901205" | ||
name = "ba_anage" | ||
start_date = dt.date(2007, 1, 12) | ||
allowed_domains = ["anage.ba.gov.br"] | ||
base_url = "https://www.anage.ba.gov.br" |
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 @@ | ||
import datetime as dt | ||
|
||
from gazette.spiders.base.sai import SaiGazetteSpider | ||
|
||
|
||
class BaAndorinhaSpider(SaiGazetteSpider): | ||
TERRITORY_ID = "2901353" | ||
name = "ba_andorinha" | ||
start_date = dt.date(2013, 1, 2) | ||
allowed_domains = ["andorinha.ba.gov.br"] | ||
base_url = "https://www.andorinha.ba.gov.br" |