Changed custom_lib

This commit is contained in:
2026-05-08 15:28:04 +09:00
parent 0ffb55dd99
commit 5f281ec40b
687 changed files with 337 additions and 11 deletions
+12
View File
@@ -0,0 +1,12 @@
__version__ = "1.0.0"
# --- package ---
# --- crawling ---
from bs4 import BeautifulSoup
from urllib import request
def get_lxml(target_url):
request_url = request.urlopen(target_url)
bs = BeautifulSoup(request_url, "lxml", from_encoding='utf-8')
return bs