web/html/paragraphlist.py~
changeset 0 8083d21c0020
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/web/html/paragraphlist.py~	Mon Jan 25 18:56:45 2010 +0530
@@ -0,0 +1,7 @@
+f=open('abc.html','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