Fix: lot, type and locataire extraction
This commit is contained in:
parent
c0c550bd59
commit
9c06c64ae4
@ -5,14 +5,7 @@ import pandas as pd
|
|||||||
|
|
||||||
def parse_above_loc(content):
|
def parse_above_loc(content):
|
||||||
row = {}
|
row = {}
|
||||||
try:
|
app, loc, *_ = content.split("\n")
|
||||||
app, loc = content.split("\n")
|
|
||||||
except ValueError:
|
|
||||||
row["lot"] = ""
|
|
||||||
row["type"] = ""
|
|
||||||
row["locataire"] = content
|
|
||||||
|
|
||||||
else:
|
|
||||||
app_ = app.split(" ")
|
app_ = app.split(" ")
|
||||||
row["lot"] = app_[1]
|
row["lot"] = app_[1]
|
||||||
row["type"] = " ".join(app_[2:])
|
row["type"] = " ".join(app_[2:])
|
||||||
|
Loading…
Reference in New Issue
Block a user