本文整理汇总了Python中core.Core.get_quote_price方法的典型用法代码示例。如果您正苦于以下问题:Python Core.get_quote_price方法的具体用法?Python Core.get_quote_price怎么用?Python Core.get_quote_price使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类core.Core
的用法示例。
在下文中一共展示了Core.get_quote_price方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: keypad
# 需要导入模块: from core import Core [as 别名]
# 或者: from core.Core import get_quote_price [as 别名]
keypad(stdscr, True)
start_color()
init_pair(1, COLOR_WHITE, COLOR_BLACK)
init_pair(2, COLOR_CYAN, COLOR_BLACK)
init_pair(3, COLOR_WHITE, COLOR_GREEN)
init_pair(5, COLOR_WHITE, COLOR_RED)
init_pair(4, COLOR_YELLOW, COLOR_BLACK)
def render_screen():
for i in rlib.elements:
i.render()
basic_text.content = ft.format_value(ft.basic_currency) + ft.b_char
quote_text.content = ft.format_value(ft.quote_currency) + ft.q_char
mvaddstr(4, 0, getmaxyx(stdscr)[1]*'-')
buffer_price = ft.get_quote_price()
def update_price():
while (True):
''' ИНДУССКИЙ КОД! '''
global buffer_price
global price_text
buf = ft.get_quote_price()
income = ft.quote_currency*buf - ft.quote_currency*ft.last_quote_price
price_color = 1
if (buffer_price < buf): price_color = 3
if (buffer_price > buf): price_color = 5
buffer_price = buf
price_text.content = str(buf)
price_text.attr = color_pair(price_color) | A_BOLD
if(ft.last_quote_price!=0):
income_text.content = 'Income: ' + str(income).split('.')[0]