2k小说网爬取最近大火的《东宫》小说,借鉴之前看过的一段代码,修改之后,进行简单爬取。 from urllib import requestfrom bs4 import BeautifulSoupurl='https://www.fpzw.com/xiaoshuo/19/19210/'req=re ...
分类:
编程语言 时间:
2019-03-18 01:19:35
阅读次数:
197
每个框架中都有处理请求的机制(request),但是每个框架的处理方式和机制是不同的 为了了解Flask的request中都有什么东西,首先我们要写一个前后端的交互 基于HTML + Flask 写一段前后端的交互 先写一段儿HTML form表单中提交方式是post action地址是 /req ...
分类:
其他好文 时间:
2019-03-17 14:09:40
阅读次数:
215
用Java实现简单的web服务器 ——参考https://www.cnblogs.com/yingww/p/4097620.html 实验步骤: 1.我这里新建了一个普通的java project,新建了一个包webserver 2.将Webserver.java,Response.java,Req ...
分类:
Web程序 时间:
2019-03-15 15:57:56
阅读次数:
180
var express = require('express'); var app = express(); var fs = require("fs"); app.get('/listUsers', function (req, res) { fs.readFile( __dirname + "/ ...
分类:
其他好文 时间:
2019-03-14 16:35:23
阅读次数:
147
REQ 把询问离线, 我们从n 到 1遍历过去的时候, 把(1 - 1 / p)乘在最靠近当前位置的地方, 然后区间求乘积就好啦。 ...
分类:
其他好文 时间:
2019-03-09 01:26:43
阅读次数:
175
http: const http = require("http"); http.createServer((req , res)=>{ req:request 请求 req.url 请求的地址 req.method 请求的方式 req.headers 请求头 req.body 接受get传递过来的 ...
分类:
Web程序 时间:
2019-03-07 16:23:19
阅读次数:
195
```java
public class Filter implements javax.servlet.Filter {
public void doFilter(ServletRequest req, ServletResponse resp, FilterChain chain) throws... ...
分类:
其他好文 时间:
2019-03-02 01:01:57
阅读次数:
146
打包后的代码 JS / / (function(modules) { // webpackBootstrap console.log(modules); / / // The module cache / / var installedModules = {}; / / / / // The req ...
分类:
Web程序 时间:
2019-02-28 23:04:58
阅读次数:
282
// Express 对于没有设定的请求路径,默认会返回 Cat not get xxx // 如果你想要定制这个 404 // 需要通过中间件来配置 // 咱们讲中间件的时候说一下如何处理 // 只需要在自己的路由之后增加一个 app.use(function (req, res) { // 所有 ...
分类:
其他好文 时间:
2019-02-26 01:13:03
阅读次数:
384
import requests # 定义爬取url地址 base_url = 'https://www.baidu.com/' # 定义代理IP地址 proxies = {'http':'http://121.31.193.38:8123'} # 使用代理获取想要的页面 response = req... ...
分类:
其他好文 时间:
2019-02-22 22:58:30
阅读次数:
171