Found the answer here
All you have to do is pass Twython to the callback_url parameter and replace line 205 in Twython.py with
resp, content = client.request(request_token_url, "POST",body=urllib.urlencode({'oauth_callback':my_callback_url}))
Note that if you want Twitter to respect your oauth_callback argument, the request must be POST.
source share