Get TikTok live information without event
Is there a way to get live information but with no event? Like for example a function to get the numbers of like or something? For example:
from TikTokLive import TikTokLiveClient
from TikTokLive.events import ConnectEvent, CommentEvent
# Create the client
client: TikTokLiveClient = TikTokLiveClient(unique_id="@isaackogz")
if __name__ == '__main__':
# -- Exmaples --
client.getLikes() # get the numbers of likes
client.getViewvers() # get the numbers of people who are watching the live
client.getGift("Rose") # return number of roses
You can grab room info which should have all this.
How? Because when i check the documentation i only see events. By the way i wanna get live information this way so i can just make an api to collect data, for example http://localhost?username=@isaackogz and it returns json data with live information.
https://isaackogan.github.io/TikTokLive/TikTokLive.client.web.routes.html
can you show me an example?
No