def help_dialog(self):
help_message = QtWidgets.QMessageBox()
help_message.setWindowTitle('Imgur Client Help')
help_message.setText('You must supply your own imgur client id and client secret in order for this app to use '
'the imgur api.<br><br>Due to the limits imposed by the imgur api, it is necessary for '
'each user to get their own credentials from imgur.com and supply them to the app for '
'personal use.<br>Each client is only allowed 12,200 requests per day, so to keep '
'each user from running out of requests, this client information is not '
'supplied by the app.<br><br>Please follow the link below to obtain an imgur client-id'
'and client-secret. You will need an imgur account<br><br>Recommended details to enter:'
'<br>Application name: Downloader for Reddit<br>Authorization type: Anonymous usage '
'without authorization<br>Authorization callback url: https://google.com (any valid url '
'will work here and it does not matter for anonymous usage)<br>Application '
'website: https://github.com/MalloyDelacroix/DownloaderForReddit<br>Email: '
'Your email address to email your credentials to.')
help_message.setTextFormat(QtCore.Qt.RichText)
help_message.setInformativeText("<a href='https://api.imgur.com/oauth2/addclient'>https://api.imgur.com/oauth2/addclient<a/>")
help_message.exec_()
ImgurClientDialog.py 文件源码
python
阅读 27
收藏 0
点赞 0
评论 0
评论列表
文章目录