📦 Initialize Geulbeot structure and merge Prompts & test projects

This commit is contained in:
2026-03-05 11:32:29 +09:00
commit 555a954458
687 changed files with 205247 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
def get_detail_content(detail_url):
res = requests.get(detail_url)
soup = BeautifulSoup(res.text, 'html.parser')
div = soup.find('div', {'data-v-5cb2d9fe': True})
if div and div.find('h2'):
return div.find('h2').text.strip()
return "설명이 없습니다."