1234567891011121314151617181920212223242526 |
- #!/usr/bin/env python
- # -*- encoding: utf-8 -*-
- '''
- @File : kuaishou.py
- @Time : 2019/05/26 00:15:03
- @Author : Liuyuqi
- @Version : 1.0
- @Contact : liuyuqi.gov@msn.cn
- @License : (C)Copyright 2019
- @Desc : 快手工具类
- '''
- class Kuaishou():
- def __init__(self):
- self.baseUrl = "https://live.kuaishou.com"
- # baseUrl = "http://nginx.ok.yoqi.me:88"
- def login(self, parameter_list):
- pass
- def comment(self, parameter_list):
- pass
- def saveData(self):
- pass
|