Posted in Python onOctober 27, 2019
在爬虫百度地图的期间,就为它做了一个界面,运用的是PyQt5。
得到意想不到的结果:
# -*- coding: utf-8 -*- # Form implementation generated from reading ui file 'E:\pycharm_workspase\sprider_baidumap\src\view\provinces.ui' # # Created by: PyQt5 UI code generator 5.13.0 # # WARNING! All changes made in this file will be lost! from PyQt5 import QtCore, QtGui, QtWidgets class Ui_Form(object): def setupUi(self, Form): Form.setObjectName("Form") Form.resize(589, 500) self.comboBox_city = QtWidgets.QComboBox(Form) self.comboBox_city.setGeometry(QtCore.QRect(50, 60, 161, 31)) self.comboBox_city.setEditable(True) self.comboBox_city.setCurrentText("") self.comboBox_city.setIconSize(QtCore.QSize(20, 20)) self.comboBox_city.setObjectName("comboBox_city") self.result = QtWidgets.QTextBrowser(Form) self.result.setGeometry(QtCore.QRect(50, 150, 481, 300)) self.result.setEnabled(False) font = QtGui.QFont() font.setBold(False) font.setWeight(50) self.result.setFont(font) self.result.setObjectName("result") self.keyWord = QtWidgets.QTextEdit(Form) self.keyWord.setEnabled(True) self.keyWord.setGeometry(QtCore.QRect(230, 60, 151, 31)) self.keyWord.setObjectName("keyWord") self.pushButton = QtWidgets.QPushButton(Form) self.pushButton.setGeometry(QtCore.QRect(400, 60, 131, 31)) self.pushButton.setObjectName("pushButton") self.label = QtWidgets.QLabel(Form) self.label.setGeometry(QtCore.QRect(50, 110, 111, 31)) font = QtGui.QFont() font.setFamily("Arial Black") font.setPointSize(14) font.setBold(True) font.setWeight(75) self.label.setFont(font) self.label.setObjectName("label") self.retranslateUi(Form) QtCore.QMetaObject.connectSlotsByName(Form) def retranslateUi(self, Form): _translate = QtCore.QCoreApplication.translate Form.setWindowTitle(_translate("Form", "百度地图商家信息列表")) self.pushButton.setText(_translate("Form", "确定")) self.label.setText(_translate("Form", "查询结果:"))
界面还是不错的,自恋一下。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。
python 爬虫百度地图的信息界面的实现方法
- Author -
猫苘声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@