MCPcopy Create free account
hub / github.com/dabeaz-course/python-mastery / Ticker

Class Ticker

Solutions/8_6/coticker.py:5–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 3

StringClass · 0.90
FloatClass · 0.90
IntegerClass · 0.90

Tested by

no test coverage detected