文档转换程序

dever 940a885ef7 edit hace 6 años
admin 58dadc2b20 edit hace 6 años
conf ee115d8c58 edit hace 6 años
front f9cd9670ce edit hace 6 años
model 4efd360df3 edit hace 6 años
runtime ed7f6b0aaf edit hace 6 años
service 940a885ef7 edit hace 6 años
.gitignore 15486de874 edit hace 6 años
README.rst 5d6af877c6 edit hace 6 años
admin.py ed7f6b0aaf edit hace 6 años
convert.py b1f2fd64e6 edit hace 6 años
cron.py 4efd360df3 edit hace 6 años
front.py ed7f6b0aaf edit hace 6 años
install.py 41fc7dc4be edit hace 6 años
opt.py ed7f6b0aaf edit hace 6 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;