Metadata-Version: 2.1
Name: company-graph
Version: 0.4.1
Summary: Resolving Messy Company Names
Home-page: https://github.com/estasney/CompanyGraph
Author: Eric Stasney
Author-email: 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.cg 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
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
