Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 672 Bytes

README.md

File metadata and controls

32 lines (24 loc) · 672 Bytes

HoloPy

A python file that can receive streaming information from the official hololive website, https://schedule.hololive.tv/.

Example

import holopy

schedule = holopy.connect()

for date in schedule:
    print(date)
    for info in schedule[date]:
        print(info.getInfo())
    print()

Usage

old_connect() and old_beautify()

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)

connect()

Get whole information including thumbnails and urls, but slower than old style.