Metadata-Version: 2.0
Name: py-cn-phone-area-code
Version: 1.0.5
Summary: Python lib , convert phone to area code , or find area phone code
Home-page: https://github.com/netroby/py-cn-phone-area-code
Author: ZhiFeng Hu
Author-email: huzhifeng@douyu.tv
License: MIT
Description-Content-Type: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python

# py-cn-phone-area-code


Python lib , convert phone to area code , or find area phone code


https://github.com/netroby/py-cn-phone-area-code

## Install

>From pip

https://pypi.python.org/pypi/py-cn-phone-area-code

```
pip install -U py-cn-phone-area-code
```

## Usage


to use it, see tests

```

from py_cn_phone_area_code import *

def main():
     print(find_area_by_phone("0595")) # == "泉州"
     print(find_phone_by_area("泉州")) #== "0595"

```



