Search_Engine/posting.py
2022-05-04 15:30:01 -07:00

9 lines
261 B
Python

#Posting class for indexer, will probably be more complex as we keep adding crap to it
class Posting():
def __init(self,url,tf_idf):
self.url = url
self.tf_idf = tf_idf
def comparator(self):
#Some custom comparator for sorting postings later