上一页 1 ··· 49 50 51 52 53 54 55 56 57 ··· 96 下一页
摘要: 在使用python爬虫的过程中,难免遇到要加载原网站的js脚本并执行。但是python本身无法解析js脚本。 不过python这么猛的语言,当然设置了很多方法来执行js脚本。其中一个比较简单的方法是使用pyv8模块。 用pip下载pyv8模块,也可以百度搜索安装包(使用于windows平台) 然后就 阅读全文
posted @ 2017-03-30 21:43 超级学渣渣 阅读(17307) 评论(0) 推荐(1) 编辑
摘要: # _*_ coding:utf-8 _*_ import sys from PyQt4 import QtCore,QtGui class Example(QtGui.QWidget): def __init__(self): super(Example,self).__init__() self 阅读全文
posted @ 2017-03-29 19:16 超级学渣渣 阅读(1497) 评论(0) 推荐(0) 编辑
摘要: # _*_ coding:utf-8 _*_ import sys from PyQt4 import QtGui,QtCore class Example(QtGui.QMainWindow): def __init__(self): super(Example,self).__init__() self.setWindowTitle('Escape'... 阅读全文
posted @ 2017-03-28 14:38 超级学渣渣 阅读(2631) 评论(0) 推荐(0) 编辑
摘要: # _*_ coding:utf-8 _*_ import sys from PyQt4 import QtGui class Example(QtGui.QWidget): def __init__(self): super(Example,self).__init__() self.grid = 阅读全文
posted @ 2017-03-27 23:53 超级学渣渣 阅读(7639) 评论(0) 推荐(0) 编辑
摘要: 百度教程说安装 这在我的电脑上安装失败: 所以应该: 报错: error: Microsoft Visual C++ 9.0 is required (Unable to find vcvarsall.bat).Get it from http://aka.ms/vcpython27 缺少vc的一个 阅读全文
posted @ 2017-03-25 23:39 超级学渣渣 阅读(16295) 评论(0) 推荐(1) 编辑
摘要: 转载于:http://blog.csdn.net/computerms/article/details/48056103 阅读全文
posted @ 2017-03-23 16:43 超级学渣渣 阅读(2489) 评论(0) 推荐(0) 编辑
摘要: # _*_ coding:utf-8 _*_ from Tkinter import * from ScrolledText import ScrolledText import urllib #import requests import urllib2 #import pygame import re import threading import time url_name=[]#放置地... 阅读全文
posted @ 2017-03-23 14:56 超级学渣渣 阅读(1913) 评论(0) 推荐(0) 编辑
摘要: 也是一条命令就可以:sudo /etc/init.d/dns-clean start 阅读全文
posted @ 2017-03-19 10:35 超级学渣渣 阅读(8271) 评论(0) 推荐(0) 编辑
摘要: pycharm设置安装python第三方插件 转载于:https://www.mindg.cn/?p=80 今天下了一个pycharm,设置用它来安装python插件,以下是安装步骤,与大家分享,我的环境是WIN7系统: 安装python需要先安装setuptools工具和pip,以下正式开始,先下 阅读全文
posted @ 2017-03-18 22:45 超级学渣渣 阅读(10701) 评论(0) 推荐(0) 编辑
摘要: 典型的应用场景:Json数据的解析 阅读全文
posted @ 2017-03-05 22:50 超级学渣渣 阅读(14500) 评论(0) 推荐(0) 编辑
上一页 1 ··· 49 50 51 52 53 54 55 56 57 ··· 96 下一页