69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
# this is simple, there are no categories
def update_categories(self):
pass
# download links from dmoz listing
def update_streams(self, cat, force=0):
# result list
entries = []
# common
if (cat == "common"):
# fetch
|
|
|
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
# this is simple, there are no categories
def update_categories(self):
pass
# download links from dmoz listing
def update_streams(self, cat):
# result list
entries = []
# common
if (cat == "common"):
# fetch
|