Skip to content

Instantly share code, notes, and snippets.

@linzino7
Created May 11, 2020 19:24
Show Gist options
  • Save linzino7/bf3c1dbebf62c71afe4cc323375c109c to your computer and use it in GitHub Desktop.
Save linzino7/bf3c1dbebf62c71afe4cc323375c109c to your computer and use it in GitHub Desktop.
# 導入 模組(module)
import requests
# 把 到 ptt 八卦版 網址存到URL 變數中
URL = "https://www.ptt.cc/bbs/Gossiping/index.html"
# 發送get 請求 到 ptt 八卦版
response = requests.get(URL)
# 印出回傳網頁程式碼
print(response.text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment