126 questions
When Africa BJ starts broadcasting, I'm going to make a program that executes a specific code.If you look at the BJ station website, there is a live class only when broadcasting. So I crawl the BJ bro...
url = 'site url'driver.get(url)# I'll connect it like thispage = driver.page_sourcehtml = BeautifulSoup(page, 'html.parser')find_tag = html.findAll('h3')# h3 tag is the name of the sites that are expo...
url=https://www.whoscored.com/Players/11119/Show/Lionel-Messires = requests.get(url, headers=headers, proxies=proxies)page_parser = bs4(res.content, html.parser)So we're going to practice bringing Mes...
import urllib.requestimport bs4url = https://sports.media.daum.net/sports/record/epl?tab=playerRankhtml = urllib.request.urlopen(url)bs_obj = bs4.BeautifulSoup(html, html.parser)div = bs_obj.find(div,...
https://mensaar.de/#/menu/sbI want to get the menu data from the web page above and print it out, but it's not working well.The code I wrote is as follows.//#encoding = utf-8import urllib.requestfrom ...
I am using the QPython3 Android app and I installed the requests module with pip.import requestsreq = requests.get(http://google.com)print(req.text)If you enter the code as shown above, it will run no...
class Home Controller < Application Controller def index require 'open-uri' require 'nokogiri' @url =http://news.naver.com/main/read.nhn?mode=LSD&mid=shm&sid1=105&oid=030&aid=000248...
urllib.error.HTTPError: HTTP Error 302: The HTTP server returned a redirect error that would lead to an infinite loop.The last 30x error message was:Moved TemporarilyThere's an error.Looking at the st...
This is the code I wrote so far. The purpose is to enter the article with the title of the bulletin board with the desired wordFirst of all, I even wrote the title and link of the post to include it i...
I'm studying Ruby on Rails. I'm trying to scratch four titles of Naver news articles, but it didn't work out as I thought, so I'm posting a question.In the code I made, if you turn 0002713773, 0002713...
« | - 5 - | » |
© 2024 OneMinuteCode. All rights reserved.