A fork of https://github.com/Synerty/SOAPpy-py3 This is a working tree till fixes get imported upstream.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

9 lines
196 B

  1. import sys
  2. sys.path.insert(1, "..")
  3. from SOAPpy import *
  4. one = typedArrayType(data=[1],typed=type(1))
  5. tmp = typedArrayType(data=[], typed=type(1))
  6. print(buildSOAP( one ))
  7. print(buildSOAP( tmp ))