使用此代码:
from pysnap import Snapchat
from pprint import pprint
s = Snapchat()
username = raw_input('Enter your username: ')
password = raw_input('Enter your password: ')
s.login(username, password)
friends = s.get_friends()
newfile = open("newfile.txt", "a")
pprint(friends, newfile)
它打印 get_friends() 的返回/结果,这很棒,几乎正是我想要的。
但。
结果是这样的:
{u'can_see_custom_stories': True,
u'direction': u'OUTGOING',
u'display': u'',
u'name': u'a7twini', #a7twini being the username here
u'type': 0},
我希望它显示的唯一内容是:
a7twini
<nextusername>
<nextusername>
etc..
有没有办法“过滤”这些结果?确保只有名称出现在文本文件中?
我希望有人可以帮助我,谢谢!
编辑:有人要求 get_friends() 功能
def get_friends(self):
"""Get friends
Returns a list of friends.
"""
return self.get_updates().get('friends', [])