Metadata-Version: 1.0
Name: nameparts
Version: 0.5.6
Summary: Takes a full human name and splits it into individual parts
Home-page: https://github.com/polera/nameparts
Author: James Polera
Author-email: james@uncryptic.com
License: BSD
Description: nameparts
        =========
        [![Build Status](https://secure.travis-ci.org/polera/nameparts.png)](http://travis-ci.org/polera/nameparts)
        
        nameparts is a Python module that I wrote to address a problem splitting full names into individual
        parts (first, middle, last, etc.)
        
        You can use it like this:
        
              >>> from nameparts import Name
              >>> n = Name("Thurston Howel III")
              >>> n.first_name
              'Thurston'
              >>> n.last_name
              'Howel'
              >>> n.as_dict
              {'first_name': 'Thurston', 'last_name': 'Howel', \
                'middle_name': None, 'suffix': None, 'generation': 'III', \
                'salutation': None}
              >>> n = Name("Smith, John Paul")
              >>> n.first_name
              'John'
              >>> n.last_name
              'Smith'
              >>> n.middle_name
              'Paul'
        
        Installing
        ----------
        From source:
        
               python setup.py install
        
        via pip:
        
               pip install nameparts
        
        nameparts runs on CPython 2.6, 2.7, 3.2 and PyPy
        
        License
        -------
        nameparts is released under the BSD license.
        
        Comments/Questions/Improvements
        -------------------------------
        Any of the above are welcome.  Contact me at the email address in my profile.
        
Keywords: name,text,processing
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
