SEESenv/web/html/backup/paragraphlist.py
author amit@thunder
Thu, 25 Feb 2010 00:04:27 +0530
changeset 27 cb14131583c6
parent 2 52d12eb31c30
permissions -rwxr-xr-x
Started on final changes to the build scripts so that we can start with totally automatic builds

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