From 7c71cb9643d2c6abafe37e12d03ad4b0c9027e1d Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 18 Sep 2019 03:02:29 -0400 Subject: [PATCH] Update README.md --- README.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e6aa92ac..8e9b1ba3 100644 --- a/README.md +++ b/README.md @@ -3,10 +3,15 @@
+    
+ Python 3.7.4 (default, Sep 7 2019, 18:27:02) >>> import requests - >>> r = requests.get('test') -

an elegant and simple HTTP library for Python

-

Carefully handcrafted, with love, for the Python community. + >>> r = requests.get('https://api.github.com/repos/psf/requests') + >>> r.json()["description"] + 'an elegant and simple HTTP library for Python' +

+ +

Carefully handcrafted, with love, for the Python community.