MCPcopy
hub / github.com/owocki/pytrader / getify

Function getify

history/views.py:15–23  ·  view source on GitHub ↗
(dic)

Source from the content-addressed store, hash-verified

13
14
15def getify(dic):
16 st = str()
17 for K, V in dic.iteritems():
18 if type(V) is list:
19 for v in V:
20 st += K+'='+v+'&'
21 else:
22 st += K+'='+V+'&'
23 return st.rstrip('&')
24
25
26def get_scatter_chart(pts, x_axis, symbol):

Callers 4

nn_chart_viewFunction · 0.85
c_chart_viewFunction · 0.85
profit_viewFunction · 0.85
optimize_viewFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected