Metadata-Version: 1.1
Name: mobile-address
Version: 0.0.1
Summary: A simple app for searching mobile address.
Home-page: https://github.com/whatwewant/mobile-address
Author: Cole Smith
Author-email: tobewhatwewant@gmail.com
License: BSD License
Description: # 手机归属地查询
        
        ## Installation
        * `pip install mobile-address`
        
        ## How-to
        
        ```bash
        # Example 1
        In [1]: from mobile_address import MobileAddress
        In [2]: ma = MobileAddress('15764235174')
        In [3]: ma.get_full()
        Out [1]:
        {
        'mts': '1576423',
        'province': '山东',
        'catName': '中国移动',
        'telString': '15764235174',
        'areaVid': '30501',
        'ispVid': '3236139',
        'carrier': '山东移动'
        }
        
        # Example 2
        In [1]: from mobile_address import get_address
        In [2]: get_address('15764231503')
        Out [1]:
        {
        'mts': '1576423',
        'province': '山东',
        'catName': '中国移动',
        'telString': '15764235174',
        'areaVid': '30501',
        'ispVid': '3236139',
        'carrier': '山东移动'
        }
        
        # Example 3
        In [1]: from mobile_address import get_province
        In [2]: get_province('15764235174')
        Out [1]: '山东'
        
        # Example 4
        In [1]: from mobile_address import get_carrier
        In [2]: get_carrier('15764235174')
        Out [1]: '山东移动'
        ```
        
        ## History
        
        ### 2016-02-12
        * version 0.0.1
        * 使用淘宝Web API
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
