{% extends "extensions/layout.html" %} {% block title %}Creating Extensions{% endblock %} {% block body %}
Extensions to Flask are regular Python packages. But there are some rules you should/must follow so that we can enlist your extension on the Flask extension registry:
flaskext.
namespace package. This makes it easier for others to locate
your extension and does not clutter the PyPI index with generic
toplevel packages.
To simplify creating new extensions there is a script that can bootstrap a new extension: flask-extension-wizard
We scan the PyPI index in regular intervals for new Flask packages so your extension should sooner or later end up here. If this is not quick enough for you, send me a mail.
If you need some help on extension development check out the guide on extension development and consider joining the mailinglist and IRC channel. {% endblock %}