Metadata-Version: 1.1
Name: bh_oauth
Version: 2.0.0
Summary: bullhorn.com REST API Client
Home-page: https://github.com/narunask/BH_OAuth
Author: Narūnas Krasauskas
Author-email: narun4sk@gmail.com
License: UNKNOWN
Download-URL: https://github.com/narunask/BH_OAuth/archive/master.zip
Description: bullhorn.com REST API Client
        ----------------------------
        
        *Dependencies*:
        
        - `requests`_ - HTTP for Humans
        
        *Quick Example*::
        
            auth = dict(
                client = "Bullhorn OAuth Client ID",
                secret = 'Bullhorn OAuth Client Secret',
                username = "Bullhorn Username",
                password = "Bullhorn Password")
        
            bhr = BHRest(**auth)
            bhr._auth_url = "https://auth9.bullhornstaffing.com/oauth"
            bhr._rest_url = "https://rest9.bullhornstaffing.com/rest-services"
        
            print bhr.access_token
            print bhr.find(query="+12345678")
        
        *Features*:
        
        - Automatically refresh `rest_token/url` if `access_token` has expired.
        - Search the following entity types given a string containing search terms.
        
        .. _requests: http://docs.python-requests.org/en/master/user/install/#install
        
Keywords: bullhorn,rest,client
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
