Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Write byte data in file python

f = open('./put/your/path/here.png', 'wb') # wb stand for "write byte" on the file
f.write(data)
f.close()
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #Write #byte #data #file #python
ADD COMMENT
Topic
Name
9+5 =