1
0
mirror of https://github.com/pirate/ArchiveBox.git synced 2025-08-22 14:13:01 +02:00

add sample input comment

This commit is contained in:
Nick Sweeting
2017-05-05 10:54:18 -04:00
committed by GitHub
parent 56fe146f90
commit 1508c6a37d

View File

@@ -28,7 +28,7 @@ def check_dependencies():
def parse_pocket_export(html):
pattern = re.compile("^\\s*<li><a href=\"(.+)\" time_added=\"(\\d+)\" tags=\"(.*)\">(.+)</a></li>", re.UNICODE)
pattern = re.compile("^\\s*<li><a href=\"(.+)\" time_added=\"(\\d+)\" tags=\"(.*)\">(.+)</a></li>", re.UNICODE) # see sample input in ./example_ril_export.html
for line in html:
match = pattern.search(line)
if match: