File size: 241 Bytes
be32617
 
 
 
 
1
2
3
4
5
6
import re
with open('src/index.html', 'r', encoding='utf-8') as f:
    html = f.read()
matches = re.findall(r'<div class="h-[67] w-\[1\.5px\] bg-gray-300 dark:bg-gray-700 rounded-full"></div>', html)
print(f'Found {len(matches)} dividers.')