summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo <hugovk@users.noreply.github.com>2017-11-26 12:17:54 +0200
committerGitHub <noreply@github.com>2017-11-26 12:17:54 +0200
commit7fb907e38fa0ff340319a94f6190a5e8758da08d (patch)
treeaad000dc7b79cae7c7254c634db0a32b8c3a35b6
parent4676e41472725b03badcd9517f5aa2c2a41c1ebf (diff)
downloadpython-prettytable-ptable-7fb907e38fa0ff340319a94f6190a5e8758da08d.tar.gz
Remove broken downloads badge
See https://github.com/badges/shields/issues/716. Plus fix some minor typos.
-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