Skip to content

Instantly share code, notes, and snippets.

@harunyasar
Created January 15, 2016 11:49
Show Gist options
  • Save harunyasar/57baf471f9139f4780c0 to your computer and use it in GitHub Desktop.
Save harunyasar/57baf471f9139f4780c0 to your computer and use it in GitHub Desktop.
Byte or string to XML convert
str = 'Your byte string'
file = open('xmlToSave.xml', 'wb')
file.write(str.decode('base64'))
file.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment