Metadata-Version: 2.1
Name: write
Version: 2019.4.13
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://pypi.org/project/readme-generator/
        https://pypi.org/project/python-readme-generator/
        -->
        
        [![](https://img.shields.io/pypi/pyversions/write.svg?longCache=True)](https://pypi.org/project/write/)
        
        #### Installation
        ```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/python-readme-generator/">python-readme-generator</a>
        </p>
Keywords: write file
Platform: UNKNOWN
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
Description-Content-Type: text/markdown
