Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
from wallpaper import Cubic from bottle import route, run, template @route('/<width>/<height>') def index(width,height): image = Cubic(width=width,height=height,filename='random.png') image.paint() run(host='localhost', port=8135)
image = Cubic(width=int(width), height=int(height), filename='random.png')
@route('/<width:int>/<height:int>')