Last active
May 3, 2017 01:27
-
-
Save luxin88/a9199da5e7e02ef896f6ce9fab350a02 to your computer and use it in GitHub Desktop.
下载链接图片
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import requests | |
from PIL import Image | |
from io import BytesIO | |
url = u'http://grs.a.mvote.net/imgsource/global_AB7481EF-358F-0B95-F2FD-3C43CA06CE94.png' | |
r = requests.get(url) | |
i = Image.open(BytesIO(r.content)) | |
i.save(u'img/AB7481EF-358F-0B95-F2FD-3C43CA06CE94.jpg', 'JPEG') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment