Metadata-Version: 1.0
Name: Gistpy
Version: 0.1.0
Summary: Command line client for gist.
Home-page: https://github.com/bluele/Gistpy
Author: Jun Kimura
Author-email: junkxdev@gmail.com
License: MIT
Description: ================
        Gistpy
        ================
        
        :Author:	Jun Kimura
        :Licence: 	MIT
        
        Description
        ------------
        
        Command line client for gist(API v3).
        
        
        Installation
        ------------
        
        pypi::
        
        	$ pip install gistpy
        	$ gistpy -h
        
        Source code::
        
        	$ python setup.py install
        	$ gistpy -h
        
        
        Usage
        ------------
        
        Authorization::
        
        	$ export GISTPY_USER=username & export GISTPY_PASSWORD=password
        	$ gistpy register
        	$ export GISTPY_TOKEN=xxxxxxxxxxx
        
        
        Get::
        
        	$ gistpy get <gistid> <destination_directory>
        
        
        Create::
        
        	$ gistpy create [gistids...]		# public
        	$ gistpy create [gistids...] -d "description"
        	$ gistpy create [gistids...] -a 	# as anonymous
        	$ gistpy create [gistids...] -p 	# private
        	
        	$ echo "test" | gistpy
        	$ echo "test" | gistpy -p # private
        	$ echo "test" | gistpy -a # as anonymous
        
        
        Edit::
        
        	$ gistpy edit <gistid> [files...]
        	
        	
        Delete::
        
        	$ gistpy delete <gistid>
        	
        
        Display the help of each command. ::
        
        	$ gistpy <command> -h
        	
        
Keywords: cli client gist github sourcecode
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Topic :: System :: Shells
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
