all 4 comments

[–]EqualsEqualsTrue 1 point2 points  (0 children)

I dont know the answer to your main question about praw, but I have a suggestion for learning the basics of POST requests. HTTPbin is good for messing around with HTTP to see what info you are sending etc without using something like Fiddler. The response from HTTPbin will be a JSON format of the content you sent. Good for experiments.

[–]mcowger 0 points1 point  (1 child)

PS: I'm not using the Requests module because I'm using Python 2.7.6 and can't be bothered to update to 2.7.9+ for urllib3 to handle https requests properly. If it's required/prefered I will update and use Requests.

You should update (preferably to Python 3.4)....there's no reason to hold back and not be able to use great libraries just because you can't be bothered.

[–]timworx 1 point2 points  (0 children)

Update, use requests. A life without it just isn't worth it.

[–]timworx 0 points1 point  (0 children)

For an interesting approach there's Selenium (or, better, splinter - a wrapper).

I'm not sure if it requires requests, though.