diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-06-23 12:32:14 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-06-23 12:32:14 +0200 |
commit | 415504e140416f04f310a251b33739f900ec6e7c (patch) | |
tree | 849c0e5f82fb2bdc8d569680f06ca884713ee16d /README.rst | |
parent | Updated README. (diff) | |
download | newspipe-415504e140416f04f310a251b33739f900ec6e7c.tar.gz newspipe-415504e140416f04f310a251b33739f900ec6e7c.tar.bz2 newspipe-415504e140416f04f310a251b33739f900ec6e7c.zip |
Updated README.
Diffstat (limited to 'README.rst')
-rw-r--r-- | README.rst | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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 |