finish the home work

This commit is contained in:
2020-03-25 11:34:46 +08:00
commit c7fab80594
9 changed files with 643 additions and 0 deletions

13
main.py Normal file
View File

@@ -0,0 +1,13 @@
#-*- coding: UTF-8 -*-
__author__ = 'Xice <admin@xice.wang>'
__data__ = '2020-03-24'
import GUI
import spider
if __name__ == "__main__":
c = spider.CheckPointAndConfig("./config.json")
s = spider.Spider(c)
gui = GUI.MainGui(s)
gui.start()