Closed EasyChris closed 3 years ago
oh! just use print(video.video_files)
while status:
for video in search_videos_page.entries:
print(video.video_files)
if not search_videos_page.has_next:
break
is_go = int(input("1 go ahead,0 stop") or "1")
if is_go == 0:
break
else:
search_videos_page = search_videos_page.get_next_page()
https://github.com/salvoventura/pypexels/blob/master/docs/make.bat
this demo show to get photo or video page url
but, i want get download link
https://www.pexels.com/zh-cn/api/documentation/#videos-search
in pexels docs, i can get
video_files => link
this link can download videohow can i get
video_files => link
by pypexels?