powderblock / DealWithItReddit

Reddit bot. Computer vision for facial detection and transformation. Python, PRAW, & OpenCV.
http://www.reddit.com/user/DealWithItbot/
MIT License
33 stars 3 forks source link

Bot Should try and Process Images on Sites Other Than Imgur.com #24

Closed powderblock closed 9 years ago

powderblock commented 9 years ago

Just do the same thing we are doing already but remove the imgur check. The other safeties will catch a bad one if something isn't really an image / an invalid image for the processing. (Example: Animated image without type .gif.)

powderblock commented 9 years ago

Make sure this check is done on the end of the url. url[-4:] == ".png" url[-4:] == ".jpg" url[-5:] == ".jpeg"

powderblock commented 9 years ago

Closed in commit d8680df.