示例#1
0
文件: tv.py 项目: mampersat/PyTrakt
 def __str__(self):
     return '<TVEpisode>: {} S{}E{} {}'.format(self.show, self.season,
                                               self.number,
                                               unicode_safe(self.title))
示例#2
0
 def __str__(self):
     """String representation of a :class:`Movie`"""
     return '<Movie>: {}'.format(unicode_safe(self.title))
示例#3
0
文件: tv.py 项目: mampersat/PyTrakt
 def __str__(self):
     """Return a string representation of a :class:`TVShow`"""
     return '<TVShow> {}'.format(unicode_safe(self.title))
示例#4
0
 def __str__(self):
     """Return a string representation of a :class:`TVShow`"""
     return '<TVShow> {}'.format(unicode_safe(self.title))
示例#5
0
文件: users.py 项目: patsluth/PyTrakt
 def __str__(self):
     """String representation of a :class:`User`"""
     return '<User>: {}'.format(unicode_safe(self.username))
示例#6
0
 def __str__(self):
     """String representation of a :class:`User`"""
     return '<User>: {}'.format(unicode_safe(self.username))
示例#7
0
 def __str__(self):
     return '<TVEpisode>: {} S{}E{} {}'.format(self.show, self.season,
                                               self.number,
                                               unicode_safe(self.title))
示例#8
0
 def __str__(self):
     """String representation of a :class:`Movie`"""
     return '<Movie>: {}'.format(unicode_safe(self.title))