We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 424ef82 commit 4c87396Copy full SHA for 4c87396
pysmartprice/results.py
@@ -1,3 +1,9 @@
1
+import json
2
+
3
4
class SmartPriceResult(object):
5
def __init__(self, params):
6
self.__dict__.update(params)
7
8
+ def dumpjson(self):
9
+ return json.dumps(self.__dict__)
0 commit comments