practice_code/python/spider/info/google_map/all_start.py

19 lines
471 B
Python
Raw Normal View History

2024-05-27 15:17:26 +08:00
from script import *
from panel import *
class full_panel(reptile_Panel):
def __init__(self):
super().__init__()
def submit_info(self, url, head, frequency):
google_map = google_map_script(url, head, frequency)
wx.MessageBox('开始提取', '提示', wx.OK | wx.ICON_INFORMATION)
google_map.start()
wx.MessageBox('提取完成', '提示', wx.OK | wx.ICON_INFORMATION)
app = wx.App()
full_panel().Show()
app.MainLoop()