Skip to content
/ holopy Public

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

Notifications You must be signed in to change notification settings

pezluna/holopy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

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.

About

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages