我需要使用脚本语言(如python或shell
)获取实时流URL我可以通过在Firefox上使用网络监视器等工具获取网址,但我需要能够通过脚本获取它
答案 0 :(得分:1)
快速查看requests文档:
from contextlib import closing
with closing(requests.get('http://rt.com/on-air/', stream=True)) as r:
# Do things with the response here.
如果没有用,请检查another way:
import requests
r = requests.get('http://rt.com/on-air/', stream=True)
for line in r.iter_lines():
# filter out keep-alive new lines
if line:
# do some sort of things
答案 1 :(得分:0)
您需要在页面源中识别它。它与使用FF的网络工具几乎相同。 对于python,您可以使用beautifulsoup来解析页面并从中获取更多信息...或简单的正则表达式。