1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Pythonで『The MagPi』の全号を一括ダウンロードするスクリプト

Last updated at Posted at 2024-09-16

「The MagPi」は、Raspberry Piに関する情報を提供するマガジンです。チュートリアル、プロジェクトのアイデア、最新情報などを掲載し、コーディングやロボティクス、DIYエレクトロニクスに興味のある人々にとって役立つ内容が満載です。

The MagPi" のPDFは公式サイトで無料でダウンロードできます。最新号からバックナンバーまで、Raspberry Piに関する様々な記事やプロジェクトが掲載されています。公式サイトを訪れて、直接ダウンロードしてください。

Link: https://magpi.raspberrypi.com/issues

download_magpi_all_issues.py
# 『The MagPi』雑誌の全号を一括ダウンロードするPythonスクリプト
import webbrowser
from time import sleep as wait

# 1から145までの範囲でループを実行
for i in range(1, 146):
    # 号のダウンロードURLを生成
    url = f"https://magpi.raspberrypi.com/issues/{i}/pdf/download"
    # ウェブブラウザでURLを開く
    webbrowser.open(url)
    # ページが完全に読み込まれるまで8秒間待機
    # インターネット接続が遅い場合は、ページが完全に読み込まれるように待機時間を増やすと良いでしょう。
    wait(8)
1
2
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
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?