This forum is now read-only. Please use our new forums! Go to forums

banner
Close banner
0 points
Submitted by Alfonso Hernandez
almost 9 years

Is deleting a tweet technically a DELETE request?

From the assignment:

[…] when you delete a tweet, there goes a DELETE request.

I think deleting a tweet sets an is_visible flag to False, so your tweet still exists but it’s just not visible anymore. If that’s the case, then “deleting” a tweet is more like a PUT request.

Answer 55ffb56495e3780c550001a5

0 votes

Permalink

import requests


kittens = requests.get('http://placekitten.com/')
text = kittens


print kittens.text[559:1000]
points
Submitted by bhartirawatbr
over 8 years