import requests import re from bs4 import BeautifulSoup url='http://news.gzcc.cn/html/xiaoyuanxinwen/' res=requests.get(url) res.encoding='utf-8' soup... ...
分类:
其他好文 时间:
2017-10-11 12:48:32
阅读次数:
127
import requests import re from bs4 import BeautifulSoup url='http://news.gzcc.cn/html/xiaoyuanxinwen/' res=requests.get(url) res.encoding='utf-8' soup... ...
分类:
其他好文 时间:
2017-10-11 12:42:33
阅读次数:
102
http://www.gnu.org/software/software.zh-cn.html http://linux.chinaunix.net/news/2010/12/07/1175310.shtml http://download.chinaunix.net/download/000100 ...
分类:
移动开发 时间:
2017-10-10 16:28:37
阅读次数:
244
http://dev.dcloud.net.cn/mui/event/ 1》在元素属性上添加onclick事件 function mshow() { console.log('xxxx'); mui.toast('OK');} 2》addEventListener()方法监听某个特定元素上的事件 m... ...
分类:
其他好文 时间:
2017-10-10 00:14:36
阅读次数:
2416
为什么SQL正在击败NoSQL,这对未来的数据意味着什么 : http://geek.csdn.net/news/detail/238939 译者注:经过多年的沉寂之后,今天的SQL正在复出。缘由如何? 这对数据社区有什么影响?看看本文的分析。以下为译文。 自从可以利用计算机做事以来,我们一直在收集 ...
分类:
数据库 时间:
2017-10-09 10:56:08
阅读次数:
265
Eclipse中文教程:http://down.51cto.com/data/271887Java编码规范:http://geek.csdn.net/news/detail/238808
分类:
编程语言 时间:
2017-10-06 21:18:48
阅读次数:
137
【题目】D. Huge Strings 【题意】给定n个01串(总长<=100)和m次操作,每次将串ai和串bi取出来合并后作为串n+i,并输出串n+i的k。 对于一个串,k定义为最大的能在串中找到所有长度为k的01串的数字(例如k=2时,需要找到00,01,10,11)。m<=100。 【算法】结 ...
分类:
其他好文 时间:
2017-10-05 23:13:07
阅读次数:
243
原文出处:CSDN邓帅本文介绍了一些关于Java API安全和性能方面的简单易用的技巧,其中包括保证API Key安全和开发Web Service方面中在框架方面选择的一些建议。程序员都喜欢使用API!例如为app应用构建API或作为微服务架构体系的一部分。当然,使用API的前提是能让你的工作变得更... ...
分类:
编程语言 时间:
2017-10-05 21:25:48
阅读次数:
178
import requestsfrom bs4 import BeautifulSoupres = requests.get('http://news.sina.com.cn/china')res.encoding = 'utf-8'soup = BeautifulSoup(res.text, 'h ...
分类:
其他好文 时间:
2017-10-05 14:37:25
阅读次数:
171