摘要:
用python里面的 requests 与 BeautifulSoup 结合,实现网页爬虫示例。 示例一:抓取中国省份: import requests from bs4 import BeautifulSoup page = requests.get('http://www.stats.gov.c 阅读全文
摘要:
asp.net新建一个服务端程序,用来处理链接服务端: 1,新建一个处理程序 .ashx using System; using System.Collections.Generic; using System.Linq; using System.Net.WebSockets; using Sys 阅读全文
摘要:
【场景】搭建了一台CentOS虚拟机,并在上面搭了DOCKER,然后再DOCKER中安装Mysql。但只要将网络端口映射到宿主机上,那么外部网络就可以直接访问该数据。为此,我们需要使用防火墙(暂且不考虑mysql本身的账号权限控制)。 ## Linux系统的防火墙 说到防火墙,CentOS有Fire 阅读全文