summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKane Blueriver <kxxoling@gmail.com>2018-07-27 00:32:46 +0800
committerGitHub <noreply@github.com>2018-07-27 00:32:46 +0800
commitdb4b5f32baa047832ed7892792059f595118fdf4 (patch)
tree538ee975ead206b5307fcef3104812f85b9a2dd7
parentd66176fcd2bf1247c4858f3e48c9c18982b05c44 (diff)
parent7fb907e38fa0ff340319a94f6190a5e8758da08d (diff)
downloadpython-prettytable-ptable-db4b5f32baa047832ed7892792059f595118fdf4.tar.gz
Merge pull request #23 from hugovk/patch-1
Remove broken downloads badge
-rw-r--r--README.rst14
1 files changed, 5 insertions, 9 deletions
diff --git a/README.rst b/README.rst
index d2d5533..b190bc0 100644
--- a/README.rst
+++ b/README.rst
@@ -4,7 +4,7 @@ About PTable
PTable is a simple Python library designed to make it quick and easy to
represent tabular data in visually appealing ASCII tables, originally
-forked from `PrettyTable <https://code.google.com/p/prettytable/>`_ .
+forked from `PrettyTable <https://code.google.com/p/prettytable/>`_.
.. image:: https://travis-ci.org/kxxoling/PTable.svg
:target: https://travis-ci.org/kxxoling/PTable
@@ -18,21 +18,17 @@ forked from `PrettyTable <https://code.google.com/p/prettytable/>`_ .
:target: https://coveralls.io/github/kxxoling/PTable?branch=master
:alt: Coverage
-.. image:: https://img.shields.io/pypi/dm/PTable.svg?maxAge=2592000
- :target: https://pypi.python.org/pypi/PTable/
- :alt: Downloads
-
Installation
============
-As PTable is a fork of PrettyTable, and compatible to all its APIs,
+As PTable is a fork of PrettyTable, and compatible with all its APIs,
so PTable is usage is the same as PrettyTable, and the installation
would cover on the original PrettyTable.
As always, you can install PTable in 3 ways.
-Via pip(recommend)::
+Via pip (recommend)::
pip install PTable
@@ -62,7 +58,7 @@ PTable library API is almost as PrettyTable, you can import the same API from
from prettytable import PrettyTable
x = PrettyTable()
-A better hosted document is hosted on `ReadTheDocument <http://ptable.readthedocs.org/>`_ .
+A better hosted document is hosted on `ReadTheDocument <http://ptable.readthedocs.org/>`_.
As command-line tool
@@ -74,7 +70,7 @@ This is an original function of PTable, can be used as ``ptable`` command:
ptable --csv somefile.csv
-or a unix style pipe:
+or a Unix style pipe:
.. code-block:: shell