Skip to content

Instantly share code, notes, and snippets.

View seaweasel's full-sized avatar

solidus seaweasel

  • Large LLC
  • Oort Cloud, Local Group
View GitHub Profile
@theorm
theorm / __init__.py
Last active April 14, 2020 18:45
Pluggable API using Flask MethodView.
# -*- coding: utf-8 -*-
from .bananas import Bananas
from .base import the_api
the_api.add_url_rule('/bananas', view_func=Bananas.as_view('bananas'))
the_api.add_url_rule('/farm/<farm_id>/bananas', view_func=Bananas.as_view('bananas_from_a_farm'))
__all__ = [