0
3

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 3 years have passed since last update.

Google Colabを利用して、pythonで簡単にスクレイピングをする方法

Last updated at Posted at 2020-03-28

目的

スクレイピングの基本的なやり方を学ぶ

利用用途

  • 試しにスクレイピングしてみたい場合
  • beautiful soupを体験してみたい場合

準備するもの

  • Google Colab(https://colab.research.google.com/)
  • ※Googleアカウントが必要です
  • アクセスするサイトのURL(※本記事は私のブログで実施しました。アクセス先の迷惑にならないように実施しましょう。)

コードの設計

  1. サイトにアクセスしてデータを取得する
  2. 整形する
  3. printで表示する

参考文献

ソースコード

test_scraping.py
from bs4 import BeautifulSoup
import requests
res = requests.get('https://www.ikuji-kaji-yaruman.work/')
soup = BeautifulSoup(res.text, 'html.parser')
for h2 in soup.find_all('h2'):
  print(h2.text)

注意点

  • ソースコード中にある私のサイトに繰り返しアタックしないようにお願いします笑

感想

  • Colabを使うとpython環境の構築が不要なのでとても便利!
0
3
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
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?