Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adiciona 9 novos raspadores #1165

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions data_collection/gazette/spiders/ce/ce_limoeiro_do_norte.py
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 CeLimoeiroDoNorteSpider(BaseAdiariosV1Spider):
TERRITORY_ID = "2307601"
name = "ce_limoeiro_do_norte"
allowed_domains = ["limoeirodonorte.ce.gov.br"]
BASE_URL = "https://www.limoeirodonorte.ce.gov.br"
start_date = date(2017, 4, 10)
11 changes: 11 additions & 0 deletions data_collection/gazette/spiders/ce/ce_milagres.py
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 CeMilagresSpider(BaseAdiariosV1Spider):
TERRITORY_ID = "2308302"
name = "ce_milagres"
allowed_domains = ["milagres.ce.gov.br"]
BASE_URL = "https://www.milagres.ce.gov.br"
start_date = date(2016, 5, 20)
11 changes: 11 additions & 0 deletions data_collection/gazette/spiders/ce/ce_pacajus.py
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 CePacajusSpider(BaseAdiariosV1Spider):
TERRITORY_ID = "2309607"
name = "ce_pacajus"
allowed_domains = ["pacajus.ce.gov.br"]
BASE_URL = "https://www.pacajus.ce.gov.br"
start_date = date(2018, 10, 26)
11 changes: 11 additions & 0 deletions data_collection/gazette/spiders/ce/ce_paramoti.py
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 CeParamotiSpider(BaseAdiariosV1Spider):
TERRITORY_ID = "2310407"
name = "ce_paramoti"
allowed_domains = ["paramoti.ce.gov.br"]
BASE_URL = "https://www.paramoti.ce.gov.br"
start_date = date(2023, 1, 2)
11 changes: 11 additions & 0 deletions data_collection/gazette/spiders/ce/ce_pereiro.py
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 CePereiroSpider(BaseAdiariosV1Spider):
TERRITORY_ID = "2310803"
name = "ce_pereiro"
allowed_domains = ["pereiro.ce.gov.br"]
BASE_URL = "https://www.pereiro.ce.gov.br"
start_date = date(2020, 1, 3)
11 changes: 11 additions & 0 deletions data_collection/gazette/spiders/ce/ce_sao_benedito.py
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 CeSaoBeneditoSpider(BaseAdiariosV1Spider):
TERRITORY_ID = "2312304"
name = "ce_sao_benedito"
allowed_domains = ["saobenedito.ce.gov.br"]
BASE_URL = "https://www.saobenedito.ce.gov.br"
start_date = date(18, 2, 15)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fonte: https://www.saobenedito.ce.gov.br/diariooficial.php?pagina=102

Suggested change
start_date = date(18, 2, 15)
start_date = date(2017, 5, 4)

11 changes: 11 additions & 0 deletions data_collection/gazette/spiders/ce/ce_taua.py
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 CeTauaSpider(BaseAdiariosV1Spider):
TERRITORY_ID = "2313302"
name = "ce_taua"
allowed_domains = ["taua.ce.gov.br"]
BASE_URL = "https://www.taua.ce.gov.br"
start_date = date(2019, 8, 30)
11 changes: 11 additions & 0 deletions data_collection/gazette/spiders/ce/ce_tiangua.py
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 CeTianguaSpider(BaseAdiariosV1Spider):
TERRITORY_ID = "2313401"
name = "ce_tiangua"
allowed_domains = ["tiangua.ce.gov.br"]
BASE_URL = "https://www.tiangua.ce.gov.br"
start_date = date(2021, 11, 3)
11 changes: 11 additions & 0 deletions data_collection/gazette/spiders/ce/ce_uruoca.py
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 CeUruocaSpider(BaseAdiariosV1Spider):
TERRITORY_ID = "2313906"
name = "ce_uruoca"
allowed_domains = ["uruoca.ce.gov.br"]
BASE_URL = "https://www.uruoca.ce.gov.br"
start_date = date(2017, 1, 2)
Loading