Metadata-Version: 1.1
Name: CallerLookup
Version: 1.2.92
Summary: Reverse Caller Identity
Home-page: http://github.com/scottphilip/caller-lookup
Author: Scott Philip
Author-email: sp@scottphilip.com
License: GNU (v3) License
Description: .. image:: https://travis-ci.org/scottphilip/caller-lookup.svg?branch=master
           :target: https://travis-ci.org/scottphilip/caller-lookup
        
        Caller Lookup
        =============
        
        Wrapper for TrueCaller
        
        Installation Instructions
        -------------------------
        
        ::
        
            pip install CallerLookup
        
        Usage
        -----
        
        .. code:: python
        
            with CallerLookup(username="username@gmail.com",
                              password="password",
                              secret="secret") as caller_lookup:
        
                result = caller_lookup.search(number="0202-456-1111", region_dial_code="1")
                print(str(result))
        
        Output:
        
        .. code:: json
        
            {
                "IS_VALID": True,
                "SCORE": 80.0,
                "RESULT": "SUCCESS",
                "REGION_DIAL_CODE": "1",
                "ADDRESS": "1600PennsylvaniaAveNW,
                TheWhiteHouse,
                Downtown,
                Washington,
                DC20006",
                "NUMBER_E164": "+12024561111",
                "REGION": "US",
                "NUMBER_NATIONAL": "(202)456-1111",
                "TIME_TAKEN": 0.701,
                "NAME": "WhiteHouse"
            }
        
        Dependencies
        ------------
        
        PyPI Packages:
        
            -  GoogleToken
            -  phonenumbers
            -  cryptography
            -  appdirs
            -  requests
            -  python-dateutil
        
        Testing
        -------
        
        Tested on Python:
        
            - 2.7
            - 3.6
        
        Credits
        -------
        
        Scott Philip
        
        Berlin, Germany
        
        Licence
        -------
        
        GNU General Public License (Version 3, 29 June 2007)
        
        CallerLookup Copyright © 2017 Scott Philip
        
Keywords: Reverse Caller Identity,TrueCaller
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
