web/html/backup/paragraphlist.py
author amit@thunder
Mon, 25 Jan 2010 18:56:45 +0530
changeset 0 8083d21c0020
permissions -rwxr-xr-x
The first commit of all the required files for the review app

import sys
f=open(sys.argv[1],'r')
pid_list=[]
for i in f.readlines():
    if i.startswith('<p id=') : 
        list_tmp=i.split('"')[1]
        pid_list.append(list_tmp)
print pid_list