Metadata-Version: 1.1
Name: noteit
Version: 0.9.0
Summary: The tool for creating notes
Home-page: https://github.com/Krukov/noteit
Author: Dmitry Krukov
Author-email: glebov.ru@gmail.com
License: MIT
Download-URL: https://github.com/Krukov/noteit/tarball/0.9.0
Description: ======================================
        noteit - create and get notes anywhere 
        ======================================
        .. image:: https://img.shields.io/badge/version-beta-yellow.svg
        .. image:: https://travis-ci.org/Krukov/noteit-backend.svg?branch=master
            :target: https://travis-ci.org/Krukov/noteit-backend
        .. image:: https://img.shields.io/coveralls/Krukov/noteit-backend.svg
            :target: https://coveralls.io/r/Krukov/noteit-backend
        
        --------------------------------
        The tool for simple store notes
        --------------------------------
        
        I created this tool for my own purposes, but I will be glad if you'll use it too.
        
        I love commandline tools like `howdoi <https://github.com/gleitz/howdoi>`_ or `fuckit <https://github.com/ajalt/fuckitpy>`_, they are really awesome.
        Sometimes it is nesessary to note something simple and usefull: commands like *tar zxvf* or any password (it is bad idea). That will be great, if you could make a note simple and fast, and then get it anywhere. I hope, you will enjoy my tool!
        
        
        How to
        =================
        
        Install
        -----------------
        
        
        There are 3 ways to install this tool:
        
        * simple/true/pythonic way:
        
        ::
        
        	pip install noteit
        
        * manual install way (for those who do not use pip)
        
        ::
        
        	$ wget https://raw.githubusercontent.com/Krukov/noteit/stable/noteit/noteit -O /usr/bin/noteit --no-check-certificate
        	$ chmod +x /usr/bin/noteit
        
        
        
        * curl way (for those who do not want install)
        
        ::
        
        	$ python -c "$(curl -s https://raw.githubusercontent.com/Krukov/noteit/stable/noteit/noteit)" [ARGUMENTS]
        
        
        * hardcore curl way (for those who do not use python :fire:)
        
        Soon
        
        
        Using
        ------------
        
        ::
        
        	$ /# noteit 
        	>Input username: krukov
        	>Input your password: 
        	>If you are not registered yet, answer the question 'Do you like this tool?': yes
        	>You haven't notes
        	$ /# noteit My first note
        	>Note saved
        	$ /# echo "Noteit can get note from pipe" | noteit 
        	>Note saved
        	$ /# noteit 
        	>1: Noteit can get note from pipe
        	>2: My first note
        	$ /# noteit echo "You can run it"
        	>Note saved
        	$ /# noteit -l | sh
        	You can run it
        
        
        
        *FUTURE*
        ==========
         - json base api
         - drop note
         - save files
         - browse notes as html
        
Keywords: noteit note console command line messages
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
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
