public
Description: Simple to use TVDB (thetvdb.com) API in Python, and automatic TV episode namer
Homepage: http://dbr.lighthouseapp.com/projects/13342-tvdb_api/tickets
Clone URL: git://github.com/dbr/tvdb_api.git
Search Repo:
Can now get corrected showname by doing 
tvdb_instance['my.Show.nAme']['showname'] (Will return "My Show 
Name")
dbr (author)
Thu May 15 19:08:43 -0700 2008
commit  bca7c4a676e0003f3269b4896fe7ba5acbe79ba2
tree    733427b7049597680cf08b7ecae80e3a3f816c0a
parent  9581e2c85e19bbe141882413d4b050affab498c4
...
171
172
173
 
174
175
176
177
 
178
179
180
...
171
172
173
174
175
176
177
178
179
180
181
182
0
@@ -171,10 +171,12 @@
0
             sname, sid = selected_series['name'], selected_series['sid']
0
             self.log.debug( "Got %s, sid %s" % (sname,sid) )
0
             self.shows[sid] = _Ddict(dict)
0
+ self.shows[sid]['showname'] = sname
0
             self.corrections[name] = sid
0
             self._getEps( sid )
0
         #end if self.corrections.has_key
0
         return sid
0
+ #end _nameToSid
0
 
0
     def __getitem__(self,key):
0
         """

Comments

    No one has commented yet.