Metadata-Version: 1.2
Name: company-graph
Version: 0.0.9
Summary: Resolving Messy Company Names
Home-page: https://github.com/estasney/CompanyGraph
Author: Eric Stasney
Author-email: 16440579+estasney@users.noreply.github.com
License: MIT
Description: 
        ### CompanyGraph
        
        #### Install
        `pip install company-graph`
        
        #### Build
        ```python setup.py sdist bdist_wheel```
        
        ```twine upload dist/*```
        
        #### Usage
        ```python
        from company_graph import CompanyGraph
        
        cg = CompanyGraph()
        
        # Generalize company ids
        >>> cg.id2id(1697742)
        1063
        
        # Deterministic company id from string
        >>> cg('Cisco')
        1063
        >>> cg('Talos Group at Cisco')
        1063
        
        # Deterministic company name from id
        >>> cg(1063)
        'cisco'
        ```
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=3.6.0
