Python

人生苦短,我用Python。

zanhu折腾记录

zanhu折腾记录 一、无法安装rcssmin 使用下面的命令就好了: pip install rcssmin --install-option="--without-c-extensions" 参考:https://www.cnblogs.com/dengyg200891/p/9581671.html 二、其他的 No module named 'channals' 安装production.txt ModuleNotFoundError: No module named 'sorl' pip install s……

Python常用代码(四)pythonic

Python常用代码(四)pythonic 一、 value = True if request.Post["value"] == 'U' else False 二、 assertTrue (all( a == b for a, b in zip(response.contex_data['questions'],Question.objects.all()))) 三、查看文件夹下面的所有文件 import os from os.path import isfile,join files = [f for f in os.listdir() if isfile(join(f))] ……

获得Google相关搜索

获得Google相关搜索 需要在墙的外面使用。 方式一: 代码: import requests import json # from fake_useragent import UserAgent keyword = "dog collars" keyword.replace(" ", "+") url = "http://suggestqueries.google.com/complete/search?output=firefox&q=" + keyword #……

wiki的新玩法

wiki的新玩法 在下面这篇文章看到的: https://wordlift.io/blog/en/keyword-suggestion-tool-tensorflow/ 就是可以像操作数据库那样对wiki进行操作: #Software applications ranked in descending order filtered by Operating System #defaultView:Table SELECT ?app ?appLabel ?appCategory ?appCategoryLabel ?logo_image ?ap……

搜狗翻译API

搜狗翻译API 一、注册账号 使用手机直接登陆。 价格:40元/百万字符 二、翻译 import requests import hashlib import urllib.parse def md5(str): m = hashlib.md5() m.update(str.encode("utf8")) return m.hexdigest() url = "http://fanyi.sogou.com:80/reventondc/api/sogouTransla……

Python远程连接Mysql

Python远程连接Mysql 一、设定数据库的连接 设定hostname为%,也即让navicat连接数据库同样的设定。 二、代码连接 import pymysql con = pymysql.connect(host='xxx.xxx.164.47',port=3306, user='dbwfornavicat', password='10%F4', database='sunrxxx', charset='utf8') cursor = con.cursor() cursor.execute('''select * from ask……

Tipask3.3问答采集内容数据批量入库

Tipask3.3问答采集内容数据批量入库 一、数据库结构 先发表一篇文章: ask_questions表: ask_tags表: 这个表也有数据,它是问题和标签的关系表,taggable_id是对应的文章ID。 二、代码 # coding:utf-8 import MySQLdb as mdb import datetime,time,re,sys,random reload(sys) sys.setdefaultencoding('utf-8') con = mdb.connect('127.0.0.1……

Django快速开发实战(优惠券)

Django快速开发实战(优惠券) 讲师介绍 吕召刚,前大众点评搜索负责人。 吕召刚有15年以上的软件开发与架构经验,曾就职于美团点评和华为软件。他热爱Python,使用Python 和Django开发过10多个应用,为Django的高效和强大所倾倒,同时在PyCon上做过多次分享。 他曾在大众点评负责搜索引擎研发,从无到有架构和实现了支持日均上亿PV的高可用搜索系统。……

TypeError: getresponse() got an unexpected keyword argument ‘buffering’

TypeError: getresponse() got an unexpected keyword argument ‘buffering’ 今天在用爬虫爬数据的时候,报这个错误:TypeError: getresponse() got an unexpected keyword argument 'buffering' 在网上找了一下,原来应该忽略第一个(“ buffering = True”)异常。 那是内部向后兼容的产物。 真正的错误是随之而来的。 Ignore the first ("buffering=True") exception. That's an internal backwar……

Page: 2 of 17 1 2 3 4 5 6 7 8 9 10 ... 17