Replies: 1 comment
|
In the current Python API, retrieve the session and read its session = await session_service.get_session(
app_name=app_name,
user_id=user_id,
session_id=session_id,
)
if session is not None:
for event in session.events:
print(event)To limit the history, pass
|
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I was following the official Python API reference and tried to implement the list_events() functions but turns out the code base does not have a list_events() function implemented in any of the session classes.
Has this function been deprecated?
All reactions