Posts by Márcio Pessoa • 51 points
2 posts
-
1
votes1
answer54
viewsA: Twitter User-App Authentication
Use the twython. An example of use: from twython import Twython, TwythonError OAUTH_TOKEN = '' OAUTH_TOKEN_SECRET = '' APP_SECRET = '' APP_KEY = '' twitter = Twython(APP_KEY, APP_SECRET,…
-
2
votes3
answers1435
viewsA: How do I generate a random negative number?
Generate a positive number normally and then multiply by -1.