mirror of
https://github.com/EDCD/EDDN.git
synced 2025-04-12 07:00:04 +03:00
Use correct property names for commodity stock and demand
This commit is contained in:
parent
d9b5586a4e
commit
48dbdc6584
0
examples/Python 3.4/Client_Complete.bat
Normal file → Executable file
0
examples/Python 3.4/Client_Complete.bat
Normal file → Executable file
10
examples/Python 3.4/Client_Complete.py
Normal file → Executable file
10
examples/Python 3.4/Client_Complete.py
Normal file → Executable file
@ -1,3 +1,5 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import zlib
|
||||
import zmq
|
||||
import simplejson
|
||||
@ -200,12 +202,12 @@ def main():
|
||||
for __commodity in __json['message']['commodities']:
|
||||
echoLog(' - Name: ' + __commodity['name'])
|
||||
echoLog(' - Buy Price: ' + str(__commodity['buyPrice']))
|
||||
echoLog(' - Supply: ' + str(__commodity['supply'])
|
||||
+ ((' (' + __commodity['supplyLevel'] + ')') if 'supplyLevel' in __commodity else '')
|
||||
echoLog(' - Supply: ' + str(__commodity['stock'])
|
||||
+ ((' (' + str(__commodity['stockBracket']) + ')') if 'stockBracket' in __commodity else '')
|
||||
)
|
||||
echoLog(' - Sell Price: ' + str(__commodity['sellPrice']))
|
||||
echoLog(' - Demand: ' + str(__commodity['demand'])
|
||||
+ ((' (' + __commodity['demandLevel'] + ')') if 'demandLevel' in __commodity else '')
|
||||
+ ((' (' + str(__commodity['demandBracket']) + ')') if 'demandBracket' in __commodity else '')
|
||||
)
|
||||
# End example
|
||||
|
||||
@ -231,4 +233,4 @@ def main():
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
main()
|
0
examples/Python 3.4/Client_Simple.bat
Normal file → Executable file
0
examples/Python 3.4/Client_Simple.bat
Normal file → Executable file
0
examples/Python 3.4/Client_Simple.py
Normal file → Executable file
0
examples/Python 3.4/Client_Simple.py
Normal file → Executable file
Loading…
x
Reference in New Issue
Block a user