demo.py 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. # -*- coding: utf-8 -*-
  2. # @Author: wangkun
  3. # @Time: 2022/11/23
  4. import time
  5. import requests
  6. from main.common import Common
  7. from main.feishu_lib import Feishu
  8. class Demo:
  9. @classmethod
  10. def get_sheet(cls, log_type, crawler, sheetid):
  11. sheet = Feishu.get_values_batch(log_type, crawler, sheetid)
  12. print(sheet)
  13. @classmethod
  14. def publish_time(cls):
  15. time1 = '发布时间:2022年11月20日'
  16. time2 = time1.replace('发布时间:', '').replace('年', '/').replace('月', '/').replace('日', '')
  17. print(time2)
  18. time3 = int(time.mktime(time.strptime(time2, "%Y/%m/%d")))
  19. print(time3)
  20. @classmethod
  21. def get_video_url(cls, log_type, video_id):
  22. url = 'https://haokan.hao123.com/v?'
  23. params = {
  24. 'vid': video_id,
  25. '_format': 'json',
  26. }
  27. headers = {
  28. 'Accept': '*/*',
  29. 'Accept-Encoding': 'gzip, deflate, br',
  30. 'Accept-Language': 'zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6',
  31. 'Cache-Control': 'no-cache',
  32. 'Connection': 'keep-alive',
  33. 'Content-Type': 'application/x-www-form-urlencoded',
  34. 'Cookie': 'PC_TAB_LOG=video_details_page; COMMON_LID=b0be69dd9fcae328d06935bd40f615cd; Hm_lvt_4aadd610dfd2f5972f1efee2653a2bc5=1669029953; hkpcvideolandquery=%u82CF%u5DDE%u6700%u5927%u7684%u4E8C%u624B%u8F66%u8D85%u5E02%uFF0C%u8F6C%u4E00%u8F6C%u91CC%u8FB9%u8C6A%u8F66%u592A%u591A%u4E86%uFF0C%u4EF7%u683C%u66F4%u8BA9%u6211%u5403%u60CA%uFF01; Hm_lpvt_4aadd610dfd2f5972f1efee2653a2bc5=1669875695; ariaDefaultTheme=undefined; reptileData=%7B%22data%22%3A%22636c55e0319da5169a60acec4a264a35c10862f8abfe2f2cc32c55eb6b0ab4de0efdfa115ea522d6d4d361dea07feae2831d3e2c16ed6b051c611ffe5aded6c9f852501759497b9fbd2132a2160e1e40e5845b41f78121ddcc3288bd077ae4e8%22%2C%22key_id%22%3A%2230%22%2C%22sign%22%3A%22f6752aac%22%7D; RT="z=1&dm=hao123.com&si=uc0q7wnm4w&ss=lb4otu71&sl=j&tt=av0&bcn=https%3A%2F%2Ffclog.baidu.com%2Flog%2Fweirwood%3Ftype%3Dperf&ld=1rdw&cl=7v6c"',
  35. 'Pragma': 'no-cache',
  36. 'Referer': 'https://haokan.hao123.com/v?vid=10623278258033022286&pd=pc&context=',
  37. 'sec-ch-ua': '"Microsoft Edge";v="107", "Chromium";v="107", "Not=A?Brand";v="24"',
  38. 'sec-ch-ua-mobile': '?0',
  39. 'sec-ch-ua-platform': '"macOS"',
  40. 'Sec-Fetch-Dest': 'empty',
  41. 'Sec-Fetch-Mode': 'cors',
  42. 'Sec-Fetch-Site': 'same-origin',
  43. 'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36 Edg/107.0.1418.62',
  44. }
  45. r = requests.get(url=url, headers=headers, params=params)
  46. if r.status_code != 200:
  47. Common.logger(log_type).info(f'get_video_url_response:{r.text}')
  48. elif r.json()['errno'] != 0 or len(r.json()['data']) == 0:
  49. Common.logger(log_type).info(f'get_video_url_response:{r.json()}')
  50. else:
  51. clarityUrl = r.json()['data']['apiData']['curVideoMeta']['clarityUrl']
  52. video_url = r.json()['data']['apiData']['curVideoMeta']['clarityUrl'][len(clarityUrl) - 1]['url']
  53. return video_url
  54. user_pcursor = ''
  55. user_cnt = []
  56. @classmethod
  57. def get_follow_users(cls, log_type):
  58. while True:
  59. url = "https://www.kuaishou.com/graphql"
  60. payload = {
  61. "operationName": "visionProfileUserList",
  62. "variables": {"ftype": 1, "pcursor": str(cls.user_pcursor)},
  63. "query": "query visionProfileUserList($pcursor: String, $ftype: Int) "
  64. "{\n visionProfileUserList(pcursor: $pcursor, ftype: $ftype) "
  65. "{\n result\n fols {\n user_name\n headurl\n "
  66. "user_text\n isFollowing\n user_id\n __typename\n }\n"
  67. " hostName\n pcursor\n __typename\n }\n}\n"
  68. }
  69. headers = {
  70. 'accept': '*/*',
  71. 'Accept-Encoding': 'gzip, deflate, br',
  72. 'Accept-Language': 'zh-CN,zh;q=0.9,en;q=0.8',
  73. 'Cache-Control': 'no-cache',
  74. 'Connection': 'keep-alive',
  75. 'Content-Length': '382',
  76. 'content-type': 'application/json',
  77. 'Cookie': 'kpf=PC_WEB; '
  78. 'kpn=KUAISHOU_VISION; '
  79. 'clientid=3; '
  80. 'did=web_260fc6cc87668951b745d0aa536b6c45; '
  81. 'client_key=65890b29; '
  82. 'userId=1921947321; '
  83. 'kuaishou.server.web_st=ChZrdWFpc2hvdS5zZXJ2ZXIud2ViLnN0EqABeKWnZv84JvnYIdwhX6o5jaBjDblgvsn'
  84. '7o8XEAvihFCj1P-69BK0qcjnCMbpUUmfT7pqlsn0KVsuK5789LXjySbqdee8yKhNhM-kttccnRokJM7BbSl7VzViTd'
  85. 'afHKDM3UEh1oJKy5s_iMUHbXo6wHSbMjdFYP6QsSRf7xU9KA4IC-uNX9ZcBj39OuCUCjlQFOXLjJV8mYAcBt1BqrIT'
  86. 'VhhoS6uws2LN-siMyPVYdMaXTUH7FIiCEI0MRi2vzOYp7_RSnHX_7--xNCDYQVUo05gjITkWaGCgFMAE; '
  87. 'kuaishou.server.web_ph=f2b6b9531d9ade009d5dccf1351ae7d4c7d2',
  88. 'Pragma': 'no-cache',
  89. 'Referer': 'https://www.kuaishou.com/profile/3xbp7922t5sgcpq',
  90. 'sec-ch-ua': '"Not?A_Brand";v="8", "Chromium";v="108", "Google Chrome";v="108"',
  91. 'sec-ch-ua-mobile': '?0',
  92. 'sec-ch-ua-platform': '"macOS"',
  93. 'Sec-Fetch-Dest': 'empty',
  94. 'Sec-Fetch-Mode': 'cors',
  95. 'Sec-Fetch-Site': 'same-origin',
  96. 'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 '
  97. '(KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36'
  98. }
  99. r = requests.post(url=url, headers=headers, json=payload)
  100. fols = r.json()['data']['visionProfileUserList']['fols']
  101. cls.user_pcursor = r.json()['data']['visionProfileUserList']['pcursor']
  102. if len(fols) == 0:
  103. print(f'到底啦~\n共关注 {len(cls.user_cnt)} 人\n')
  104. cls.user_pcursor = 0
  105. cls.user_cnt = []
  106. return
  107. for i in range(len(fols)):
  108. user_name = fols[i]['user_name']
  109. user_id = fols[i]['user_id']
  110. cls.user_cnt.append(user_id)
  111. print(f'user_name:{user_name}')
  112. print(f'user_id:{user_id}')
  113. print('\n')
  114. @classmethod
  115. def get_video_feeds(cls, log_type, out_id):
  116. url = 'https://www.kuaishou.com/graphql'
  117. headers = {
  118. 'accept': '*/*',
  119. 'Accept-Encoding': 'gzip, deflate, br',
  120. 'Accept-Language': 'zh-CN,zh;q=0.9,en;q=0.8',
  121. 'Cache-Control': 'no-cache',
  122. 'content-type': 'application/json',
  123. 'Cookie': 'kpf=PC_WEB; kpn=KUAISHOU_VISION; clientid=3; did=web_260fc6cc87668951b745d0aa536b6c45; client_key=65890b29; userId=1921947321; kuaishou.server.web_st=ChZrdWFpc2hvdS5zZXJ2ZXIud2ViLnN0EqABwCuiLLMSOvJtdcmO-XD0RHf-lRaR--1o0MNMhnsdl1xRZOfkHgEnFM1GNwk-pNxGwIXupJiGfL6JC-dsw6pNVRfW9eiCMUiFfVSS8bbVuBhSnh4wlJc6e2wy6FeYXC4V2WUQ7CKlUc_1sESmPlYq1D2JV7eKyNJP9VVnZ1i_y31SnTnAx2DpncW8UNV2qv_bjTxokg4rZRPnBBRCfAAhShoStEyT9S95saEmiR8Dg-bb1DKRIiDJ8NOu7QSy1FkD3GwzpAURUTTYYTuENNqldrStQMfWxygFMAE; kuaishou.server.web_ph=f80aff104d1749fbb5b6760aee76d5b640e2',
  124. 'Pragma': 'no-cache',
  125. 'Referer': 'https://www.kuaishou.com/profile/'+str(out_id),
  126. 'sec-ch-ua': '"Not?A_Brand";v="8", "Chromium";v="108", "Google Chrome";v="108"',
  127. 'sec-ch-ua-mobile': '?0',
  128. 'sec-ch-ua-platform': '"macOS"',
  129. 'Sec-Fetch-Dest': 'empty',
  130. 'Sec-Fetch-Mode': 'cors',
  131. 'Sec-Fetch-Site': 'same-origin',
  132. 'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36',
  133. }
  134. payload = {
  135. "operationName": "visionProfilePhotoList",
  136. "variables": {
  137. "userId": str(out_id),
  138. "pcursor": "",
  139. "page": "profile"
  140. },
  141. "query": "fragment photoContent on PhotoEntity {\n id\n duration\n caption\n originCaption\n likeCount\n viewCount\n realLikeCount\n coverUrl\n photoUrl\n photoH265Url\n manifest\n manifestH265\n videoResource\n coverUrls {\n url\n __typename\n }\n timestamp\n expTag\n animatedCoverUrl\n distance\n videoRatio\n liked\n stereoType\n profileUserTopPhoto\n musicBlocked\n __typename\n}\n\nfragment feedContent on Feed {\n type\n author {\n id\n name\n headerUrl\n following\n headerUrls {\n url\n __typename\n }\n __typename\n }\n photo {\n ...photoContent\n __typename\n }\n canAddComment\n llsid\n status\n currentPcursor\n tags {\n type\n name\n __typename\n }\n __typename\n}\n\nquery visionProfilePhotoList($pcursor: String, $userId: String, $page: String, $webPageArea: String) {\n visionProfilePhotoList(pcursor: $pcursor, userId: $userId, page: $page, webPageArea: $webPageArea) {\n result\n llsid\n webPageArea\n feeds {\n ...feedContent\n __typename\n }\n hostName\n pcursor\n __typename\n }\n}\n"
  142. }
  143. r = requests.post(url=url, headers=headers, json=payload)
  144. feeds = r.json()['data']['visionProfilePhotoList']['feeds']
  145. if len(feeds) == 0:
  146. Common.logger(log_type).info('到底啦~\n')
  147. return
  148. for i in range(len(feeds)):
  149. # 视频标题过滤话题及处理特殊字符
  150. kuaishou_title = feeds[i]['photo']["caption"]
  151. title_split1 = kuaishou_title.split(" #")
  152. if title_split1[0] != "":
  153. title1 = title_split1[0]
  154. else:
  155. title1 = title_split1[-1]
  156. title_split2 = title1.split(" #")
  157. if title_split2[0] != "":
  158. title2 = title_split2[0]
  159. else:
  160. title2 = title_split2[-1]
  161. title_split3 = title2.split("@")
  162. if title_split3[0] != "":
  163. title3 = title_split3[0]
  164. else:
  165. title3 = title_split3[-1]
  166. video_title = title3.strip()\
  167. .replace("\n", "").replace("/", "").replace("快手", "").replace(" ", "").replace(" ", "")\
  168. .replace("&NBSP", "").replace("\r", "").replace("#", "").replace(".", "。").replace("\\", "")\
  169. .replace(":", "").replace("*", "").replace("?", "").replace("?", "").replace('"', "")\
  170. .replace("<", "").replace(">", "").replace("|", "").replace("@", "")[:40]
  171. hevc = feeds[i]['photo']['videoResource']['hevc']
  172. if hevc == '':
  173. video_url = feeds[i]['photo']['videoResource']['h264']['adaptationSet'][0]['representation'][0]['url']
  174. else:
  175. video_url = feeds[i]['photo']['videoResource']['hevc']['adaptationSet'][0]['representation'][0]['url']
  176. print(f'video_title:{video_title}')
  177. print(f'video_url:{video_url}')
  178. print('\n')
  179. if __name__ == '__main__':
  180. # Demo.get_sheet('demo', 'haokan', '7f05d8')
  181. # Demo.publish_time()
  182. # Demo.get_video_url('demo', '10377041690614321392')
  183. # Demo.get_follow_users('demo')
  184. # Demo.get_video_feeds('demo', '3xfr3gqnxmk92y2')
  185. print(Feishu.get_values_batch('log_type', 'haokan', '5LksMx')[0][0])
  186. print(type(Feishu.get_values_batch('log_type', 'haokan', '5LksMx')[0][0]))
  187. pass