Time of Update: 2015-02-02
標籤:前提已經安裝了mysql,安裝了setuptools,然後參考網頁 http://jingyan.baidu.com/article/fedf07377ded3e35ad897750.html 將mysql和django關聯。這樣就可以將django裡面的模型和資料庫進行關聯了。如果不用django的模組,這裡只是單純的介紹Python裡面的Mysqldb模組。參考
Time of Update: 2014-12-10
標籤:使用 sp for on 檔案 資料 問題 bs 代碼 今天時間不多了,只能寫一部分了。 Python串連Pgsql的庫有三個,目前 psycopg2
Time of Update: 2014-11-06
標籤:blog io ar 使用 for 資料 on 2014 log Sample1# coding=gbkfrom sqlalchemy import *from
Time of Update: 2014-10-24
標籤:style blog color os ar sp 資料 div on 這即將是一篇very short very
Time of Update: 2014-10-17
標籤:io os ar 使用 for sp 資料 on 時間 如果使用executemany對資料進行批量插入的話,要注意一下事項:conn = MySQLdb.connect(host = &
Time of Update: 2014-08-18
標籤:http 使用 os io strong 檔案 ar 問題 目前下載的mysqldb在window下沒有exe安裝包了,只有源碼。使用python setup.py install 命令安裝,報錯如下:異常資訊如下:F:\
Time of Update: 2014-08-10
標籤:blog http io 檔案 資料 2014 ar 問題 事情是這樣的:博主嘗試用Python的sqlite3資料庫存放加密後的使用者名稱密碼資訊,表是這樣的CREATE TABLE IF NOT EXISTS
Time of Update: 2015-01-03
標籤: 看知乎的時候發現了一個 “如何正確地吐槽” 收藏夾,裡面的一些神回複實在很搞笑,但是一頁一頁地看又有點麻煩,而且每次都要開啟網頁,於是想如果全部爬下來到一個檔案裡面,是不是看起來很爽,並且隨時可以看到全部的,於是就開始動手了。工具1.Python
Time of Update: 2014-11-29
標籤:style blog http io ar color os 使用 sp 最近比較忙,
Time of Update: 2014-08-14
標籤:blog http 使用 os io strong 檔案 資料 這幾天一直糾結月python的中文編碼問題,發現一篇不錯的文章,轉過來留個念想。原文連結:http://blog.csdn.net/mayflowers/ar
Time of Update: 2014-08-14
標籤:os io for ar cti div amp python Or, How to use variable length argument lists in Python.The special
Time of Update: 2014-08-13
標籤:style blog http color 使用 os strong 2014 預設參數值: 只有在行參表末尾的哪些參數可以有預設參數值,即 def func(a, b=5 )#有效def func( a=5
Time of Update: 2014-08-12
標籤:blog java os io 檔案 for ar art #encoding: utf-8__author__ = ‘DELL‘import csvimport globimport datetimeimport
Time of Update: 2014-08-13
標籤:blog color 使用 os io strong ar cti 注意1、__init__並不相當於C#中的建構函式,執行它的時候,執行個體已構造出來了。12345class A(object): &
Time of Update: 2014-08-13
標籤:windows python 編輯器 程式員 大部分視障者程式員的編碼工作都是在windows下進行的,今天我們就來說說如何在windows下搭建一個視障者可以用的python編程環境。為啥要自己搭建呢?因為內建的python編輯器IDLE (Python
Time of Update: 2014-12-09
python 升級到2.7.8 導致yum 運行異常:No module named yum,2.7.8yumos version:[root@lixora etc]# cat redhat-releaseRed Hat Enterprise Linux Server release 5.4 (Tikanga)---運行yum 報錯[root@lixora ~]# yum install dialogThere was a problem importing one of the Python
Time of Update: 2014-11-24
python實現對excel表的讀寫操作(一),pythonexcelPart 1. 模組介紹:使用python實現對excel表的讀寫操作有兩個模組,分別為:1. 對excel表讀模數塊 xlrd 0.9.3 :: https://pypi.python.org/pypi/xlrd 英文釋意:The package is for reading data and
Time of Update: 2014-10-08
linux中搭建python開發環境,linuxpythonhttp://blog.csdn.net/pipisorry/article/details/39854707ubuntu 12.04中搭建python開發環境一、使用的系統及軟體Ubuntu 12.04Python 2.7.3Django 1.4.2Pycharm 2.6.3Postgresql
Time of Update: 2014-08-23
Python
Time of Update: 2014-08-17
[Python] 發送email的幾種方式,pythonemailpython發送email還是比較簡單的,可以通過登入郵件服務來發送,linux下也可以使用調用sendmail命令來發送,還可以使用本地或者是遠端smtp服務來發送郵件,不管是單個,群發,還是抄送都比較容易實現。先把幾個最簡單的發送郵件方式記錄下,像html郵件,附件等也是支援的,需要時查文檔即可1 登入郵件服務#!/usr/bin/env python# -*- coding: utf-8