mirror of
https://github.com/wbt5/real-url.git
synced 2025-06-16 15:59:57 +08:00
43 lines
1.1 KiB
Python
43 lines
1.1 KiB
Python
# 我秀直播:https://www.woxiu.com/
|
||
|
||
import requests
|
||
|
||
|
||
class WoXiu:
|
||
|
||
def __init__(self, rid):
|
||
self.rid = rid
|
||
|
||
def get_real_url(self):
|
||
headers = {
|
||
'User-Agent': 'Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, '
|
||
'like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1 '
|
||
}
|
||
url = f'https://m.woxiu.com/index.php?action=M/Live&do=LiveInfo&room_id={self.rid}'
|
||
with requests.Session() as s:
|
||
res = s.get(url, headers=headers)
|
||
try:
|
||
res = res.json()
|
||
except Exception:
|
||
raise Exception('直播间不存在')
|
||
status = res['online']
|
||
if status:
|
||
live_stream = res['live_stream']
|
||
return live_stream
|
||
else:
|
||
raise Exception('未开播')
|
||
|
||
|
||
def get_real_url(rid):
|
||
try:
|
||
wx = WoXiu(rid)
|
||
return wx.get_real_url()
|
||
except Exception as e:
|
||
print('Exception:', e)
|
||
return False
|
||
|
||
|
||
if __name__ == '__main__':
|
||
r = input('请输入我秀直播房间号:\n')
|
||
print(get_real_url(r))
|