Compare commits

..

2 Commits

Author SHA1 Message Date
xkrrudah d7b8fef42f Merge pull request '[MR]Added my_crawling.py' (#7) from develop into main
Reviewed-on: #7
2026-05-08 10:04:31 +09:00
xkrrudah f21db4cd33 Added my_crawling.py 2026-05-08 10:03:25 +09:00
2 changed files with 16 additions and 1 deletions
+4 -1
View File
@@ -4,14 +4,17 @@ __version__ = "1.0.2"
from custom_lib import my_file_config from custom_lib import my_file_config
from custom_lib import my_logger from custom_lib import my_logger
from custom_lib import my_uuid from custom_lib import my_uuid
# 20260527 tak add my image # 20260507 tak add my_image
from custom_lib import my_image from custom_lib import my_image
# 20260508 tak add my_crawling
from custom_lib import my_crawling
MODULES = [ MODULES = [
my_file_config, my_file_config,
my_logger, my_logger,
my_uuid, my_uuid,
my_image, my_image,
my_crawling
] ]
def print_versions(): def print_versions():
+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