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

Method destroy_status

twython/endpoints.py:107–114  ·  view source on GitHub ↗

Destroys the status specified by the required ``id`` parameter Docs: https://developer.twitter.com/en/docs/tweets/post-and-engage/api-reference/post-statuses-destroy-id

(self, **params)

Source from the content-addressed store, hash-verified

105 return self.post('statuses/lookup', params=params)
106
107 def destroy_status(self, **params):
108 """Destroys the status specified by the required ``id`` parameter
109
110 Docs:
111 https://developer.twitter.com/en/docs/tweets/post-and-engage/api-reference/post-statuses-destroy-id
112
113 """
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

Callers 1

Calls 2

postMethod · 0.80
getMethod · 0.80

Tested by 1