豆瓣电视剧爬虫 # coding=utf-8 import requests import json class DoubanSpider(): def __init__(self): self.url_temp_list=[ {"url_temp":"https://m.douban.com/re ...
分类:
其他好文 时间:
2020-05-08 18:42:08
阅读次数:
93
源结果集 加入$project 过滤后: 注意点: 1 $project是在聚合函数中使用,一般在aggregate中 和$group配合使用 2 “_id”:NumberInt(0) 这里的0 表示不显示,非0则是显示 3 "country" : "$_id.country" 这里是从$group ...
分类:
其他好文 时间:
2020-05-08 13:12:13
阅读次数:
80
什么是结构体 结构体是用户定义的类型,表示若干个字段(Field)的集合。 结构体的声明 例如声明一个人, 有年龄age, 身高height, 体重weight, 可以将这三个属性组合在一起 type People struct { age int weight int height int } 上 ...
分类:
编程语言 时间:
2020-05-06 17:59:18
阅读次数:
63
升级步骤: 1、对mysql5.6进行全库备份( )用于失败倒回 2、关闭mysql5.6版本数据库 3、将mysql5.7软件部署 4、修改配置信息 5、修改启动脚本 6、启动mysql5.7数据库 7、mysql_upgrade升级数据库相关参数 8、重启数据库,测试升级结果 首先对数据库进行物 ...
分类:
数据库 时间:
2020-05-04 10:38:58
阅读次数:
85
import requests import argparse import json def get_parameter(): parser=argparse.ArgumentParser(description='该脚本用于查看IP的归属地') parser.add_argument('-a', ...
分类:
编程语言 时间:
2020-04-25 19:27:35
阅读次数:
109
下载地址: 这个下载速度快很多 https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/ 安装命令: bash Miniconda3-4.3.14-Linux-x86_64.sh //注意下面这个是运行的过程,主要有几个地方要输入yesWelc ...
分类:
编程语言 时间:
2020-04-24 01:34:47
阅读次数:
81
I I HDU 3466Proud Merchants(贪心+01背包) Recently, iSea went to an ancient country. For such a long time, it was the most wealthy and powerful kingdom in ...
分类:
其他好文 时间:
2020-04-20 14:04:37
阅读次数:
77
一、创建计算字段 concat 连接字符 SELECT Concat(vend_name, ' (', vend_country, ')') FROM Vendors ORDER BY vend_name; 为了去除结果空格,使用RTRIM,LTRIM,TRIM:去掉字符串右边的空格)、LTRIM( ...
分类:
数据库 时间:
2020-04-16 01:06:09
阅读次数:
464
前言 ET支持部分的Xpath语法,对于测试是个非常好用的工具,ET是目前最好用的xml数据文件读取的工具包 find和findall支持的xpath语法 标号 语法 说明 1 tag 查找所有具有指定名称tag的子元素。例如:country表示所有名为country的元素,country/rank ...
分类:
其他好文 时间:
2020-04-13 00:38:40
阅读次数:
117
Many years ago Berland was a small country where only nn people lived. Each person had some savings: the ii -th one had aiai burles. The government co ...
分类:
编程语言 时间:
2020-04-11 12:55:51
阅读次数:
113