added basic schema

This commit is contained in:
Swann
2019-02-04 17:58:12 +01:00
parent afd30708f3
commit fa9c594cce
7 changed files with 1258 additions and 36 deletions

23
msgpacktest.py Normal file
View File

@ -0,0 +1,23 @@
import sys
import os
thirdPartyDir = "C:\\Users\\slumber\\repos\\phd\src\\2019_rcf\\libs"
if thirdPartyDir in sys.path:
print('Third party module already added')
else:
print('Adding local modules dir to the path')
sys.path.insert(0, thirdPartyDir)
import umsgpack
import bpy
import esper
#c = umsgpack.packb("test")
#print(umsgpack.unpackb(c))