Metadata-Version: 2.1
Name: company-graph
Version: 0.5.3
Summary: Resolving Messy Company Names
Home-page: https://github.com/estasney/CompanyGraph
Author: Eric Stasney
Author-email: estasney@users.noreply.github.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.7.0
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: networkx (>=2.6)


### 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'
```

