1.目标 利用链接提取器爬取目标网站简单信息 2.代码 read.py # -*- coding: utf-8 -*- from scrapy.linkextractors import LinkExtractor from scrapy.spiders import CrawlSpider, Ru ...
分类:
其他好文 时间:
2020-09-17 21:20:10
阅读次数:
21
Signal Waveforms with Multiple Amplitude Levels Matlab Coding, 1 % MATLAB script for the probability of a symbol error for M = 2, 4, 8, 16 2 echo on 3 ...
分类:
其他好文 时间:
2020-09-17 20:10:51
阅读次数:
28
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/P ...
分类:
其他好文 时间:
2020-09-17 19:48:50
阅读次数:
22
spring <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-i ...
分类:
其他好文 时间:
2020-09-17 16:12:25
阅读次数:
30
# -*- coding:utf-8 -*- ############################# # pip install pycryptodome ############################# import base64 from Crypto import Random ...
分类:
其他好文 时间:
2020-09-17 15:31:40
阅读次数:
26
1.前言分布式版本控制工具Git已经是现代软件源代码版本控制首选方案之一。公有Git服务提供商国外知名如GitHub国内网络延迟高,Gitlab涉嫌对中国的歧视不推荐。国内有Gitee、Coding生态还不错。但是一般公司的源代码除非开源项目是不会放在公有Git服务上的。所以我们就需要一款容易安装,上手简单,而且硬件要求低的自托管Git服务程序。当然如果能免费就更好了。今天推荐一款符合上述要求的工
分类:
其他好文 时间:
2020-09-16 12:40:22
阅读次数:
41
python3 访问windows共享目录 1、安装pysmb包 pip install pysmb 2、连接共享目录 #!/usr/bin/env python3 # -*- coding:utf-8 -*- from smb.SMBConnection import SMBConnection ...
分类:
编程语言 时间:
2020-09-12 21:30:17
阅读次数:
53
前言 富文本编辑框是做web自动化最常见的场景,本篇以开源系统OPMS的添加新项目为例,解决如何定位富文本,输入文本内容 一、登录 # coding:utf-8 from selenium import webdriver driver=webdriver.Chrome() host="http:/ ...
分类:
编程语言 时间:
2020-09-10 23:18:26
阅读次数:
53
Android 开发第五讲 学习Button了解Button属性 一丶Button的分类 1.1 Android Button类型 根据Android 官网文档所属. Button可以定义三种形式的 Button 类型 ImageButton 图标类型的 带有android:drawableLeft ...
分类:
移动开发 时间:
2020-09-10 23:10:55
阅读次数:
67
Flask 下载时数据流的返回 关于flask 的下载功能实现,网上有一大堆,大致上是这样(适用于预下载的文件就在你的服务器里) from flask import jsonify, json, request, make_response, Response, stream_with_contex ...
分类:
其他好文 时间:
2020-09-09 19:13:48
阅读次数:
41