ebsco / ebscopy

The official Python wrapper for the EBSCO Discovery Service API
GNU General Public License v3.0
15 stars 5 forks source link

Allow multiple sessions in one authentication #1

Closed jessejensen closed 9 years ago

jessejensen commented 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

jessejensen commented 9 years ago

Basic code works.

Use cases:

Need to update:

Need to create:

jessejensen commented 9 years ago

all done