文档转换程序

dever c6bd11a3b8 edit %!s(int64=2) %!d(string=hai) anos
admin ffded38873 edit %!s(int64=5) %!d(string=hai) anos
conf 5f5da9eea2 edit %!s(int64=5) %!d(string=hai) anos
front 6fd64f32bd edit %!s(int64=5) %!d(string=hai) anos
model 4efd360df3 edit %!s(int64=6) %!d(string=hai) anos
runtime ed7f6b0aaf edit %!s(int64=6) %!d(string=hai) anos
service 36faf32449 更新 'service/convert.py' %!s(int64=3) %!d(string=hai) anos
.gitignore 15486de874 edit %!s(int64=6) %!d(string=hai) anos
README.rst 5d6af877c6 edit %!s(int64=6) %!d(string=hai) anos
admin.py e9b6c9ba08 edit~ %!s(int64=6) %!d(string=hai) anos
check.py c6bd11a3b8 edit %!s(int64=2) %!d(string=hai) anos
convert.py 90afbaf212 edit %!s(int64=6) %!d(string=hai) anos
cron.py e9b6c9ba08 edit~ %!s(int64=6) %!d(string=hai) anos
front.py e9b6c9ba08 edit~ %!s(int64=6) %!d(string=hai) anos
install.py 41fc7dc4be edit %!s(int64=6) %!d(string=hai) anos
master_cron.py c6bd11a3b8 edit %!s(int64=2) %!d(string=hai) anos
opt.py ed7f6b0aaf edit %!s(int64=6) %!d(string=hai) anos

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;