You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
class SpyderController:
|
|
|
|
|
def getBilibiliVideoList(self,videoCount,threadCount,waitTime):
|
|
|
|
|
"""
|
|
|
|
|
整个爬虫的调用程序
|
|
|
|
|
:param videoCount: 爬取的视频数量,若不限制可设置为999
|
|
|
|
|
:param threadCount: 爬取的线程并发数量
|
|
|
|
|
:param waitTime:float: 每个线程的等待时间,单位秒(避免爬取过快)
|
|
|
|
|
:return: list[BilibiliVideo] 返回处理完成后的videoList
|
|
|
|
|
"""
|