Skip to content

Instantly share code, notes, and snippets.

@linzino7
Created May 2, 2020 19:07
Show Gist options
  • Save linzino7/a4ed44723c122911fc58d370eac5d95c to your computer and use it in GitHub Desktop.
Save linzino7/a4ed44723c122911fc58d370eac5d95c to your computer and use it in GitHub Desktop.
# import requests 套件包
import requests
# GET請求抓資料
page = requests.get('https://www.google.com.tw/')
#印出網頁程式碼
print(page.text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment