补充说明: ????当前环境是在windows环境下 ????python版本是:python 3.4. 刚开始学习python,一边看书一边论坛里阅读感兴趣的代码,?http://www.oschina.net/code/snippet_1406266_43470 的代码运行报错...
分类:
其他好文 时间:
2014-11-06 13:12:11
阅读次数:
156
import?os
import?re
import?time
import?fcntl
import?logging
import?pygtk
pygtk.require(‘2.0‘)
import?gtk
import?gobject
import?webkit
import?requests
import?json
?
?
HOME?=?os.getenv...
分类:
系统相关 时间:
2014-11-04 20:00:52
阅读次数:
433
1: Explain? how? a? web?? application? work ? A web application resides in the server and servers the client‘s requests over internet. The client? access the web page using? browser from h...
分类:
Web程序 时间:
2014-11-03 11:39:00
阅读次数:
290
1.安装1 git clone git://github.com/kennethreitz/requests.git2 cd requests3 python setup.py install2.上点威力(GET)1 >>> import requests2 >>> url = 'http://di...
分类:
编程语言 时间:
2014-11-02 20:59:08
阅读次数:
243
首先在官网下载:http://www.crummy.com/software/BeautifulSoup/#DownloadBeautifulSoup在版本4以上都开始支持python3了,所以就下最新的吧。不过,在安装之前,首先要把这里的代码全部由python2格式转换成python3格式。这个工...
分类:
编程语言 时间:
2014-11-02 16:13:34
阅读次数:
235
LinuxCentos6.4*64安装request以及BeautifulSoupRequests是使用Apache2Licensed许可证的HTTP库。用Python编写,为人类编写。BeautifulSoup是用Python写的一个HTML/XML的解析器,它可以很好的处理不规范标记并生成剖析树(parsetree)。它提供简单又常用的导航(navigating),搜..
分类:
系统相关 时间:
2014-10-30 15:30:30
阅读次数:
274
最近在学python,之前用Python写过简单的图片爬取,今天想着用python爬一下豆瓣的电影,就有了下面的程序:
#coding:utf-8
import re
import sys
import urllib
from bs4 import BeautifulSoup
def movieSearch():
douBanSearchurl = "http://movie.douban.c...
分类:
其他好文 时间:
2014-10-29 00:26:07
阅读次数:
254
Package httpserves HTTP requests using any value that implementshttp.Handler:package httptype Handler interface { ServeHTTP(w ResponseWriter, r *Re...
分类:
Web程序 时间:
2014-10-29 00:06:07
阅读次数:
226
// Bind script tag hack transportjQuery.ajaxTransport( "script", function(s) { // This transport only deals with cross domain requests if ( s.crossD.....
分类:
Web程序 时间:
2014-10-26 19:46:30
阅读次数:
261