2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ipythonのpromptでbitcoinの価格を表示してみた。

Posted at

bitcoin price api

code

from IPython.terminal.prompts import Prompts, Token
from exchanges.bitfinex import Bitfinex
import os

class MyPrompt(Prompts):
    def in_prompt_tokens(self, cli=None):
        return [(Token, os.getcwd()),
                (Token.Prompt, ' ' + str(Bitfinex().get_current_price()) + ' >>>')]
                 
ip = get_ipython()
ip.prompts = MyPrompt(ip)

screenshot_2017_9_28.png

conclusion

cool but it is so slow!.
and if we have to show the price on screen, the tmux status bar might be a better place.

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?