aboutsummaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst17
1 files changed, 16 insertions, 1 deletions
diff --git a/README.rst b/README.rst
index df77c898..e18a355f 100644
--- a/README.rst
+++ b/README.rst
@@ -147,7 +147,8 @@ You must give the email address you use to login to pyAggr3g470r.
Web service
-----------
-It is possible to manage your articles thanks to a dedicated Web service. See the examples below.
+Articles
+''''''''
.. code:: python
@@ -222,6 +223,20 @@ Delete an article:
"message": "Article not found"
}
+Feeds
+'''''
+
+Delete a feed:
+
+.. code:: python
+
+ >>> r = requests.delete("https://pyaggr3g470r.herokuapp.com/api/v1.0/feeds/29", auth=("your-email", "your-password"))
+ >>> print r.status_code
+ 200
+ >>> print r.content
+ {
+ "message": "ok"
+ }
Donation
========
bgstack15