crawler tag

13 questions


1 answers
98 views
0
NAVER Financial Crawling...

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...

1 years ago

1 answers
111 views
0
Please look after the web crawling error.

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...


1 answers
97 views
0
Created code to get Python Smart Store thumbnail image.

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...

1 years ago
« - 2 -

© 2024 OneMinuteCode. All rights reserved.