Installation
$ [sudo] pip install write
Examples
>>> import write
>>> write.write("not-existing-folder/file",'string')
>>> open("not-existing-folder/file").read()
'string'
:open_file_folder: write(path,content) - open.write replacement. Creates directory if it doesn't exist
$ [sudo] pip install write
>>> import write
>>> write.write("not-existing-folder/file",'string')
>>> open("not-existing-folder/file").read()
'string'