
I’ve been going through my physical DVD collection and getting rid of discs if I have a digital copy. My primary digital provider is Vudu, who makes this practically impossible to do easily — there is no way to get a list of your movies and the movie list isn’t easily searchable because it only shows poster images, not titles.
Sounds like a problem Python can solve!
I wrote a simple script that will login to Vudu and dump out a CSV of all your movies. It’ll include: title, video quality, Vudu movie ID, MPAA rating, Rotten Tomatoes score, Length, URL of poster image, release date, and a description of the movie.
It should be pretty easy to use — download it, plop in your email address and password, then run it. My Macbook Pro had all the modules I use, so I believe they should be installed by default (the only non-dist library is requests, so that would only be the possible sticking point).
Hi,
Just wondering if you still use this script? I just gave it a try and got some “bad handshake” errors.
requests.exceptions.SSLError: (“bad handshake: Error([(‘SSL routines’, ‘SSL23_GET_SERVER_HELLO’, ‘unknown protocol’)],)”,)
Any ideas what’s what I might try to get this working?
Thanks,
David
I tried recently and it was failing, likely because of changes to the Vudu site (it’s not using any sort of official API).
You’re getting a different error though. What version of Python and what platform are you running on? I think it’s probably something out of date. It could also be if you’re behind a captive portal or something else that’s intercepting the connection, though that would be unusual. Also possible is your install is more up to date and I was doing something wrong that used to work but doesn’t anymore.
One thing you can try is adding :443 to the base URL, so:
BASE_URL = ‘https://api.vudu.com:443/api2/’
on the off chance that for some reason it’s trying to connect to the wrong port (which would give you that error).