{"id":26507404,"url":"https://github.com/getfleety/flask-coralillo","last_synced_at":"2026-04-29T08:34:43.604Z","repository":{"id":57430243,"uuid":"100971686","full_name":"getfleety/flask-coralillo","owner":"getfleety","description":"Flask integration for the Coralillo Redis ORM","archived":false,"fork":false,"pushed_at":"2018-07-06T22:34:19.000Z","size":8,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-17T13:04:18.366Z","etag":null,"topics":["flask","orm","python","redis"],"latest_commit_sha":null,"homepage":"https://getfleety.github.io/coralillo","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/getfleety.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-08-21T16:24:33.000Z","updated_at":"2018-07-06T22:34:21.000Z","dependencies_parsed_at":"2022-08-26T04:43:28.112Z","dependency_job_id":null,"html_url":"https://github.com/getfleety/flask-coralillo","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getfleety%2Fflask-coralillo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getfleety%2Fflask-coralillo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getfleety%2Fflask-coralillo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getfleety%2Fflask-coralillo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/getfleety","download_url":"https://codeload.github.com/getfleety/flask-coralillo/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244583192,"owners_count":20476233,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["flask","orm","python","redis"],"created_at":"2025-03-20T23:19:14.593Z","updated_at":"2026-04-29T08:34:38.582Z","avatar_url":"https://github.com/getfleety.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"Flask Coralillo\n===============\n\n.. image:: https://travis-ci.org/getfleety/flask-coralillo.svg?branch=master\n    :target: https://travis-ci.org/getfleety/flask-coralillo\n\nIntegrates the Coralillo Redis ORM into flask\n\nUsage\n-----\n\nThis is an easy application that stores and retrieves cars from redis database.\n\n.. code-block:: python\n\n    # app.py\n    from flask import Flask, request, redirect\n    from flask_coralillo import Coralillo\n    from coralillo import Model, fields\n\n    app = Flask(__name__)\n\n    engine = Coralillo(app)\n\n    class Car(Model):\n        name = fields.Text()\n\n        class Meta:\n            engine = engine\n\n    @app.route('/')\n    def list_cars():\n        res = '\u003ch1\u003eCars\u003c/h1\u003e\u003cul\u003e'\n\n        for car in Car.get_all():\n            res += '\u003cli\u003e{}\u003c/li\u003e'.format(car.name)\n\n        res += '\u003c/ul\u003e\u003ch3\u003eAdd car\u003c/h3\u003e' + \\\n            '\u003cform method=\"POST\"\u003e' + \\\n            '\u003cinput name=\"name\"\u003e' + \\\n            '\u003cinput type=\"submit\" value=\"Add\"\u003e' + \\\n            '\u003c/form\u003e'\n\n        return res\n\n    @app.route('/', methods=['POST'])\n    def add_car():\n        newcar = Car.validate(**request.form.to_dict()).save()\n\n        return redirect('/')\n\n    if __name__ == '__main__':\n        app.run()\n\nNow if you run ``python app.py`` and you visit ``http://localhost:5000`` you will be able to intercact with your brand new Flask-Coralillo application.\n\nFor more information visit https://getfleety.github.io/coralillo/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgetfleety%2Fflask-coralillo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgetfleety%2Fflask-coralillo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgetfleety%2Fflask-coralillo/lists"}