bmc_hub/parse_html.py

18 lines
661 B
Python
Raw Normal View History

import re
with open('app/modules/sag/templates/detail.html', 'r') as f:
text = f.read()
# Let's verify the file content is around 6600 lines
print(f"Total lines: {len(text.splitlines())}")
# Search for the function renderTimeV1Timeline
match = re.search(r'function renderTimeV1Timeline\(entries\)\s*{.*?timeline\.innerHTML = Object\.entries\(grouped\).*?\}', text, re.DOTALL)
if match:
print(f"Found render function, length: {len(match.group(0))}")
else:
print(f"Could not find render function")
match = re.search(r'function renderTimeV1Timeline\(entries\)\s*{', text)
if match:
print("Found definition at index:", match.start())