An open API service indexing awesome lists of open source software.

https://github.com/objarni/remind-backend

Python+Flask+redis+Heroku based web service implementing GTD Collect+Process API
https://github.com/objarni/remind-backend

Last synced: 7 months ago
JSON representation

Python+Flask+redis+Heroku based web service implementing GTD Collect+Process API

Awesome Lists containing this project

README

          

ReMind web service
==================

This web service implements three operations:

1. `add(text, book)`. Save a (unicode) text string to a book.
2. `list(book)`. List the texts of a book.
3. `remove_top(book)`. Remove top item in a book.

A book is identified by an email adress, so in practice each text note is associated with an email adress.

The texts are listed in reverse order of add; list text added is
first item returned. Remove always removes the first item in a
book, i.e. the last added text.

The UI for ReMind is implemented by [remind-frontend](https://github.com/objarni/remind-frontend).

Tech
----

Implemented in [Python](http://www.python.org) and [Flask](http://flask.pocoo.org/), with [redis](http://redis.io/) to store book content.

Built with [Heroku](http://heroku.com/) deployment in mind.