Metadata-Version: 2.1
Name: write
Version: 2019.3.24
Summary: write(path,content) - open.write replacement. Creates directory if it doesn't exist
Home-page: https://github.com/looking-for-a-job/write.py
License: UNKNOWN
Description: [![](https://img.shields.io/pypi/pyversions/write.svg?longCache=True)](https://pypi.org/pypi/write/)
        [![](https://img.shields.io/pypi/v/write.svg?maxAge=3600)](https://pypi.org/pypi/write/)
        [![Travis](https://api.travis-ci.org/looking-for-a-job/write.py.svg?branch=master)](https://travis-ci.org/looking-for-a-job/write.py/)
        
        #### Install
        ```bash
        $ [sudo] pip install write
        ```
        
        #### Functions
        function|`__doc__`
        -|-
        `write.write(path, content)`|write content to file. Creates directory if it doesn't exist
        
        #### Examples
        ```python
        >>> import write
        
        >>> write.write("not-existing-folder/file",'string')
        >>> open("not-existing-folder/file").read()
        'string'
        ```
        
        <p align="center"><a href="https://pypi.org/project/readme-md/">readme-md</a> - README.md generator</p>
Keywords: write file
Platform: UNKNOWN
Classifier: License :: Public Domain
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development
Description-Content-Type: text/markdown
