文档转换程序

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

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;