Metadata-Version: 1.1
Name: Snape
Version: 1.0
Summary: Minimalism snippet manager
Home-page: https://github.com/xiaket/Snape
Author: Kai Xia
Author-email: xiaket@gmail.com
License: UNKNOWN
Description: # Snape
        
        Snape is a minimalism snippets manager written in Python. You may add/search a snippet, all data is saved into a local json file, you can modify the json file at will and put that file with other dot files under version control.
        
        Of course the name comes from Harry Potter, as mentioned by Harry potter:
        
        > He was probably the bravest man I ever knew.
        
        I think we all need a little bravery from time to time.
        
        
        # Installation and usage
        
        The installation is plain and simple, just use pip to install it.
        
        ```
        pip install Snape
        ```
        
        To add a snippet, run `Snape add [name of snippeet]`, for example:
        
        ```
        {~}Snape add python post json
        Enter/Paste your content. Ctrl-D to save it.
        import requests, json
        url = 'http://127.0.0.1:27182/api/account'
        headers = {'Content-type': 'application/json', 'Accept': 'text/plain'}
        data = {'name': 1, 'param': 2}
        response = requests.post(url, data=json.dumps(data), headers=headers}
        ```
        
        Please note that after you have added all the data there, you need to add an `Enter` and a `Ctrl-D` to send an `EOL` to mark the end of the stream.
        
        After that, the snippet would be saved to `~/.snape.json`.
        
        You can list all the snippets by running `Snape`. You can also search the snippets with `Snape search [query]` to look for the snippet you need.
        
        There's no intention to add the ability to modify or remove a snippet, since you can easily do that with any editor you like.
Keywords: snippet manager,snippets
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Utilities
