使用Python远程数据库连接

时间:2014-04-12 23:35:27

标签: python mysql

我有一个Python程序,它从我的localhost中抓取一些值。我的目标是存储这些值并将它们插入我的实时网站。更具体地说,我想使用我的Python程序将这些值插入到我的实时网站数据库中。解析器看起来像

    from bs4 import BeautifulSoup

    import urllib

    x=urllib.urlopen("http://localhost/askisi2.html")
    s = x.read()
    soup = BeautifulSoup(s)

    m = soup.find("div",{"id":"s_number"})
    id = m.text
    print id

现在从这一点开始我想连接到我的实时数据库并插入“id”。如果可以使用Python访问我的远程数据库以及我应该遵循哪些技术?

1 个答案:

答案 0 :(得分:0)

您可能希望使用DB-API,特别是MySQL,the MySQLdb module。这是非标准的,因此您必须安装它。首先,你连接:

import MySQLdb
# other parameters are available; for details, see
# http://mysql-python.sourceforge.net/MySQLdb.html#functions-and-attributes
conn = MySQLdb.connect(user='someone', passwd='hunter2', db='some_database')

在您连接之后,插入一行非常简单:

conn.execute('insert into some_table (id) values (?)', (id,))

当您完成连接后,请不要忘记关闭它。

conn.close()