初始化提交
This commit is contained in:
8
common/templates/python/get.py
Normal file
8
common/templates/python/get.py
Normal file
@@ -0,0 +1,8 @@
|
||||
import sys
|
||||
import ubinascii
|
||||
with open('{{&path}}', 'rb') as infile:
|
||||
while True:
|
||||
result = infile.read(32)
|
||||
if result == b'':
|
||||
break
|
||||
len = sys.stdout.write(ubinascii.hexlify(result))
|
||||
Reference in New Issue
Block a user