Metadata-Version: 1.1
Name: marlin
Version: 0.94
Summary: A fast and easy ReST API on top of redis
Home-page: http://atmb4u.github.io/marlin
Author: Anoop Thomas Mathew
Author-email: atmb4u@gmail.com
License: BSD
Description: Marlin
        ======
        
        ### Easy Rest API to bootstrap applications.
        
        The need for a
        
        ```bash
        
        pip install marlin
        
        marlin start
        
        marlin stats
        
        marlin stop
        
        marlin restart
        
        marlin runserver
        ```
        
        
        | METHOD        | URL                               | RESPONSE    |  DESCRIPTION |
        | ------------- |:--------------------------------: | :----------:| :-----------:|
        | GET           | /api/v1/<model>/?start=0&end=10   |[data] (0-10)|
        | GET           | /api/v1/<model>/1                 |  data item  |
        | POST          | /api/v1/<model>/                  |    [data]   |
        | GET           | /api/v1/<model>/                  |    [data]   |
        | GET           | /api/v1/<model>/                  |    [data]   |
        | GET           | /api/v1/<model>/                  |    [data]   |
        
        ```config
        [SERVER]
        DEBUG=True
        PID_FILE = '/tmp/marlin.pid'
        LOG_FILE = '/tmp/marlin.log'
        
        [REDIS]
        REDIS_SERVER = localhost
        REDIS_PORT = 6379
        API_PREFIX = /api/
        
        [APP]
        APP_NAME = marlin
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Environment :: Console
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Internet :: WWW/HTTP
