Metadata-Version: 2.1
Name: BounceClassifier
Version: 0.3.3
Summary: Classify email content by key-word mapping
Home-page: https://github.com/Weizhang2017/Email-tools/tree/master/Bounce_classifier
Author: Zhang Wei
Author-email: zhangw1.2011@gmail.com
License: UNKNOWN
Description: # Bounce Classification based on email text
        
        ### Sample usage:
        
        ```python
        with open('sample.txt','r') as f:
        	email_text = f.read()
        bc = Bounce_classifier(email_text)
        # if the email text contains a diagonostic code, use diagonostic_code()
        dia_code, classification = bc.diagonostic_code()
        # if the email text does not contains a diagonostic code, use no_diagonostic_code()
        classification = bc.no_diagonostic_code()
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
