在nodejs文档中,我遇到了process.stdin的多个事件名称,如“可读”,“数据”,“结束”等。
例如:
#!/usr/bin/env python
#-*- coding: utf-8 -*-
import urllib2,urllib,re
import os
#os.environ["REMOTE_ADDR"]
#print os.environ["REMOTE_ADDR"]
url='http://www.atv.com.tr/webtv/secure?url=http://trkvz-live.ercdn.net/atvhd/atvhd.m3u8&'
req = urllib2.Request(url)
req.add_header('User-Agent', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.0.3) Gecko/2008092417 Firefox/3.0.3')
response = urllib2.urlopen(req)
link=response.read()
response.close()
match=re.compile('url":"(.*?)"').findall(link)
for m3u8 in match:
m3u8=m3u8.replace('\u0026','&')
print m3u8
req = urllib2.Request(m3u8)
req.add_header('User-Agent', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.0.3) Gecko/2008092417 Firefox/3.0.3')
response = urllib2.urlopen(req)
link=response.read()
response.close()
line=link
line=line.replace('atvhd_','http://trkvz-live.ercdn.net/atvhd/atvhd_')
print line
exit()
我在https://nodejs.org/api/process.html上找到了这个。
在哪里可以找到所有内置事件名称的列表以及解释时间?
答案 0 :(得分:2)
事件文档遍布node.js文档。例如,https://nodejs.org/api/events.html
如果您想在特定模块中专门查找,例如http
模块,https://nodejs.org/api/http.html#http_class_http_clientrequest
您还可以查看上面http
有自己的事件集的位置。