Skip to content

Instantly share code, notes, and snippets.

@gothedistance
Last active January 6, 2020 12:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gothedistance/28f12c322cbcdc092ab477f925a436a1 to your computer and use it in GitHub Desktop.
Save gothedistance/28f12c322cbcdc092ab477f925a436a1 to your computer and use it in GitHub Desktop.
PythonでYahooにアクセスしてレスポンスを全て文字列で返すコード
import urllib.request
url = 'https://yahoo.co.jp'
req = urllib.request.Request(url)
with urllib.request.urlopen(req) as res:
body = res.read()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment