mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-30 13:10:47 +00:00
only get first part of address from ecmk
This commit is contained in:
parent
40a1248f02
commit
82efc482c8
1 changed files with 1 additions and 1 deletions
|
|
@ -98,7 +98,7 @@ def run_job() -> None:
|
||||||
|
|
||||||
first_name: str = cells.nth(1).inner_text().strip()
|
first_name: str = cells.nth(1).inner_text().strip()
|
||||||
last_name: str = cells.nth(2).inner_text().strip()
|
last_name: str = cells.nth(2).inner_text().strip()
|
||||||
address: str = cells.nth(5).inner_text().strip()
|
address: str = cells.nth(5).inner_text().split(" ")[0].strip()
|
||||||
postcode: str = cells.nth(7).inner_text().strip()
|
postcode: str = cells.nth(7).inner_text().strip()
|
||||||
status: str = cells.nth(9).inner_text().strip()
|
status: str = cells.nth(9).inner_text().strip()
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue