-
-
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.
Atualiza import em 3 arquivos (#1160)
Para padronizar o nome das bases, nos casos em que há um segundo layout, o arquivo `atende_layoutdois.py` foi renomeado para `atende_v2.py`, assim como `adiarios_v1.py` e `adiarios_v2.py` A modificação foi feita em ae8ce8e, porém ficou faltando refletir o ajuste em outros 3 raspadores replicados de `atende_v2`. Esta PR os corrigem.
- Loading branch information
Showing
3 changed files
with
9 additions
and
9 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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
from datetime import date | ||
|
||
from gazette.spiders.base.atende_layoutdois import BaseAtendeL2Spider | ||
from gazette.spiders.base.atende_v2 import BaseAtendeV2Spider | ||
|
||
|
||
class RsCandelariaSpider(BaseAtendeL2Spider): | ||
class RsCandelariaSpider(BaseAtendeV2Spider): | ||
TERRITORY_ID = "4304200" | ||
name = "rs_candelaria" | ||
start_date = date(2023, 5, 7) # Edição 1 | ||
city_subdomain = "candelaria" | ||
start_date = date(2023, 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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
from datetime import date | ||
|
||
from gazette.spiders.base.atende_layoutdois import BaseAtendeL2Spider | ||
from gazette.spiders.base.atende_v2 import BaseAtendeV2Spider | ||
|
||
|
||
class RsHorizontinaSpider(BaseAtendeL2Spider): | ||
class RsHorizontinaSpider(BaseAtendeV2Spider): | ||
TERRITORY_ID = "4309605" | ||
name = "rs_horizontina" | ||
start_date = date(2016, 6, 15) # Edição 1 | ||
city_subdomain = "horizontina" | ||
start_date = date(2016, 6, 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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
from datetime import date | ||
|
||
from gazette.spiders.base.atende_layoutdois import BaseAtendeL2Spider | ||
from gazette.spiders.base.atende_v2 import BaseAtendeV2Spider | ||
|
||
|
||
class RsSantaRosaSpider(BaseAtendeL2Spider): | ||
class RsSantaRosaSpider(BaseAtendeV2Spider): | ||
TERRITORY_ID = "4317202" | ||
name = "rs_santa_rosa" | ||
start_date = date(2022, 8, 23) # Edição 1 | ||
city_subdomain = "santarosa" | ||
start_date = date(2022, 8, 23) |