- 博客(8)
- 收藏
- 关注
原创 关于HTMLmargin塌陷的问题
解决HTML的margin标签 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta...
2019-11-26 19:28:27
240
原创 python使用scrapy框架登录某个网页
示例代码: # -*- coding: utf-8 -*- import scrapy from scrapy.http import Request, FormRequest class LoginSpider(scrapy.Spider): name = 'login' allowed_domains = ['iqianyue.com'] start_urls = ...
2019-10-30 10:41:15
396
原创 python运用scrapy爬取当当网实例
首先在settings修改一些设置 ROBOTSTXT_OBEY = True # 改为 ROBOTSTXT_OBEY = False # 把这三行前面的#去掉 ITEM_PIPELINES = { 'dangdang.pipelines.DangdangPipeline': 300, } 在items.py定义一些要爬取的信息 # -*- coding: utf-8 -*- # D...
2019-10-29 16:08:54
557
原创 python爬虫框架scrapy使用指令
1.常用命令 全局指令: bench Run quick benchmark test # 测试 fetch Fetch a URL using the Scrapy downloader # 使用或者下载某个网页 genspider Generate new spider using pre-defined templates # 创建爬虫文件 r...
2019-10-29 13:57:51
629
原创 wordpress各个文件及数据库的使用功能
根目录文件 序号 文件夹名 功能 1 index.php WordPress核心索引文件,即博客输出文件. 2 license.text WordPress GPL许可证文件. 3 readme.html WordPress安装导言 4 wp-activate.php 用户注册激活 5 wp-blog-header.php 加载WordPress的环境和模板 6...
2019-10-24 13:06:27
1395
原创 解决WordPress免插件纯代码STMP发送邮箱
修改主题代码 在主题functions.php中添加代码,让程序实现SMTP发信,代码如下:添加到在主题 functions.php 中! //smtp发送邮件功能 add_action('phpmailer_init', 'mail_smtp'); function mail_smtp( $phpmailer ) { $phpmailer->FromName = 'Admin'; ...
2019-10-12 16:58:14
666
原创 Centos7安装LAMP教程
一、关闭防火墙 [root@localhost ~]# systemctl stop firewalld // 临时关闭 [root@localhost ~]# systemctl disable firewalld //禁止开机启动 Removed symlink /etc/systemd/system/multi-user.target.wants/firewalld.service...
2019-10-09 13:37:01
913
转载 WordPress支持WebP格式图片上传方法
PhotoShop高度压缩图片技巧,虽然这种方式已经可以大幅度压缩图片体积,但WebP格式的图片相较于这种方式图片体积还要小2倍! 在浏览器支持方面,现在主流的浏览器也都支持WebP格式,况且像微信公众号这样的大平台早已开始使用WebP图片,因此没有理由不将博客的插图换成WebP了。 默认情况下,WordPress不支持上传WebP格式的图片,在主题的functions.php里添加以下代码即可:...
2019-10-07 09:07:10
1314
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅