import re

with open("embed_page.html", "r", encoding="utf-8") as f:
    embed_html = f.read()

like_pattern = r'likeCountClick[^>]*>\s*([\d,]+)\s*likes?'
likes_m = re.search(like_pattern, embed_html, re.IGNORECASE)
print("likes_m:", likes_m)

comment_pattern = r'commentCountClick[^>]*>\s*([\d,]+)\s*comments?'
comments_m = re.search(comment_pattern, embed_html, re.IGNORECASE)
print("comments_m:", comments_m)
