MCPcopy Create free account
hub / github.com/UndCover/PyramidStore / homeContent

Method homeContent

plugin/py_huya.py:17–35  ·  view source on GitHub ↗
(self,filter)

Source from the content-addressed store, hash-verified

15 def manualVideoCheck(self):
16 pass
17 def homeContent(self,filter):
18 result = {}
19 cateManual = {
20 "音乐": "音乐",
21 "一起看": "一起看",
22 "三国杀": "三国杀",
23 "网游竞技": "网游竞技"
24 }
25 classes = []
26 for k in cateManual:
27 classes.append({
28 'type_name': k,
29 'type_id': cateManual[k]
30 })
31
32 result['class'] = classes
33 if (filter):
34 result['filters'] = self.config['filter']
35 return result
36 def homeVideoContent(self):
37 result = {}
38 return result

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected