mirror of
https://github.com/RYDE-WORK/MediaCrawler.git
synced 2026-02-04 15:43:15 +08:00
21 lines
339 B
Python
21 lines
339 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from base.base_crawler import AbstractLogin
|
|
|
|
|
|
class KuaishouLogin(AbstractLogin):
|
|
def __init__(self):
|
|
pass
|
|
|
|
async def begin(self):
|
|
pass
|
|
|
|
async def login_by_qrcode(self):
|
|
pass
|
|
|
|
async def login_by_mobile(self):
|
|
pass
|
|
|
|
async def login_by_cookies(self):
|
|
pass
|