so for the record all that was done was to comment out this section of code from amazon_get_seasons_info.py
which is what I was playing with when a test version was uploaded. But it is kinda weird that technically that should work as they didn't seem to move the <a href> and it is still the first 'a' ref it comes to within each <li> block. But oh well. At least I can see why it returns everything playable or otherwise. :-P I was attempting to have it look for the play button itself but couldn't quite get the code to work yet. So kudos to Wilson for the quick fix. :-)
Code:
# if li.find("a")==None: # count += 1 # continue # if not(li.find("a").has_attr('href')): # count += 1 # continue play_url = "" # play_url = li.find("a")['href'] # if play_url == None: # count += 1 # continue
Comment