Metadata-Version: 1.1
Name: noteit
Version: 0.777
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.777
Description: ====================================================================
        :ledger: noteit v2 - note taking with CLI (use GitHub Gist as store)
        ====================================================================
        
        Make Notes with CLI (zero dependence)
        -------------------------------------
        
        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>`_ , they are really awesome.
        Sometimes it is necessary to note something simple and useful: commands like *tar zxvf* or any password. That would be great, if you could make a note simple and fast, and then get it anywhere. I hope, you will enjoy this tool!
        
        
        Features
        ========
        
        * \:octocat: Store data in your gists, so you need GitHub account. By default all notes stored at private gist.
        * \:earth_americas: Share your notes with others.
        * \:books: Use notebooks to organize your notes.
        * \:closed_lock_with_key: Secure. You can encrypt your notes by your own key.
        * \:package: Minimal dependence and size (about 7 kb), all you need is python.
        * \:snake: Support python 2.6, 2.7, 3.4 and upper (for 2.6 you need to install argparse package).
        * \:rocket: Easy to install (curl --silent --show-error --retry 5 http://krukov.pythonanywhere.com//install.sh | sudo sh).
        * \:beginner: Easy to use.
        * >_ CLI - that's awesome. Work at all platforms (I hope).
        
        .. image:: https://github.com/Krukov/noteit/raw/master/demo.gif
        
        
        How it works
        -------------
        
        pass
        
        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
        
        or just
        
        ::
        
        	$ curl --silent --show-error --retry 5 http://krukov.pythonanywhere.com/install.sh | sudo sh
        
        
        How to use
        ----------
        
        ::
        
        	$ /# noteit 
        	>Input username: newUser
        	>Input your password: ****
        	>You do not have notes
        	$ /# noteit My first note
        	>Saved
        	$ /# echo "Noteit can get note from pipe" | noteit -a print_pipe
        	>Saved
        	$ /# noteit 
        	>        ALIAS                     NOTE
        	>
        	> print_pipe      Noteit can get note from pipe
        	>  suscipit       My first note
        	$ /# noteit echo "You can run it"
        	>Saved
        	$ /# noteit -l | sh
        	You can run it
        	$ /# noteit Create note with alias and in notebook -a alias -n mynotebook
        	>Saved
        	$ /# noteit --all
        	>   NOTEBOOK       ALIAS                               NOTE
        	>
        	> mynotebook      alias     Create note with alias and in notebook
        	>              print_pipe   Noteit can get note from pipe
        	>               suscipit    My first note
        	$ /# noteit -a alias
        	>Create note with alias
        	$ /# noteit Super secret note -a ss --key
        	>Input encryption key: *****
        	>Saved
        
        
        *FUTURE*
        ========
         - colorize
         - search
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
