Time of Update: 2018-12-05
MoinMoin1.8.3終於安裝好了,記下步驟以便日後需要。由於對apache2、Python、MoinMoin都不懂,所以都是生搬硬套的步驟:1.開啟終端,切換到管理員權限sudo -i2.安裝Apache2apt-get install apache23.下載MoinMoin1.8.3官方網站4.解壓縮MoinMoin 1.8.3
Time of Update: 2018-12-05
# Filename: backup_ver1.pyimport osimport time# 1. The files and directories to be backed up are specified in a list.source = ['/home/anpan/Python']# If you are using Windows, use source = [r'C:\Documents', r'D:\Work'] or something like that# 2. The
Time of Update: 2018-12-05
下載python-2.7.2.msi http://www.python.org/getit/Django-1.3.1.tar.gz https://www.djangoproject.com/Django暫時只支援python 2.4 ~ 2.7, 在Django-1.3.1\docs\intro\install.txt中有說明: Being a Python Web framework, Django requires Python. It works with any
Time of Update: 2018-12-05
python實現人人網的自動登入學習了一個多星期的python,寫一個自動登入人人網的指令碼練習一下,我使用的版本為Python 3.2.2。上網搜了下,有許多樣本,不過基本上都是Python 2.x寫的,琢磨了好久終於登入成功了,代碼如下:import urllib.requestimport urllib.parseimport http.cookiejarclass LoginRenren(): def __init__(self): """log
Time of Update: 2018-12-05
直接用源碼或者easy_install 安裝都會出問題:[root@localhost Imaging-1.1.7]# easy_install pilSearching for pilReading http://pypi.python.org/simple/pil/Reading http://www.pythonware.com/products/pilReading http://effbot.org/zone/pil-changes-115.htmReading
Time of Update: 2018-12-05
在用C給python3.寫擴充時遇到如下問題:寫好*module.c和setup.py檔案後執行python setup.py build報unable to find vcvarsall.bat我機器上有vs2005和vc6,但是還是報錯。搜尋很多資料:網上提供解決辦法如下:下載mingw環境,添加環境變數使用python setup.py build
Time of Update: 2018-12-05
python日期時間字串轉換成unix時間戳記 今天用python寫抓網頁的小程式的時候遇到個問題,頁面上的時間字串例如'(2011-07-01 17:38:49)'要轉換成unix時間戳記,以前寫php的時候有strtotime函數,在python中一下子沒找到,在網上看到的例子是:view sourceprint?1import datetime,time 2s
Time of Update: 2018-12-05
最近寫了個豆瓣個人電台自動下載加心歌曲的小程式,基本能夠下載,但需要手動將"http://douban.fm/mine?type=liked"頁面全都下載下來,有點蛋疼,- - !!。由於還沒有實現程式登入豆瓣的功能,暫時先這樣用吧。#!/usr/bin/python2.7# -*- coding:utf -*-import urllibimport reimport socketimport cookielibimport urllib2socket.setdefaulttimeout(1)
Time of Update: 2018-12-05
遇到標題上的問題,按照我的解決廣方案來吧=====================================(一)用記事本建立一個檔案ChineseTest.py,預設ANSI:s = "中文"print s測試一下瞧瞧:E:/Project/Python/Test>python ChineseTest.py File "ChineseTest.py", line 1SyntaxError: Non-ASCII character '/xd6' in file
Time of Update: 2018-12-05
使用過hashlib庫的朋友想必都遇到過以下的錯誤吧:“Unicode-objects must be encoded before
Time of Update: 2018-12-05
Monkeyrunner 寫指令碼的技巧(shell 命令,檔案操作)Android 4.0已經發布了,令我失望的一點是monkeyrunner工具本身沒有大的提高,SDK看上去沒有什麼變化,但是之前曾將看到趨勢,源碼已經引入Ichampview和ease等新的模組,可惜源碼還沒有發布,不知道具體情況,況且現在的monkeyrunner也無法執行。感覺目前sdk列出的功能太少,在寫指令碼的時候,限制太多,好在monkeyrunner的指令碼是python形式的,豐富的庫檔案可以彌補這一缺陷1.
Time of Update: 2018-12-05
文章目錄 Python 尋找模組的位置共用 Python 模組 共用 Python 指令碼的技術ArcGIS 10 以下將介紹一些您在與其他使用者共用 Python
Time of Update: 2018-12-05
Python的內建字串類(無需import);它提供了很多常用的字串處理函數。str成員函數均不影響調用字串本身,返回一個處理後的副本。S.center(width[, fillchar]) -> string以fillchar(必須是一個字元,預設為一空格)填充S到寬度為width,並以S置中。類似的還有ljust,rjust>>> s = "notice">>> s.rjust(20,
Time of Update: 2018-12-05
Python編程擷取當前路徑在編寫各類應用程式時,擷取當前路徑一直是一個經典問題,只有擷取了當前路徑才可以進一步找到所有同路徑下的其它檔案。Python程式設計語言也可以通過一些系統調用來獲得當前路徑。本文給出的模組不僅僅可以擷取當前路徑,也可以形成SQLObject使用的URI形式字串,以當前路徑下的指定檔案名稱合成資料庫路徑。如下是代碼,大家可以研究一下:# -*- coding: gbk -*-# File: curpath.py# Date: 2006-12-23# Authro:
Time of Update: 2018-12-05
In Python, string objects are immutable. Therefore, any operation on a string, including string concatenation, produces a new string object, rather than modifying an existing one. concatenating N strings thus involves building and then immediately
Time of Update: 2018-12-05
一、先介紹下file、seek、truncate的基本用法: seek(offset,where): where=0從起始位置移動,1從當前位置移動,2從結束位置移動。當有換行時,會被換行截斷。seek()無傳回值,故值為None。 tell(): 檔案的當前位置,即tell是獲得檔案指標位置,受seek、readline、read、readlines影響,不受truncate影響 truncate(n):
Time of Update: 2018-12-05
import datetime if __name__ == "__main__": t1=datetime.datetime.today() f = file("email.txt","r") f2 = file("email_new.txt","w") f2.writelines(set(f)) f.close() f2.close() t2=datetime.datetime.today() print str(t2-t1) 在我機器上的測試結果: python 2.5: 0:00:00
Time of Update: 2018-12-05
寫個python 指令碼實現檔案的遞迴拷貝減小字型增大字型作者:佚名 來源:本站整理 發布時間:2012-10-19 16:39:34今天翻電腦時突然發現有個存了很多照片和視頻的檔案夾,想起來是去年換手機(流行的小5)時拷出來的。看了幾張照片,往事又一幕幕的浮現在腦海,好吧,我是個感性的人。所以就想把這些照片翻著看一遍,可是拷出來的照片手機裡是按時間自動分檔案夾的,一個一個檔案夾拷很是麻煩,於是打算寫個python小指令碼來完成這個工作(扯這麼多,終於到主題了,囧)這是待拷貝的檔案夾根目錄,
Time of Update: 2018-12-05
Python 類比滑鼠操作 2009-09-13 21:49:44| 分類:python
Time of Update: 2018-12-05
Linux -> Linux下的Python指令碼編程 撰寫Linux使用的Pythonscript這篇文章寫於兩年前,主題鎖定在以Python寫Linux的script。討論了Python script.的慣用寫法、字串處理、字元編碼、檔案與目錄處理、呼叫外部程式,以及利用內建連結庫進行網路通訊。 1 Linux、指令稿與Python對Linux來說,指令稿(script)是至為重要的部分。在主要的Linux