123456789101112131415161718 |
- # -*- coding: utf-8 -*-
- # @Author: wangkun
- # @Time: 2022/8/10
- from main.feishu_lib import Feishu
- class Demo:
- @classmethod
- def demo1(cls):
- sheet = Feishu.get_values_batch("bot", "weiqun", "3cd128")
- # print(sheet[1])
- # 已下载表,最新一条视频抓取时间
- first_download_time = sheet[1][5]
- print(first_download_time)
- if __name__ == "__main__":
- Demo.demo1()
|