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] -------------------