mirror of
https://github.com/jlengrand/twitterboard.git
synced 2026-03-10 08:51:22 +00:00
Not to perform unit tests (I really need to put all that stuff in practise some day), but some silly tests about the best way to chieve next objective. Next: - Add a hashtag table in database, to keep track of all current trendy hashtags. That way it can easily be used by everyone and we can get some more tracability.
15 lines
282 B
Python
15 lines
282 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from time import sleep
|
|
import test3
|
|
# this is counter, it never has to cha nge list of hashtags
|
|
|
|
class counter:
|
|
def __init__(self):
|
|
|
|
while True:
|
|
#print self.in_data
|
|
sleep(1)
|
|
print test3.data
|