# 개요
POE2에 사용되는 고유 아이템을 한글과 영문 이름으로 검색하여 자동 완성으로 표시합니다. 무기, 방어구, 기타 고유 아이템(플라스크, 주얼, 유물등)을 포함하고 있습니다. 검색하여 나온 결과를 클릭하면 POE2DB 사이트로 이동하여 세부 정보를 확인 할 수 있습니다.
현재 고유 아이템 DB 기준은 2025월 3월 14일 입니다.
# 고유 아이템 검색
# 사용 방법
- 고유 아이템의 부분 문자열 또는 전체 문자열을 입력하세요
- 부분 문자열과 일치하는 모든 고유아이템을 검색하고 결과를 표시합니다.
- 검색 결과 클릭 시 상세 페이지 화면으로 이동합니다.
# 검색창
▣ “ghost” 입력 시 아래와 같이 검색됩니다.
- Ghostwrithe / 유령의 몸서리 조각난 로브
- Ghostmarch / 유령의 행진 실타래 신발
# 코드
아래 코드는 python을 통해 poe2db 사이트의 고유 아이템을 가져오는 코드 입니다. json 형태로 한글과 영문으로 구분하여 출력하고 파일로 저장하는 코드입니다.
import requests
from bs4 import BeautifulSoup
import json
# 대상 URL
unique_weapon_url= "https://poe2db.tw/kr/Unique_item#Weapon%EA%B3%A0%EC%9C%A0"
unique_armour_url = "https://poe2db.tw/kr/Unique_item#Armour%EA%B3%A0%EC%9C%A0"
unique_others_url = "https://poe2db.tw/kr/Unique_item#Other%EA%B3%A0%EC%9C%A0"
# 웹 페이지 요청 및 HTML 파싱
headers = {"User-Agent": "Mozilla/5.0"}
def get_list_from_poe2db_url(url):
response = requests.get(url, headers=headers)
if response.status_code == 200:
soup = BeautifulSoup(response.text, "html.parser")
# class 속성이 'uniqueitem'인 <a> 태그 찾기
uniqueitems = soup.find_all("a", class_=["uniqueitem"])
gem_list = []
for item in uniqueitems:
# <a> 태그 내부에 <img> 태그가 없는 것만 필터링
item_name = item.text.strip()
if item_name: # 텍스트가 비어 있지 않다면
href = item.get("href", "No link")
link = 'https://poe2db.tw' + href
eng_item_name = href.replace("/kr/","")
eng_item_name = eng_item_name.replace("_"," ")
gem_data = {
"Name-KR": item_name,
"Name-EN": eng_item_name,
"Link": link
}
print(item_name, eng_item_name, link,sep=",")
gem_list.append(gem_data)
return gem_list
if __name__ == "__main__":
unique_weapon = get_list_from_poe2db_url(unique_weapon_url)
unique_armour = get_list_from_poe2db_url(unique_armour_url)
unique_others = get_list_from_poe2db_url(unique_others_url)
result = {
"weapon": unique_weapon,
"armour": unique_armour,
"others": unique_others,
}
# JSON 출력
print(json.dumps(result, indent=4, ensure_ascii=False))
# JSON 파일로 저장
with open("unique_items.json", "w", encoding="utf-8") as json_file:
json.dump(result, json_file, indent=4, ensure_ascii=False)
Leave a comment