From 4c300e65a50eef72b91fa1909c9f68679723955e Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Fri, 1 Sep 2017 15:42:51 -0400 Subject: [PATCH] update install instructions Signed-off-by: Kenneth Reitz --- README.rst | 6 +++--- docs/install.rst | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index daa1b91..28b305f 100644 --- a/README.rst +++ b/README.rst @@ -132,10 +132,10 @@ DBF! >>> with open('people.dbf', 'wb') as f: ... f.write(data.export('dbf')) - + Pandas DataFrame! +++++++++++++++++ -:: +:: >>> print(data.export('df')): first_name last_name age @@ -150,7 +150,7 @@ Installation To install tablib, simply: :: - $ pip install tablib + $ pip install tablib[pandas] Make sure to check out `Tablib on PyPi `_! diff --git a/docs/install.rst b/docs/install.rst index 365cca8..4dab923 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -16,7 +16,7 @@ Distribute & Pip Of course, the recommended way to install Tablib is with `pip `_:: - $ pip install tablib + $ pip install tablib[pandas] -------------------