A python file that can receive streaming information from the official hololive website, https://schedule.hololive.tv/.
import holopy
schedule = holopy.connect()
for date in schedule:
print(date)
for info in schedule[date]:
print(info.getInfo())
print()
Get information except any thumbnail and url, but faster than normal connect function.
import holopy
import pprint
con = holopy.old_connect()
schedule = holopy.old_beautify(con)
pprint.pprint(schedule)
Get whole information including thumbnails and urls, but slower than old style.