11 lines
221 B
Python
11 lines
221 B
Python
# -*- encoding: utf-8 -*-
|
|
from latecomers.parse import find_table, get_details
|
|
|
|
with open("./devloop/sample3.html") as f:
|
|
content = f.read()
|
|
|
|
flights = find_table(content)
|
|
|
|
for f in flights:
|
|
print(get_details(f))
|