Metadata-Version: 1.2
Name: write
Version: 1.0.1
Summary: write(path,content), open.write replacement. python2 and python3 compatible
Home-page: UNKNOWN
Author: UNKNOWN
Author-email: UNKNOWN
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/looking-for-a-job/write.py/issues
Project-URL: Homepage, https://github.com/looking-for-a-job/write.py
Description-Content-Type: UNKNOWN
Description: .. image:: https://img.shields.io/pypi/pyversions/write.svg?maxAge=86400
            :target: https://pypi.org/pypi/write/
        
        |
        
        .. image:: https://www.codefactor.io/repository/github/looking-for-a-job/write.py/badge
            :target: https://www.codefactor.io/repository/github/looking-for-a-job/write.py
        .. image:: https://codeclimate.com/github/looking-for-a-job/write.py/badges/gpa.svg
            :target: https://codeclimate.com/github/looking-for-a-job/write.py
        .. image:: https://img.shields.io/scrutinizer/g/looking-for-a-job/write.py.svg
            :target: https://scrutinizer-ci.com/g/looking-for-a-job/write.py/
        .. image:: https://bettercodehub.com/edge/badge/looking-for-a-job/write.py?branch=master
            :target: https://bettercodehub.com/results/looking-for-a-job/write.py
        .. image:: https://sonarcloud.io/api/project_badges/measure?project=write.py&metric=code_smells
            :target: https://sonarcloud.io/dashboard?id=write.py
        
        Install
        ```````
        
        
        .. code:: bash
        
            `[sudo] pip install write`
        
        Usage
        `````
        
        
        .. code:: python
        
            >>> from write import write
            
            >>> write(path,text)
        
        
        Examples
        ````````
        
        
        .. code:: python
        
            >>> write(path,'string')
            >>> open(path).read()
            'string'
            
            >>> write(path,None) # touch
            >>> open(path).read()
            ''
            
            >>> write(path,42) # write integer
            >>> open(path).read()
            '42'
            
            >>> write(path,dict()) # converted to str
            >>> open(path).read()
            '{}'
        
        
        
        ----
        
        .. image:: https://img.shields.io/github/followers/looking-for-a-job.svg?style=social&label=Follow&maxAge=86400
            :target: https://github.com/looking-for-a-job
        
        .. image:: https://img.shields.io/github/stars/looking-for-a-job/write.py.svg?style=social&label=Stars&maxAge=86400
            :target: https://github.com/looking-for-a-job/write.py
        
        .. image:: https://img.shields.io/github/issues/looking-for-a-job/write.py.svg?maxAge=86400
            :target: https://github.com/looking-for-a-job/write.py/issues
        
Keywords: write,file
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Natural Language :: Russian
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.0
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.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
Classifier: Topic :: Software Development :: Libraries :: Python Modules
