Metadata-Version: 2.1
Name: comnamepy
Version: 1.1.8
Summary: Get the company name from the domain.
Home-page: https://github.com/heku777/comnamepy
Author: heku777
Author-email: chotips08@gmail.com
Maintainer: heku777
Maintainer-email: chotips08@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: beautifulsoup4 (==4.9.3)
Requires-Dist: python-whois (==0.7.3)
Requires-Dist: requests (==2.25.1)

# comnamepy

Get the company name from the domain.

## GitHub

```
https://github.com/heku777/comnamepy
```

# Installation

## from pypi

```
pip install comnamepy
```

## from GitHub

```
pip install git+https://github.com/heku777/comnamepy
```

## clone this repository

```
git clone git@github.com:heku777/comnamepy.git
```


# Upgrade

```
pip install --upgrade comnamepy
```

# How to use

## Import

```
from comnamepy import get_comname
```

### Get the company name in the best way

```
get_comname.get_company_name('domain')
```

### Get the company name from the whois

```
get_comname.whois_search_company('domain')
```

### Get the company name in scraping

```
get_comname.get_title('domain')
```




