{"id":14065390,"url":"https://github.com/klen/flask-restler","last_synced_at":"2025-06-17T10:13:22.470Z","repository":{"id":55016997,"uuid":"54931215","full_name":"klen/flask-restler","owner":"klen","description":"Yet another REST library for Flask","archived":false,"fork":false,"pushed_at":"2024-04-08T16:11:37.000Z","size":1170,"stargazers_count":16,"open_issues_count":7,"forks_count":6,"subscribers_count":3,"default_branch":"develop","last_synced_at":"2025-05-22T16:21:29.629Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/klen.png","metadata":{"files":{"readme":"README.rst","changelog":"Changelog","contributing":"CONTRIBUTING.rst","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS.rst","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-03-28T23:39:36.000Z","updated_at":"2025-04-09T10:11:00.000Z","dependencies_parsed_at":"2024-05-28T00:30:10.480Z","dependency_job_id":"85d499bd-4379-4e1e-acfd-b02bde87e558","html_url":"https://github.com/klen/flask-restler","commit_stats":{"total_commits":243,"total_committers":4,"mean_commits":60.75,"dds":"0.13168724279835387","last_synced_commit":"0813dd115c99cc7b996896e00b8576aa90fc99b7"},"previous_names":[],"tags_count":100,"template":false,"template_full_name":null,"purl":"pkg:github/klen/flask-restler","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/klen%2Fflask-restler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/klen%2Fflask-restler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/klen%2Fflask-restler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/klen%2Fflask-restler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/klen","download_url":"https://codeload.github.com/klen/flask-restler/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/klen%2Fflask-restler/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260336371,"owners_count":22993742,"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":[],"created_at":"2024-08-13T07:04:28.063Z","updated_at":"2025-06-17T10:13:17.458Z","avatar_url":"https://github.com/klen.png","language":"Python","funding_links":[],"categories":["Python"],"sub_categories":[],"readme":"The Flask RESTler\n#################\n\n.. _badges:\n\n.. image:: http://img.shields.io/travis/klen/falsk-restler.svg?style=flat-square\n    :target: http://travis-ci.org/klen/falsk-restler\n    :alt: Build Status\n\n.. image:: http://img.shields.io/pypi/v/flask-restler.svg?style=flat-square\n    :target: https://pypi.python.org/pypi/flask-restler\n    :alt: Version\n\n.. image:: http://img.shields.io/pypi/dm/flask-restler.svg?style=flat-square\n    :target: https://pypi.python.org/pypi/flask-restler\n    :alt: Downloads\n\n.. _description:\n\nThe Flask RESTler -- Build REST API for Flask_ using Marshmallow_.\n\nHas builded support for SQLAlchemy_, Peewee_ ORM and Pymongo_.\n\nExample \"Hello User\" with the Flask-resler:\n\n.. code-block:: python\n\n    from flask_restler import Api, Resource\n\n\n    # flask_restler.Api is subclass of Flask.Blueprint\n    api = Api('My awesome API', __name__, url_prefix='/api/v1')\n\n    # flask_restler.Resource is subclass of Flask.views.View\n    @api.connect\n    class HelloResource(Resource):\n\n        def get(self, resource=None):\n            return 'Hello World!'\n\n\n    # Register with your application\n    from your_project import app\n\n    app.register_blueprint(api)\n\n    if __name__ == '__main__':\n        app.run()\n\n\nRun the application and open http://localhost:5000/api/v1/ in your browser.\n\n\n.. _contents:\n\n.. contents::\n\nRequirements\n=============\n\n- python 2.7+,3.4+\n\n.. _installation:\n\nInstallation\n=============\n\n**Flask-RESTler** should be installed using pip: ::\n\n    pip install flask-restler\n\n.. _usage:\n\nUsage\n=====\n\nDocs in progress. Would like to help? Create a PR.\n\n\n.. _bugtracker:\n\nBug tracker\n===========\n\nIf you have any suggestions, bug reports or\nannoyances please report them to the issue tracker\nat https://github.com/klen/flask-restler/issues\n\n.. _contributing:\n\nContributing\n============\n\nDevelopment of The Flask-restler happens at: https://github.com/klen/flask-restler\n\n\nContributors\n=============\n\n* `Kirill Klenov \u003chttps://github.com/klen\u003e`_\n\n.. _license:\n\nLicense\n========\n\nLicensed under a MIT license (See LICENSE)\n\nIf you wish to express your appreciation for the project, you are welcome to\nsend a postcard to: ::\n\n    Kirill Klenov\n    pos. Severny 8-3\n    MO, Istra, 143500\n    Russia\n\n.. _links:\n\n.. _klen: https://github.com/klen\n.. _Flask: http://flask.pocoo.org/\n.. _Marshmallow: https://marshmallow.readthedocs.org/en/latest/\n.. _Peewee: http://docs.peewee-orm.com/en/latest/\n.. _SQLAlchemy: http://www.sqlalchemy.org/\n.. _Pymongo: https://api.mongodb.com/python/current/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fklen%2Fflask-restler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fklen%2Fflask-restler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fklen%2Fflask-restler/lists"}