update install instructions

Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
2017-09-01 15:42:51 -04:00
parent edbb16ec97
commit 4c300e65a5
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -132,10 +132,10 @@ DBF!
>>> with open('people.dbf', 'wb') as f: >>> with open('people.dbf', 'wb') as f:
... f.write(data.export('dbf')) ... f.write(data.export('dbf'))
Pandas DataFrame! Pandas DataFrame!
+++++++++++++++++ +++++++++++++++++
:: ::
>>> print(data.export('df')): >>> print(data.export('df')):
first_name last_name age first_name last_name age
@@ -150,7 +150,7 @@ Installation
To install tablib, simply: :: To install tablib, simply: ::
$ pip install tablib $ pip install tablib[pandas]
Make sure to check out `Tablib on PyPi <https://pypi.python.org/pypi/tablib/>`_! Make sure to check out `Tablib on PyPi <https://pypi.python.org/pypi/tablib/>`_!
+1 -1
View File
@@ -16,7 +16,7 @@ Distribute & Pip
Of course, the recommended way to install Tablib is with `pip <http://www.pip-installer.org/>`_:: Of course, the recommended way to install Tablib is with `pip <http://www.pip-installer.org/>`_::
$ pip install tablib $ pip install tablib[pandas]
------------------- -------------------