分类 VPS 下的文章

import json, time, requests, re
from bs4 import BeautifulSoup
headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 6.2; WOW64; rv:38.0) Gecko/20100101 Firefox/38.0','Accept':'*/*'}
def xyp(id='210'):
    url='http://xx.com/audio_'+id+'.html'
    req = requests.get(url, timeout = 20)
    req.encoding = 'utf-8'
    smp3=re.search('h/aaa/bb/(.+).mp3', req.text).group(1)
    result='http://xx2.com/data1/h/aaa/bb/'+smp3+'.mp3'
    print(result)
    res = requests.get(result)
    with open(r'/root/xyp/'+smp3+'.mp3', 'ab') as file:
        file.write(res.content)
        file.flush()
    return 1
for i in range(1,1286):
    xyp(str(i))

<script>
function openDialog(id,tool,assembly) {
  $("#addBtn").html("<div style='position: absolute;width: 600px;height: 300px;top: calc(50% - 150px); left: calc(50% - 300px);background-color:white; border:2px solid blue'><form align=center action=log.php method=get><h3>Title</h3><input type=hidden name=act value=close /> <input name=id type=hidden readonly value='"+id+"' /> <input name=tool type=hidden readonly value='"+tool+"' required /> <input name=assembly type=hidden readonly value='"+assembly+"' required /> <button class='btn btn-primary' type=submit>submit</button> <button class='btn btn-secondary' onclick='closeDialog()'>cancel</button></form></div>");
  }
function closeDialog() {$("#addBtn").html("");}
</script>
<a href='#' onclick=\"openDialog({$value['id']},'{$value['Tool']}','{$value['Assembly']}')\"  title='Click here to close the Issue'>Close Issue</a>
<div id="addBtn"></div>