aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.rst7
1 files changed, 5 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index 6ec8a2a3..022af5b9 100644
--- a/README.rst
+++ b/README.rst
@@ -187,11 +187,14 @@ Add an article:
{
"message": "ok"
}
- >>>
>>> r = requests.get("https://pyaggr3g470r.herokuapp.com/api/v1.0/articles?feed=42&limit=1", auth=("your-email", "your-password"))
>>> print json.loads(r.content)["result"][0]["title"]
Sortie de pyAggr3g470r 5.3
- >>>
+
+Delete an article:
+
+.. code:: python
+
>>> r = requests.delete("https://pyaggr3g470r.herokuapp.com/api/v1.0/articles/84574", auth=("your-email", "your-password"))
>>> print r.status_code
200
bgstack15