smartypants

Python with the SmartyPants


License
BSD-3-Clause
Install
pip install smartypants==2.0.1

Documentation

smartypants

smartypants is a Python fork of SmartyPants.

Important

As of 2016-12-28, smartypants is looking for new maintainer to take over, please contact project owner on Bitbucket.

Installation

To install it:

pip install smartypants

Quick usage

To use it as a module:

import smartypants

text = '"SmartyPants" is smart, so is <code>smartypants</code> -- a Python port'
print(smartypants.smartypants(text))

To use the command-line script smartypants:

echo '"SmartyPants" is smart, so is <code>smartypants</code> -- a Python port' | smartypants

Both produce:

&#8220;SmartyPants&#8221; is smart, so is <code>smartypants</code> &#8212; a Python port

More information