demo.py 420 B

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