This is a small package that makes it easy to access the PDAP API.
It is utilized in several other PDAP repositories
Utilizes an aiohttp
client session, which can either be passed into the constructor, or automatically generated when using the AccessManager as a context manager.
from pdap_access_manager import AccessManager
async with AccessManager("email", "password") as am:
await am.make_request(RequestInfo(...))