1234567891011121314151617181920212223 |
- # -*- coding: utf-8 -*-
- # @Author: wangkun
- # @Time: 2022/11/15
- from main.feishu_lib import Feishu
- class Demo:
- @classmethod
- def get_sheet(cls, log_type, crawler, sheetid):
- sheet = Feishu.get_values_batch(log_type, crawler, sheetid)
- print(sheet)
- @classmethod
- def test_list(cls):
- a = [el for el in [None, None]]
- if __name__ == '__main__':
- # Demo.get_sheet('recommend', 'zhufumao', '9GV1HK')
- Demo.test_list()
- pass
|