Metadata-Version: 1.1
Name: write
Version: 0.0.1
Summary: write(path,content), open.write replacement. python2 and python3 compatible
Home-page: https://github.com/russianidiot/write.py/
Author: russianidiot
Author-email: UNKNOWN
License: UNKNOWN
Description: 	
        Install
        '''''''
        
        github.com_: :code:`pip install git+git://github.com/russianidiot/write.py.git`
        
        pypi.python.org_: :code:`pip install write`
        
        download_: :code:`python setup.py install` or :code:`setup/.setup.py develop.command`
        
        .. _github.com: http://github.com/russianidiot/write.py
        .. _pypi.python.org: https://pypi.python.org/pypi/write
        .. _download: https://github.com/russianidiot/write.py/archive/master.zip
        
        	
        
        	
        
        	
        
        Usage 
        '''''
        .. code-block::
        
        	from write import *
        
        	write(path,'string')
        	open(path).read()
        	>>>> 'string'
        
        	write(path,None) # touch
        	open(path).read()
        	>>>> ''
        
        	write(path,1488)
        	open(path).read()
        	>>>> '1488'
        
        	write(path,dict())
        	open(path).read()
        	>>>> '{}'
        
        ------------
        
        **Tested**: python 2.6, 2.7, 3+
        
        **Bug Tracker**: `github.com/russianidiot/write.py/issues`__
        
        __ https://github.com/russianidiot/write.py/issues
Keywords: write file
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Natural Language :: Russian
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
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.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries :: Python Modules
