#python3.6 urllib 使い方メモ
1.リクエスト作成
import urllib.request
with urllib.request.urlopen('https://...') as f:
print (f.read().decode('utf-8'))```
Go to list of users who liked
More than 5 years have passed since last update.
#python3.6 urllib 使い方メモ
1.リクエスト作成
with urllib.request.urlopen('https://...') as f:
print (f.read().decode('utf-8'))```
Register as a new user and use Qiita more conveniently
Go to list of users who liked