django - Python script to get top visited websites in a browser -
i want list of top 10 visted websites in browser using python script. guessing there way fetch visited websites particular browser , list top 10 ones in loop or other possible , relevant way.
any ideas?
i dont think need django that. according browser you're using, can write plugin counts number time you've been on website. algorithim quite simple (pseudo code):
websites = {} if current_website not in websites: websites[current_website] = 1 else websites[current_webisite] += 1 something ... hope helped though.
Comments
Post a Comment