I have a list of more than 100 movies with ratings that I previously kept in a notes app. I wanted to use Python and Selenium to log them on Letterboxd, but I ran into Cloudflare error 600010—even before I could successfully log in. I'm only trying to transfer my own movie history, not spam or review-bomb anything. Is there a better way to automate or import this list?
1 Answer
If you still want to use Python, use it only to generate a CSV in the platform’s supported import format rather than controlling a browser. Browser automation can trigger anti-bot protections, and trying to evade those protections with proxies or IP rotation may violate the site’s rules. The official import process is safer and more reliable for a batch of personal data.

It looks like the CSV route is definitely the way to go. I didn’t realize the site could import a whole list at once.