summaryrefslogtreecommitdiff
path: root/unbiasedObjects.py
diff options
context:
space:
mode:
authorssstvinc2 <sstvinc2@gmail.com>2017-02-09 10:18:18 -0500
committerssstvinc2 <sstvinc2@gmail.com>2017-02-09 10:18:18 -0500
commit3126b094485af5a374d0ba400604a8b2805337af (patch)
tree51beba6742b91022c12c7d7a1ca89d247614efe1 /unbiasedObjects.py
VIM is fucking garbage
Diffstat (limited to 'unbiasedObjects.py')
-rw-r--r--unbiasedObjects.py67
1 files changed, 67 insertions, 0 deletions
diff --git a/unbiasedObjects.py b/unbiasedObjects.py
new file mode 100644
index 0000000..dd71711
--- /dev/null
+++ b/unbiasedObjects.py
@@ -0,0 +1,67 @@
+class Article():
+ title=''
+ url=''
+ img=''
+ source=''
+
+ def __init__(self, title, url, img, source):
+ self.title=title
+ self.url=url
+ self.img=img
+ self.source=source
+
+ def __str__(self):
+ return '-----------\n'+self.title+'\n'+self.source+'\n'+self.url+'\n'+self.img+'\n'+'-----------'
+
+
+class NewsSource():
+ name=''
+ url=''
+ #multiple start values to step through file. end value default to '"'
+ h1SectionDividerStart=None
+ h1SectionDividerEnd=None
+ h1DelStart=[]
+ h1DelEnd='"'
+ h2SectionDividerStart=None
+ h2SectionDividerEnd=None
+ h2DelStart=[]
+ h2DelEnd='"'
+ h3SectionDividerStart=None
+ h3SectionDividerEnd=None
+ h3DelStart=[]
+ h3DelEnd='"'
+ #arrays of Article object types
+ h1Arr=None
+ h2Arr=None
+ h3Arr=None
+
+ def __init__(self, name, url,
+ h1DelStart, h2DelStart, h3DelStart,
+ h1SectionDividerStart=None, h1SectionDividerEnd=None,
+ h2SectionDividerStart=None, h2SectionDividerEnd=None,
+ h3SectionDividerStart=None, h3SectionDividerEnd=None):
+ self.name=name
+ self.url=url
+ self.h1DelStart=h1DelStart
+ self.h2DelStart=h2DelStart
+ self.h3DelStart=h3DelStart
+ self.h1SectionDividerStart=h1SectionDividerStart
+ self.h2SectionDividerStart=h2SectionDividerStart
+ self.h3SectionDividerStart=h3SectionDividerStart
+ self.h1SectionDividerEnd=h1SectionDividerEnd
+ self.h2SectionDividerEnd=h2SectionDividerEnd
+ self.h3SectionDividerEnd=h3SectionDividerEnd
+ self.h1Arr=[]
+ self.h2Arr=[]
+ self.h3Arr=[]
+
+ def addArticle(self, article, level):
+ if level==1:
+ self.h1Arr.append(article)
+ elif level==2:
+ self.h2Arr.append(article)
+ elif level==3:
+ self.h3Arr.append(article)
+ else:
+ print("Error: invalid level in NewsSource.addArtlce: ", level)
+