Commit 1c37c536 authored by Vincent Pelletier's avatar Vincent Pelletier

Add line parsing rate statistics.

parent 1db80242
...@@ -713,6 +713,7 @@ def main(): ...@@ -713,6 +713,7 @@ def main():
('... URL-less', no_url_lines), ('... URL-less', no_url_lines),
('... skipped', skipped_lines), ('... skipped', skipped_lines),
('Parsing time', timedelta(seconds=parsing_time)), ('Parsing time', timedelta(seconds=parsing_time)),
('Parsing rate', '%i line/s' % (all_lines / parsing_time)),
('Rendering time', timedelta(seconds=( ('Rendering time', timedelta(seconds=(
end_stat_time - end_parsing_time))), end_stat_time - end_parsing_time))),
): ):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment