文档转换程序

dever c6bd11a3b8 edit 2 سال پیش
admin ffded38873 edit 5 سال پیش
conf 5f5da9eea2 edit 5 سال پیش
front 6fd64f32bd edit 5 سال پیش
model 4efd360df3 edit 6 سال پیش
runtime ed7f6b0aaf edit 6 سال پیش
service 36faf32449 更新 'service/convert.py' 3 سال پیش
.gitignore 15486de874 edit 6 سال پیش
README.rst 5d6af877c6 edit 6 سال پیش
admin.py e9b6c9ba08 edit~ 6 سال پیش
check.py c6bd11a3b8 edit 2 سال پیش
convert.py 90afbaf212 edit 6 سال پیش
cron.py e9b6c9ba08 edit~ 6 سال پیش
front.py e9b6c9ba08 edit~ 6 سال پیش
install.py 41fc7dc4be edit 6 سال پیش
master_cron.py c6bd11a3b8 edit 2 سال پیش
opt.py ed7f6b0aaf edit 6 سال پیش

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;