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)
| 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 |