My crawling code doesn't print any results – Telegram API
I'm trying to make a crawler for a Korean news website. The weird thing is I have working code already. Following is the example. import requests from bs4 import BeautifulSoup import telegram url = 'http://www.thelec.kr/news/articleList.html?page=1&total=3836&box_idxno=&view_type=sm' req = requests.get(url) html =…