Hi i have this script but not working to get m3u8 link, i need help
Thanks
Code:import requests import re SOURCE_URL = "https://www.nowtv.com.tr/canli-yayin" response = requests.get(SOURCE_URL).content.decode() live_url = re.search(r"daiUrl : '(.*?)'", response).group(1) print(live_url)
		
			+ Reply to Thread
			
		
		
		
			
	
	
				Results 1 to 3 of 3
			
		- 
	
- 
	You'll get a warning but it should work regardlessCode:import requests import re SOURCE_URL = "https://www.nowtv.com.tr/canli-yayin" response = requests.get(SOURCE_URL, verify=False).content.decode() live_url = re.search(r"daiUrl : '(.*?)'", response).group(1) print(live_url) --[----->+<]>.++++++++++++.---.--------.
 [*drm mass downloader: widefrog*]~~~~~~~~~~~[*how to make your own mass downloader: guide*]
Similar Threads
- 
  please python scriptBy kayrak in forum Video Streaming DownloadingReplies: 7Last Post: 29th Nov 2024, 11:54
- 
  Need help for python scriptBy kayrak in forum Video Streaming DownloadingReplies: 1Last Post: 28th Nov 2024, 13:14
- 
  Need help for python scriptBy kayrak in forum Video Streaming DownloadingReplies: 3Last Post: 14th Mar 2024, 08:30
- 
  Need help for python scriptBy kayrak in forum Video Streaming DownloadingReplies: 2Last Post: 12th Feb 2024, 07:44
- 
  Need Python script for this streamBy kayrak in forum Video Streaming DownloadingReplies: 6Last Post: 17th Sep 2023, 13:10


 
		
		 View Profile
				View Profile
			 View Forum Posts
				View Forum Posts
			 Private Message
				Private Message
			 
 
			
			
 Quote
 Quote 
			





