Metadata-Version: 1.0
Name: percentcoding
Version: 0.1
Summary: percentcoding: fast percent encoding and decoding
Home-page: https://github.com/acg/python-percentcoding
Author: Alan Grow
Author-email: alangrow+percentcoding@gmail.com
License: https://github.com/acg/python-percentcoding/blob/master/LICENSE
Description: An example of percent encoding is the one defined for URIs in RFC 3986. Percent encoding can also be used for general purpose text escaping. Unlike C backslash escaping, which requires that every reserved character be explicitly named (eg. 0x0a corresponds to \n), percent encoding can easily accommodate an arbitrary set of reserved characters. For the specific case of URI escaping, the percentcoding library provides a 10x faster drop-in replacement for the urllib.quote, urllib.unquote, urllib.quote_plus, and urllib.unquote_plus functions.
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Topic :: Text Processing :: General
Classifier: Topic :: Text Processing :: Filters
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Operating System :: OS Independent
