这是一个Twitter图像机器人,每两个小时调用一次从文件夹发布图片,文件连续编号,当前编号存储在文本文件中,因此它可以在运行之间保持不变。图像文件类型在.jpg和.gif之间变化,我不知道如何在我的代码的picture()函数中解释这一点。
import os
from twython import Twython
from twython import TwythonStreamer
APP_KEY = ''
APP_SECRET = ''
OAUTH_TOKEN = ''
OAUTH_TOKEN_SECRET = ''
f = open('pictures.txt', 'r+')
z = f.read()
def picture():
picture = open('/0/' + 'picture' + str(z))
f.write(str(z)+'\n')
global z
z += 1
promote(picture)
f.write(z)
f.close
def promote(photo):
twitter = Twython(APP_KEY, APP_SECRET, OAUTH_TOKEN, OAUTH_TOKEN_SECRET)
twitter.update_status_with_media(status='', media=photo)
picture()
答案 0 :(得分:0)
由于您之前的问题已被搁置,我会再次发布此答案。
使用glob查找与前缀imghdr匹配的文件以检查文件类型(twitter不支持所有图像文件),并确保将图像序列号转换为读取时为int,更新文件时为字符串。文件更新需要首先寻找文件的开头,这假设序列号总是会增加。
import imghdr
from glob import glob
SUPPORTED_IMG_TYPES = 'gif jpeg png'.split()
IMG_SEQ_FILE = '/0/pictures.txt'
GLOB_PATTERN = '/0/picture%d.*'
def send_to_twitter(filename):
print "sent %s to twitter" % filename
return True
with open(IMG_SEQ_FILE, 'r+') as f:
seq = int(f.readline().strip())
for name in glob(GLOB_PATTERN % seq):
img_type = imghdr.what(name)
if img_type in SUPPORTED_IMG_TYPES:
if send_to_twitter(name):
f.seek(0)
seq += 1
f.write(str(seq))
break
else:
if not img_type:
print "%s is not an image file" % name
else:
print "%s unsupported image type: %s" % (name, img_type)
您需要做的就是添加代码以将图像文件数据发送到Twitter。