You are not logged in.

#1 2010-01-14 12:45:23

willxtreme
Member
Registered: 2010-01-07
Posts: 150
Website

[SOLVED] Arch Linux's ranking on distrowatch via Conky

This is more a request

I'd like to have a python script that simply returns Arch Linux ranking on distrowatch.com to display on conky big_smile

When I check the code of distrowatch the part of the code concercing Arch's ranking is:
        <tr>
          <th class="News">9</th>
          <td class="News"><a href="arch">Arch</a></td>

          <td class="News" style="text-align: right" title="Yesterday: 794">796<img src="images/other/aup.png" alt=">" title="Yesterday: 794"></td>
        </tr>

Last edited by willxtreme (2010-01-14 15:54:13)

Offline

#2 2010-01-14 15:53:53

willxtreme
Member
Registered: 2010-01-07
Posts: 150
Website

Re: [SOLVED] Arch Linux's ranking on distrowatch via Conky

Okay solved big_smile:D:D
in 3 steps

1) Download Beautiful Soup for Python & copy BeautifulSoup.py to /usr/lib/python2.6/site-packages

2) Create ranking.py containing:

#!/usr/bin/env python

import urllib2
from BeautifulSoup import BeautifulSoup

address = "http://distrowatch.com/"
try:
    website = urllib2.urlopen(address)
    soup = BeautifulSoup(''.join(website))
    rankings = soup.find(text= "Page Hit Ranking").findParent("table").find(text="Arch").findParent("tr").find("th").string
    print rankings
except:
    print "N/A"

3) Add in .conkyrc

Distrowatch's Ranking: $alignr ${execi 7200 python ~/.scripts/ranking.py}

1337conky.png

credits to iggykoopa

Last edited by willxtreme (2010-01-14 16:08:30)

Offline

#3 2010-01-14 17:23:29

wbeyda
Member
Registered: 2010-01-13
Posts: 28

Re: [SOLVED] Arch Linux's ranking on distrowatch via Conky

could we sticky this for the day? pleae mods I want to try this as soon as I get home. but stuck at work on windoze machines :-/

Offline

#4 2010-01-14 17:26:11

Allan
Pacman
From: Brisbane, AU
Registered: 2007-06-09
Posts: 11,387
Website

Re: [SOLVED] Arch Linux's ranking on distrowatch via Conky

I'm sure you have email...

Offline

#5 2010-01-14 17:47:04

willxtreme
Member
Registered: 2010-01-07
Posts: 150
Website

Re: [SOLVED] Arch Linux's ranking on distrowatch via Conky

And it's added in the wiki big_smile

Offline

#6 2010-01-14 18:02:04

wbeyda
Member
Registered: 2010-01-13
Posts: 28

Re: [SOLVED] Arch Linux's ranking on distrowatch via Conky

willxtreme wrote:

And it's added in the wiki big_smile

NICE!

Offline

Board footer

Powered by FluxBB