summaryrefslogtreecommitdiffstats
path: root/abs/core/ncid/ncid-log.py
blob: 1301da1805f76aeaa26c5709c7cf2fb0b74ec1fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/python

import MySQLdb
import sys
import getopt
import socket
import os
cdb = MySQLdb.connect(host="127.0.0.1", user="mythtv", passwd="mythtv", db="ncid")
#log to logger?



#log to db

def main(argv):

    DATE=sys.stdin.readline().strip()
    TIME=sys.stdin.readline().strip()
    NUMBER=sys.stdin.readline().strip()
    NAME=sys.stdin.readline().strip()


    #print "start of line"
    #print DATE
    #print TIME
    #print NUMBER
    #print NAME
    #print "$$$$$$$$$$$$$$$$$$"
    ncursor=cdb.cursor()
    ncursor.execute ("""INSERT INTO cid (date,time,name,number) VALUES
                    ('%s', '%s','%s','%s');""" %(DATE,TIME,NAME,NUMBER ))

if __name__ == "__main__":
    main(sys.argv[1:])