Metadata-Version: 1.0
Name: textclean
Version: 0.4
Summary: Handle the very famous decoding - encoding errors in Python !
Home-page: UNKNOWN
Author: Vikas Bharti
Author-email: vikas.bharti.pro@gmail.com
License: MIT
Description: * Python package for cleaning text, Handle Decoding and Encoding errors for all formats.
        
        * Usage
        	
        	Place bad text in a file and read it in python source and clean it using textclean.clean() function.
        
        * test.py
        
        	from textclean.textclean import textclean
        
        	text = open("badtext.txt").read()
        	
        	cleaned_text = textclean.clean(text)
        	
        	print cleaned_text
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
