0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Googleの検索ページの<meta content="???"> ???にあるもの

Posted at

#Google検索ページのmeta content
ちょっとした発見かもしれないので、共有します。
タイトル通りなんですが、スクレイピングの練習でGoogleのソースを開いたら、「meta content」にちょっとした言葉が隠れていたみたいです。
Google

##???とは
???とは、
「世界中のあらゆる情報を検索するためのツールを提供しています。さまざまな検索機能を活用して、お探しの情報を見つけて下さい。」
でした。

##検証のためのソースコード
下記に置きました。
実行するとUIが起動しますので、そこに「google.co.jp」を打ち込んで、ボタンを押すと該当するソースが確認できます。

#coding: utf-8

import tkinter
import requests
from bs4 import BeautifulSoup
from tkinter import messagebox

URL_HEAD = "https://www."

#UI
root = tkinter.Tk()
root.geometry('300x200')
root.title('Input URL for monitoring')

lbl = tkinter.Label(text='https://www.')
lbl.place(x=15, y=70)

txt = tkinter.Entry(width=20)
txt.place(x=90, y=70)

def btn_click():
    URL_BODY = txt.get()
    response = requests.get(URL_HEAD+URL_BODY)
    messagebox.showinfo('Status', f'{response.text}')

btn = tkinter.Button(root, text='INPUT', command=btn_click)
btn.place(x=140, y=170)

root.mainloop()

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?