Metadata-Version: 2.1
Name: write
Version: 2018.11.22
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
Keywords: write file
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
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
Requires-Dist: mkdir
Requires-Dist: public
Requires-Dist: setuptools

[![](https://img.shields.io/pypi/pyversions/write.svg?longCache=True)](https://pypi.org/pypi/write/)

#### Install
```bash
$ [sudo] pip install write
```

#### Functions
function|description
-|-
`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>

