Metadata-Version: 1.1
Name: linkmanager
Version: 0.2.2
Summary: Manage your link on terminal
Home-page: https://github.com/mothsART/linkmanager
Author: Ferry Jérémie
Author-email: jerem.ferry@gmail.com
License: BSD
Description: 
        ###########
        LinkManager
        ###########
        
        **LinkManager** manage your link on terminal.
        
        Replace bookmark tool present on browser because :
            * is often heavy
            * dependent of the browser in question
            * has a lot of frills
            * DataBase usage depend on browser
            * find a local link should not require several hundred MB of Ram and eat your CPU
            * one software for one thing (Unix Philosophy)
            * KISS for import/export
            * many other good reasons
        
        
        Requirements
        ------------
        
        Linkmanager depends on **redis** Database and GIT (personnal "clint" version).
        You must install it like this (on debian/ubuntu) :
        
        .. code:: bash
        
            $ sudo apt-get install redis-server git
        
        To enjoy completion, you should put that line in your ~/.bashrc (or ~/.zshrc) :
        
        .. code:: bash
        
            $ eval "$(register-python-argcomplete linkm)"
        
        
        Examples
        --------
        
        .. code:: bash
        
            $ linkm add http://stackoverflow.com # add a link on Database
            $ linkm update http://stackoverflow.com # update properties on a existent link
            $ linkm remove http://stackoverflow.com # remove a link on DataBase
            $ linkm search python linux # search a link a link on DataBase with tags
            $ linkm dump >| backup.json # serialize a entire Database on a JSON file
            $ linkm load backup.json # load a list of links on DataBase
            $ linkm flush # erase all DataBase
        
        Release History
        ===============
        
        0.2 (2014-03-14)
        ----------------
        
         - test it with a Dockerfile (docker.io)
         - setup.py with a dependance not include on pypi : a fork of clint (https://github.com/mothsART/clint)
         - pre-launch redis server
         - change script name + README examples
         - add requirements
         - add HISTORY.rst on MANIFEST.in
        
        0.1 (2014-03-09)
        ----------------
        
        - french translation
        - english manpage
        - AUTHORS.rst and HISTORY.rst file
        
        
        .. _pip: http://www.pip-installer.org/
Keywords: manager link links URL prompt shell
Platform: Linux
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Terminals :: Terminal Emulators/X Terminals
