JAVA网络爬虫
HttpClient

导航

 

2019年5月4日

摘要: 多线程模拟qq from multiprocessing import Process from socket import * ... 阅读全文
posted @ 2019-05-04 20:02 gmlgxx 阅读(61) 评论(0) 推荐(0)
 
摘要: tcp服务器 from socket import * #1.创建套接字 socket_tcp = socket(AF_INET,S... 阅读全文
posted @ 2019-05-04 20:01 gmlgxx 阅读(131) 评论(0) 推荐(0)
 
摘要: tftp服务起下载文件 from socket import * import struct import os import s... 阅读全文
posted @ 2019-05-04 19:58 gmlgxx 阅读(184) 评论(0) 推荐(0)
 
摘要: python装饰器的操作 函数重名 def test1(): print('----1----')def test1(): ... 阅读全文
posted @ 2019-05-04 19:52 gmlgxx 阅读(49) 评论(0) 推荐(0)
 
摘要: python迭代器与闭包的相关操作 迭代器 ''' 可迭代对象以直接作用于for循环的数据类型有以下几种:一类... 阅读全文
posted @ 2019-05-04 19:41 gmlgxx 阅读(59) 评论(0) 推荐(0)
 
摘要: python生成器的相关操作 生成器-1 a = (x*2 for x in range(10))print(next(a)) #... 阅读全文
posted @ 2019-05-04 19:38 gmlgxx 阅读(72) 评论(0) 推荐(0)
 
摘要: MongoDB基本命令用 成功启动MongoDB后,再打开一个命令行窗口输入mongo,就可以进行数据... 阅读全文
posted @ 2019-05-04 19:14 gmlgxx 阅读(60) 评论(0) 推荐(0)
 
摘要: Redis常用命令整理 doc 环境下使用命令: ... 阅读全文
posted @ 2019-05-04 19:12 gmlgxx 阅读(42) 评论(0) 推荐(0)
 
摘要: MySQL 数据库常用命令 1、MySQL常用命令 create database name; 创建数据库 use d... 阅读全文
posted @ 2019-05-04 19:08 gmlgxx 阅读(59) 评论(0) 推荐(0)
 
摘要: uwsgi 遵循wsgi协议的web服务器。 uwsgi的安装 pip install uwsgi uwsgi的配置 项目部... 阅读全文
posted @ 2019-05-04 18:23 gmlgxx 阅读(55) 评论(0) 推荐(0)