Closed jessejensen closed 9 years ago
Rather than having a Connection object that does authentication then creates a session, there should be multiple Session objects that implicitly create and share connections as needed.
s1 = ebscopy.Session() s2 = ebscopy.Session() r1 = s1.search("blue") r2 = s2.search("red") s1.disconnect s2.disconnect
Basic code works.
Use cases:
Need to update:
Need to create:
all done
Rather than having a Connection object that does authentication then creates a session, there should be multiple Session objects that implicitly create and share connections as needed.
s1 = ebscopy.Session() s2 = ebscopy.Session() r1 = s1.search("blue") r2 = s2.search("red") s1.disconnect s2.disconnect