MCPcopy Index your code
hub / github.com/ryanmcgrath/twython / update_status

Method update_status

twython/endpoints.py:116–123  ·  view source on GitHub ↗

Updates the authenticating user's current status, also known as tweeting Docs: https://developer.twitter.com/en/docs/tweets/post-and-engage/api-reference/post-statuses-update

(self, **params)

Source from the content-addressed store, hash-verified

114 return self.post('statuses/destroy/%s' % params.get('id'))
115
116 def update_status(self, **params):
117 """Updates the authenticating user's current status, also known as tweeting
118
119 Docs:
120 https://developer.twitter.com/en/docs/tweets/post-and-engage/api-reference/post-statuses-update
121
122 """
123 return self.post('statuses/update', params=params)
124
125 def retweet(self, **params):
126 """Retweets a tweet specified by the ``id`` parameter

Callers 2

update_status.pyFile · 0.80

Calls 1

postMethod · 0.80

Tested by 1