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

Popular posts from this blog

get url and add instance to a model with prefilled foreign key :django admin -

android - Keyboard hides my half of edit-text and button below it even in scroll view -

css - Make div keyboard-scrollable in jQuery Mobile? -