all the project copy

This commit is contained in:
2026-07-16 12:27:06 +02:00
parent 926b7de75b
commit 568beef49a
631 changed files with 130346 additions and 0 deletions

12
node_sid/sid.py Normal file
View 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()