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
- Host: GitHub
- URL: https://github.com/objarni/remind-backend
- Owner: objarni
- Created: 2015-09-09T11:30:10.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-10-16T09:04:10.000Z (over 10 years ago)
- Last Synced: 2025-02-06T11:55:19.059Z (over 1 year ago)
- Language: Python
- Size: 215 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.