| 2 | from structure import Structure |
| 3 | |
| 4 | class Ticker(Structure): |
| 5 | name = String() |
| 6 | price = Float() |
| 7 | date = String() |
| 8 | time = String() |
| 9 | change = Float() |
| 10 | open = Float() |
| 11 | high = Float() |
| 12 | low = Float() |
| 13 | volume = Integer() |
| 14 | |
| 15 | from cofollow import consumer, follow |
| 16 | from tableformat import create_formatter |