You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-2Lines changed: 9 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,5 @@
1
+
from pdap_access_manager.models.auth import AuthInfo
2
+
1
3
# Access-Manager
2
4
3
5
This is a small package that makes it easy to access the PDAP API.
@@ -10,12 +12,17 @@ It is utilized in several other PDAP repositories
10
12
Utilizes an `aiohttp` client session, which can either be passed into the constructor, or automatically generated when using the AccessManager as a context manager.
11
13
12
14
```python
13
-
from pdap_access_manager importAccessManager
15
+
from pdap_access_manager.access_manager.async_importAccessManagerAsync
14
16
from pdap_access_manager.models.request import RequestInfo
17
+
from pdap_access_manager.models.auth import AuthInfo
15
18
from pdap_access_manager.enums import DataSourcesNamespaces, RequestType
16
19
17
20
asyncdefmain():
18
-
asyncwith AccessManager("email", "password") as am:
0 commit comments