def get_library(): #Eventually I'd like to have a switch here for other options ... from mendeley import client_library cl = client_library.UserLibrary(verbose=True) return cl
# -*- coding: utf-8 -*- """ TODO: Finish this with a hook into the client library """ from mendeley import client_library temp = client_library.UserLibrary(verbose=True)
def test_startup(): try: lib = client_library.UserLibrary() except Exception: assert False