Sinisterly
I am so fucking bored............... - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Coding (https://sinister.ly/Forum-Coding)
+--- Forum: Python (https://sinister.ly/Forum-Python)
+--- Thread: I am so fucking bored............... (/Thread-I-am-so-fucking-bored)



I am so fucking bored............... - Eclipse - 03-22-2015

Code:
from BeautifulSoup import BeautifulSoup import urllib2 page = urllib2.urlopen('https://sinister.ly/index.php') soup = BeautifulSoup(page) y = '' for x in soup.html.body.findAll('tr'): y = x.findAll('td') if y and 'users active in the past 60 minutes' in y[0].text: break unlist = '' for x in y: unlist = str(x) soup = BeautifulSoup(unlist) print 'Online Users:' count = 0 for x in soup.findAll('a'): count += 1 for z in x.findAll('span'): print str(count) + ' > ' + str(z.text)

Somebody give me an idea for a python project. Please.


RE: I am so fucking bored............... - lux - 03-22-2015

Make an analysis bot, for anything.


RE: I am so fucking bored............... - Eclipse - 03-22-2015

(03-22-2015, 06:20 PM)Lux Wrote: Make an analysis bot, for anything.

Like what? Examples?


RE: I am so fucking bored............... - lux - 03-22-2015

(03-22-2015, 06:49 PM)Eclipse Wrote: Like what? Examples?

How many threads against replies are made daily, weekly on SL, the most active subforums, what days has most activity etc.


RE: I am so fucking bored............... - Eclipse - 03-22-2015

(03-22-2015, 07:26 PM)Lux Wrote: How many threads against replies are made daily, weekly on SL, the most active subforums, what days has most activity etc.

Oh, SL related. Cool idea. I'll get on that when I have time. Any others?