python 第一篇博客媒体链接4

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 第一篇博客媒体链接4相关的知识,希望对你有一定的参考价值。

import requests
url = 'https://www.reddit.com/r/wallpapers.json'
response = requests.get(url, headers={'User-agent': 'your-bot-name 0.1'})
if not response.ok:
    print("Error", response.status_code)
    exit()
data = response.json()['data']['children']
first_post = data[0]['data']
image_url = first_post['url']
image = requests.get(image_url)
# checks url and sets appropriate extension for the image file
if '.png' in image_url:            
    extension = '.png'        
elif '.jpg' in image_url or '.jpeg' in image_url:            
    extension = '.jpeg'
if(image.status_code == 200):
    try:
        output_filehandle = open(first_post['title'] + extension, mode='bx')
        output_filehandle.write(image.content)
    except:
        pass

以上是关于python 第一篇博客媒体链接4的主要内容,如果未能解决你的问题,请参考以下文章

python 第一篇博客媒体链接5

python 第一篇博客媒体链接3

python 第一篇博客媒体链接1

第一篇博客(python爬取小故事网并写入mysql)

第一篇博客:记录Appium环境搭建

第一篇博客——python学习旅程开启