feat: add doctor and specialty management modules with full CRUD support and database seeding
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
with open('src/main/resources/templates/doctor.html', 'r', encoding='utf-8') as f:
|
||||
text = f.read()
|
||||
|
||||
import re
|
||||
match = re.search(r'<div class="bg-white rounded-xl overview-wrapper-shadow flex flex-col justify-between h-full">(.*?)<div class="bg-white rounded-xl overview-wrapper-shadow', text, re.DOTALL)
|
||||
if match:
|
||||
print(match.group(1))
|
||||
|
||||
Reference in New Issue
Block a user