Skip to content

Commit 9aff1bc

Browse files
committed
SmartMesh SDK 1.1.1.0
1 parent 3e1bca8 commit 9aff1bc

21 files changed

+3040
-57
lines changed

PKG-INFO

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 1.0
22
Name: SmartMeshSDK
3-
Version: 1.1.0.1
3+
Version: 1.1.1.0
44
Summary: UNKNOWN
55
Home-page: UNKNOWN
66
Author: Linear Technology

app/JsonServer/JsonServer.py

+1,022
Large diffs are not rendered by default.

app/JsonServer/NotifReceiver.py

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import pprint
2+
import json
3+
from bottle import route, run, request
4+
5+
LOGFILE = 'NotifReceiver.log'
6+
pp = pprint.PrettyPrinter(indent=4)
7+
8+
@route('<path:path>', method='ANY')
9+
def all(path):
10+
output = []
11+
output += ['='*80]
12+
output += ['method: {0}'.format(request.method)]
13+
output += ['path: {0}'.format(path)]
14+
output += ['body: {0}'.format(pp.pformat(json.loads(request.body.getvalue())))]
15+
output += ['']
16+
output = '\n'.join(output)
17+
print output
18+
with open(LOGFILE,'a') as f:
19+
f.write(output)
20+
21+
run(host='localhost', port=1880)

0 commit comments

Comments
 (0)