Metadata-Version: 1.0
Name: habits
Version: 0.0.12
Summary: A lightweight habit tracker with a simple REST API.
Home-page: http://github.com/csu/habits
Author: Christopher Su
Author-email: chris+gh@christopher.su
License: GPL v3
Description: habits
        ======
        
        A lightweight habit tracker.
        
        Features
        --------
        
        -  Support for SQLite, MySQL, and Postgres databases
        -  Simple web interface
        -  `REST-ful API <#api>`_
        
        .. figure:: http://i.imgur.com/PAx8PW9.jpg
           :align: center
           :alt: 
        
        Installation
        ------------
        
        ::
        
            git clone https://github.com/csu/habits.git
            cd habits
            # make a Python virtual environment, if you want
            pip install -r requirements.txt
            bower install
            python server.py
        
        API
        ---
        
        ::
        
            Base URL: /api/
        
            Endpoints:
            GET /habits - Get all habits
            GET /habits/names - Get a mapping of habit slugs to names
            GET /habits/<habit_slug> - Get the slug and name for a habit
            POST /habits/<habit_slug> - Make a new habit
            GET /entries/export - Get all entries
            GET /entries/<YYYY-MM-DD date string> - Get entry for a day
            POST /entries/<YYYY-MM-DD date string> - Set entry for a day
            POST /entries/<YYYY-MM-DD>/<habit_slug> - Set the value for a habit on a day
        
        
Keywords: habits,quantified self,data,api
Platform: UNKNOWN
