代码拉取完成,页面将自动刷新
同步操作将从 qd-today/qd 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
# vim: set et sw=4 ts=4 sts=4 ff=unix fenc=utf8:
# Author: Binux<i@binux.me>
# http://binux.me
# Created on 2014-08-18 12:17:21
import sys
import json
import logging
import functools
from tornado.ioloop import IOLoop
from libs.fetcher import Fetcher
def usage():
print("{} tpl.har [--key=value] [env.json]".format(sys.argv[0]))
sys.exit(1)
if __name__ == '__main__':
if len(sys.argv) < 3:
usage()
# load tpl
tpl_file = sys.argv[1]
try:
tpl = json.load(open(tpl_file,encoding='utf-8'))
except Exception as e:
logging.error(e)
usage()
# load env
variables = {}
env = {}
env_file = None
for each in sys.argv[2:]:
if each.startswith('--'):
key, value = each.split('=', 1)
key = key.lstrip('--')
variables[key] = value
else:
env_file = each
if env_file:
try:
env = json.load(open(env_file,encoding='utf-8'))
except Exception as e:
logging.error(e)
usage()
if 'variables' not in env or not isinstance(env['variables'], dict)\
or 'session' not in env:
env = {
'variables': env,
'session': [],
}
env['variables'].update(variables)
# do fetch
ioloop = IOLoop.instance()
def ioloop_stop(x):
ioloop.stop()
fetcher = Fetcher()
result = fetcher.do_fetch(tpl, env)
ioloop.add_future(result, ioloop_stop)
ioloop.start()
try:
result = result.result()
except Exception as e:
print('qiandao failed!', e)
else:
print('qiandao success!', result.get('variables', {}).get('__log__', '').replace('\\r\\n','\r\n'))
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。