You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
367 B
14 lines
367 B
8 months ago
|
from controller.SpyderController import SpyderController
|
||
|
from controller.UIController import UIController
|
||
|
|
||
|
spyderController = SpyderController()
|
||
|
uiController = UIController()
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
print("this is main.py!")
|
||
|
# for debug:
|
||
|
lst = spyderController.getBilibiliVideoList(999,1,0.3)
|
||
|
print(lst)
|
||
|
# for running:
|
||
|
uiController.main()
|