Re: Replying on a tweet with Twython

2018-02-20 Thread Steven D'Aprano
On Sat, 17 Feb 2018 21:27:52 +0100, Cecil Westerhof wrote: [...] >> Okay. What happens when you try? > > Then the tweet is posted as a reply on the the first tweet. > > (So problem solved.) Ah, sorry, I did not understand your second post. I thought you were posting it as an update to the pro

Re: Replying on a tweet with Twython

2018-02-17 Thread Cecil Westerhof
Steven D'Aprano writes: > On Sat, 17 Feb 2018 12:53:08 +0100, Cecil Westerhof wrote: > >> Cecil Westerhof writes: >> >>> I just found Twython. I managed to post a tweet with: >>> from twython import Twython >>> twitter = Twython(APP_KEY, APP_SECRET, >>> OAUTH_TOKEN

Re: Replying on a tweet with Twython

2018-02-17 Thread Steven D'Aprano
On Sat, 17 Feb 2018 12:53:08 +0100, Cecil Westerhof wrote: > Cecil Westerhof writes: > >> I just found Twython. I managed to post a tweet with: >> from twython import Twython >> twitter = Twython(APP_KEY, APP_SECRET, >> OAUTH_TOKEN, OAUTH_TOKEN_SECRET) >> posted

Re: Replying on a tweet with Twython

2018-02-17 Thread Cecil Westerhof
Cecil Westerhof writes: > I just found Twython. I managed to post a tweet with: > from twython import Twython > twitter = Twython(APP_KEY, APP_SECRET, > OAUTH_TOKEN, OAUTH_TOKEN_SECRET) > posted = twitter.update_status(status = quote) > > But I want to send a rep