🎄teratailクリスマスプレゼントキャンペーン2024🎄』開催中!

\teratail特別グッズやAmazonギフトカード最大2,000円分が当たる!/

詳細はこちら
Python

Pythonは、コードの読みやすさが特徴的なプログラミング言語の1つです。 強い型付け、動的型付けに対応しており、後方互換性がないバージョン2系とバージョン3系が使用されています。 商用製品の開発にも無料で使用でき、OSだけでなく仮想環境にも対応。Unicodeによる文字列操作をサポートしているため、日本語処理も標準で可能です。

Q&A

1回答

1055閲覧

pythonからブラウザ表示

taaaa

総合スコア5

Python

Pythonは、コードの読みやすさが特徴的なプログラミング言語の1つです。 強い型付け、動的型付けに対応しており、後方互換性がないバージョン2系とバージョン3系が使用されています。 商用製品の開発にも無料で使用でき、OSだけでなく仮想環境にも対応。Unicodeによる文字列操作をサポートしているため、日本語処理も標準で可能です。

0グッド

0クリップ

投稿2020/12/11 17:34

index.html

1<div class="now_weather"> 2 <div id="output">aaaaa</div> 3</div>

aaaaaのところをpythonのスクレイピングで取得した値を入れて、文字をブラウザに表示させたいのですが、何かいい方法はありますでしょうか?

app.py load_url = "https://weathernews.jp/onebox/33.87/130.81/temp=c" html = requests.get(load_url) soup = BeautifulSoup(html.content, "html.parser") print(soup.find(class_="weather-now__cont").text)

ここで取得した文字をブラウザに表示させたいです。

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

guest

回答1

0

どのブラウザを使いたいのかがわかりませんので、Chromeで表示しました。他のブラウザを使うなら適当に変更してください。
また、Chromeを使う場合でも、インストール先が違うことがあるそうですので、必要なら修正して下さい。

soup.find(class_="weather-now__cont").text を表示したいのなら以下です。
ブラウザに渡すために一時ファイルを作成しています。

python

1import requests 2from bs4 import BeautifulSoup 3import subprocess 4 5browser = "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" 6tempfile = "test.html" 7load_url = "https://weathernews.jp/onebox/33.87/130.81/temp=c" 8 9html = requests.get(load_url) 10soup = BeautifulSoup(html.content, "html.parser") 11whether_now = soup.find(class_="weather-now__cont") 12 13template = '''<html> 14<head> 15 <title>data from whethernews</title> 16 17</head> 18<body>%s</body> 19</html> 20''' 21 22with open(tempfile, "w", encoding='utf-8') as f: 23 f.write(template % whether_now.text) 24 25subprocess.run([browser, tempfile]) 26

元のように縦に表示したければ、soup.find(class_="weather-now__cont").textは使いませんが、以下のような方法もあります。

python

1import requests 2from bs4 import BeautifulSoup 3import subprocess 4 5browser = "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" 6tempfile = "test.html" 7load_url = "https://weathernews.jp/onebox/33.87/130.81/temp=c" 8 9html = requests.get(load_url) 10soup = BeautifulSoup(html.content, "html.parser") 11whether_now = soup.find(class_="weather-now__cont") 12 13template = '''<html> 14<head> 15 <title>data from whethernews</title> 16</head> 17<body>%s</body> 18</html> 19''' 20 21with open(tempfile, "w", encoding='utf-8') as f: 22 f.write(template % (str(whether_now.ul.find_previous()) + str(whether_now.ul))) 23 24subprocess.run([browser, tempfile]) 25

投稿2020/12/12 11:34

ppaul

総合スコア24670

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

まだベストアンサーが選ばれていません

会員登録して回答してみよう

アカウントをお持ちの方は

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.36%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問