all the project copy
This commit is contained in:
12
node_sid/sid.py
Normal file
12
node_sid/sid.py
Normal file
@@ -0,0 +1,12 @@
|
||||
|
||||
|
||||
import subprocess
|
||||
|
||||
def getSid():
|
||||
p = subprocess.Popen(['node', 'sid.js'], stdout=subprocess.PIPE)
|
||||
out = str(p.stdout.read())
|
||||
out_format = (out[2:])[:-3]
|
||||
print(out_format)
|
||||
return out_format
|
||||
|
||||
getSid()
|
||||
Reference in New Issue
Block a user