13 questions
import requests url = 'https://finance.naver.com/item/board.nhn?code=000020&page=1'req = requests.get(url)html = req.textprint(html) Url is included, but there is no page requested in the HTML var...
Hello, I am a student who studies Java and crawl.I'm going to crawl the playlist of youtube.com and present it as a recycler view in the app.I coded it as below, but nothing was made at the Recycler V...
import requestsfrom bs4 import BeautifulSoupimport urllib.requesturl = input ('Enter address:')html = requests.get(url)bs = BeautifulSoup(html.text, 'html.parser')description = bs.find('meta', propert...
« | - 2 - |
© 2024 OneMinuteCode. All rights reserved.