文档转换程序

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

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;