tags:

views:

22

answers:

0

I'm playing with tvrage-python package to learn a bit Python, while still creating some kind of 'real' project. Currently I'm trying to figure out the best way to search for an episode by its original air date. There is not a direct support for this kind of search, so I thought it could worth a shot by listing all episodes go through them and store their air dates in an array. But this would probably take a lot of time to process shows with lot of episodes so the efficiency would be very low. So question is what would be best solution for this problem?

Also, is there any good documentation for packages? http://pypi.python.org/pypi/python-tvrage/0.2.1 isn't very thorough for tvrage package, and in fact not everything this module has to offer is documented there.

I'm sure there would be better projects for beginners than this, but I decided to go with this as I'll have some use for it when (if) it's done.

Looking forward for your replies.