文档转换程序

dever 0b0a132faf edit hace 7 años
admin 8e071b8588 edit hace 7 años
conf 0389850bde edit hace 7 años
front b1f2fd64e6 edit hace 7 años
model ed7f6b0aaf edit hace 7 años
runtime ed7f6b0aaf edit hace 7 años
service 8f14935cc1 edit hace 7 años
.gitignore 15486de874 edit hace 7 años
README.rst 0b0a132faf edit hace 7 años
admin.py ed7f6b0aaf edit hace 7 años
convert.py b1f2fd64e6 edit hace 7 años
cron.py 5c34fad56b edit hace 7 años
front.py ed7f6b0aaf edit hace 7 años
install.py 41fc7dc4be edit hace 7 años
opt.py ed7f6b0aaf edit hace 7 años

README.rst

# 文件转换系统

安装

python install.py

前台:python front.py
后台:python admin.py


前台接口加密方式(php版本):
'''
$key = 'mo1209';
$nonce = time();
$token = '2018yubinwangfengywmo111';
$file = $_GET['file'];
$sign = $key . '&' . $token . '&' . $nonce . '&' . $file;
$sign = md5($sign);
echo $sign;
echo '
';


$url = 'http://118.24.49.69:8088/main/convert?key='.$key.'&nonce='.$nonce.'&signature='.$sign.'&file=' . $file;
echo '转换文件信息:' . $url . '
';

$url = 'http://118.24.49.69:8088/main/get?key='.$key.'&nonce='.$nonce.'&signature='.$sign.'&file=' . $file;
echo '获取文件信息:' . $url;

'''