0

使用此代码:

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', [])
4

1 回答 1

1

您可以打印name每个朋友的条目。假设friends是一个列表:

for friend in friends:
    newfile.write(friend[u'name'] + "\n")

或者你可以使用列表理解:

newfile.writelines([friend[u'name'] + "\n" for friend in friends])
于 2014-11-19T12:16:45.407 回答