04,08,2018
|
dengwen168 |
一、数据库中添加目录
(一)修改model
之前的数据库设计中没有考虑商品分类,所以需要新增一个Category的数据库。这个操作本来很简单,就是修改model,然后migrate即可。
但是由于原来数据库中已经存在了数据,所以我做migrate的时候,又提示什么字段不能使用默认值0,报了很多出错的信息,后来我直接将\coupon\migrations下面刚刚生成的py文件都删除了,再来做migrate,不过一下又说某个字段已经建立, ...
04,08,2018
|
dengwen168 |
这个脚本的功能是,根据你自己设定好的条件,自动筛选过期的域名中是否有你需要的域名。比如你想查找即将过期的域名中含有“coin”,“craft”的域名。
而且可以放在服务器上自动运行。
运行结果如下:
代码如下:
import os.path
import json
import requests
import arrow
import progressbar
from lib.Filters import Filters
local = arrow.now("America/New_York")
tomorrow = ...
03,08,2018
|
dengwen168 |
一、首先看看我们要采集的是百度搜索时,自动推荐功能显示的关键词。
代码如下:
import requests
import json
def get_sug(word):
url = 'https://sp0.baidu.com/5a1Fazu8AA54nxGko9WTAnF6hhy/su?wd=%s&sugmode=2&json=1&p=3&sid=1427_21091_21673_22581&req=2&pbs=%%E5%%BF%%AB%%E6%%89%%8B&csor=2&pwd=%%E5%%BF%%AB%%E6%%89%%8B&cb=jQuery110209249 ...
02,08,2018
|
dengwen168 |
一、环境的搭建
1.利用anaconda的conda create -n upload python=3.6创建一个虚拟环境。
2.在pycharm中新建一个django项目,并选择文件目录。
3.选择刚刚创建的upload虚拟环境。
然后点击“create”,就会开始安装django。
二、创建应用
1.在pycharm中执行"Tools-Run manage.py task" 菜单功能,在下边弹出的窗格中,执行“startapp fronts”新建一个应用。
2.将fronts添加到setting.py的INSTALLED_APPS里面 ...
01,08,2018
|
dengwen168 |
最开始调试的时候老是不成功,也找不到问题在哪儿。后来请教了别人,才知道原来是跨域问题,应该本地搭建一个Web Server才行,后来自己在XAMPP上在调试成功了。
首先存一个data.json文件
[
{
"id":"001",
"title":"百度",
"url":"http://www.baidu.com"
},
{
"id":"002",
&q ...
01,08,2018
|
dengwen168 |
https://github.com/rdowns26/seo_keyword_research_tools
https://github.com/EdmundMartin/google_keyword_suggest
https://github.com/hitoy/yahoo-search-suggestions/blob/master/get_suggest.py
bingpic
https://github.com/chrislad/ImageScrappers
https://github.com/renyuzhuo/Bing-today-s-image
check domain:
https://github.com/D4Vinci/Domain-Checker/blob/master/DomainChecker.py
01,08,2018
|
dengwen168 |
最开始使用pip install whois,提示Successfully installed whois-0.7,可是执行相关whois.whois("www.sohu.com")命令时,提示如下错误:
AttributeError: module 'whois' has no attribute 'whois'
然后再安装pip install python-whois,然后可以用了,不过只成功了一次,又不能用了。
最后将whois-0.7,python-whois全部卸载掉,再重新安装python-whois,终于可以用了。
附最终代码,可以放到树莓派上 ...