refactor description parsing
[disclosr.git] / documents / scrapers / 820c3df09aa62f6ee7468c73bea0e323.py
blob:a/documents/scrapers/820c3df09aa62f6ee7468c73bea0e323.py -> blob:b/documents/scrapers/820c3df09aa62f6ee7468c73bea0e323.py
--- a/documents/scrapers/820c3df09aa62f6ee7468c73bea0e323.py
+++ b/documents/scrapers/820c3df09aa62f6ee7468c73bea0e323.py
@@ -1,1 +1,18 @@
+import sys,os
+sys.path.insert(0, os.path.join(os.path.dirname(__file__) or '.', '../'))
+import genericScrapers
+#RSS feed not detailed
 
+#http://www.doughellmann.com/PyMOTW/abc/
+class ScraperImplementation(genericScrapers.GenericOAICDisclogScraper):
+	def getColumnCount(self):
+		return 2
+	def getColumns(self,columns):
+		(date, title) = columns
+		return (title, date, title, title, None)
+
+if __name__ == '__main__':
+    print 'Subclass:', issubclass(ScraperImplementation, genericScrapers.GenericOAICDisclogScraper)
+    print 'Instance:', isinstance(ScraperImplementation(), genericScrapers.GenericOAICDisclogScraper)
+    ScraperImplementation().doScrape()
+