latecomers/devloop/parse.py
2024-02-17 16:33:52 +01:00

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))