17ec681f3Smrg#!/usr/bin/env python3 27ec681f3Smrg# Copyright © 2019-2020 Intel Corporation 37ec681f3Smrg 47ec681f3Smrg# Permission is hereby granted, free of charge, to any person obtaining a copy 57ec681f3Smrg# of this software and associated documentation files (the "Software"), to deal 67ec681f3Smrg# in the Software without restriction, including without limitation the rights 77ec681f3Smrg# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 87ec681f3Smrg# copies of the Software, and to permit persons to whom the Software is 97ec681f3Smrg# furnished to do so, subject to the following conditions: 107ec681f3Smrg 117ec681f3Smrg# The above copyright notice and this permission notice shall be included in 127ec681f3Smrg# all copies or substantial portions of the Software. 137ec681f3Smrg 147ec681f3Smrg# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 157ec681f3Smrg# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 167ec681f3Smrg# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 177ec681f3Smrg# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 187ec681f3Smrg# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 197ec681f3Smrg# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 207ec681f3Smrg# SOFTWARE. 217ec681f3Smrg 227ec681f3Smrgimport asyncio 237ec681f3Smrg 247ec681f3Smrgimport urwid 257ec681f3Smrg 267ec681f3Smrgfrom pick.ui import UI, PALETTE 277ec681f3Smrg 287ec681f3Smrgif __name__ == "__main__": 297ec681f3Smrg u = UI() 307ec681f3Smrg evl = urwid.AsyncioEventLoop(loop=asyncio.get_event_loop()) 317ec681f3Smrg loop = urwid.MainLoop(u.render(), PALETTE, event_loop=evl, handle_mouse=False) 327ec681f3Smrg u.mainloop = loop 337ec681f3Smrg loop.run() 34