Новичок в питоне! Собрал простой проект и хочу вывести данные в окне!
import sys, requests
from PyQt5.QtWidgets import QApplication, QWidget
from PyQt5.QtGui import QIcon
url = 'http://api.cryptonator.com/api/ticker/btc-rub'
response = requests.get(url)
class Example(QWidget):
def __init__(self):
super().__init__()
self.initUI()
def initUI(self):
self.setGeometry(300, 300, 300, 220)
self.show(response.json())
if __name__ == '__main__':
app = QApplication(sys.argv)
ex = Example()
sys.exit(app.exec_())
В self.show пытаюсь вывести, но выбивает такую ошибку
TypeError: show(self): too many arguments