上一页 1 2 3 4 5 6 7 ··· 9 下一页
摘要: # python 3.7 from urllib.request import Request,urlopen import time,re,csv class Maoyan(object): def __init__(self): self.header = { 'Connection': 'keep - alive', 'Co... 阅读全文
posted @ 2018-11-23 17:36 Sky__liu 阅读(325) 评论(0) 推荐(0) 编辑
摘要: # python 3.7 from urllib.request import Request,urlopen import re,time class Neihan(object): def __init__(self): self.header={ 'Host': 'www.neihan8.com', 'Referer... 阅读全文
posted @ 2018-11-23 11:52 Sky__liu 阅读(717) 评论(0) 推荐(0) 编辑
摘要: import os # Build paths inside the project like this: os.path.join(BASE_DIR, ...) BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__) 阅读全文
posted @ 2018-11-22 09:36 Sky__liu 阅读(494) 评论(0) 推荐(0) 编辑
摘要: $.ajax({ url:'/05-2?city='+id, type:'get', dataType:'json', success:function (data) { var html=''; $.each(data,function (i,j) { html+='<option value=" 阅读全文
posted @ 2018-11-08 18:43 Sky__liu 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 同步访问 当客户端向服务器发送请求时,服务器在处理过程中,浏览器只能等等,效率偏低 异步访问: 当客户端向服务器发送请求时,服务器在处理过程中,客户端可以做其他的操作,不需要一直等待,效率偏高 AJAX优点 1 异步 访问 2 局部 刷新 使用场合: 1 搜索建议 2 表单验证 3 表单提交 ... 阅读全文
posted @ 2018-11-06 19:35 Sky__liu 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 一:最简单的加密解密 (ansi转usc2) 大家对于JAVASCRIPT函数escape()和unescape()想必是比较了解啦(很多网页加密在用它们),分别是编码和解码字符串,比如例子代码用escape()函数加密后变为如下格式: alert%28%22%u9ED1%u5BA2%u9632%u 阅读全文
posted @ 2018-11-05 20:14 Sky__liu 阅读(1448) 评论(0) 推荐(0) 编辑
摘要: from flask import Flask,render_template,request from flask_sqlalchemy import SQLAlchemy app = Flask(__name__) db = SQLAlchemy(app) app.config['SQLALCH 阅读全文
posted @ 2018-11-05 15:25 Sky__liu 阅读(567) 评论(0) 推荐(0) 编辑
摘要: from flask import Flask from flask_sqlalchemy import SQLAlchemy app = Flask(__name__) db = SQLAlchemy(app) app.config['SQLALCHEMY_DATABASE_URI']= 'mys 阅读全文
posted @ 2018-11-02 20:30 Sky__liu 阅读(2159) 评论(0) 推荐(0) 编辑
摘要: 查看进程端口号及运行的程序:netstat -atunp 根据端口号来查看进程号:lsof -i:16031 阅读全文
posted @ 2018-10-31 14:53 Sky__liu 阅读(145) 评论(0) 推荐(0) 编辑
摘要: /fnng/p/8948015.html 最新的爬虫工具requests-html 阅读全文
posted @ 2018-10-30 19:42 Sky__liu 阅读(128) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 9 下一页