Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sh4nks/flask-emoji
Flask extension to add support for Emojis.
https://github.com/sh4nks/flask-emoji
emoji extension flask flask-emoji flask-extensions python
Last synced: 2 months ago
JSON representation
Flask extension to add support for Emojis.
- Host: GitHub
- URL: https://github.com/sh4nks/flask-emoji
- Owner: sh4nks
- License: other
- Archived: true
- Created: 2015-02-21T10:57:44.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-02-06T18:13:24.000Z (almost 8 years ago)
- Last Synced: 2024-06-02T10:34:48.808Z (7 months ago)
- Topics: emoji, extension, flask, flask-emoji, flask-extensions, python
- Language: HTML
- Size: 2.19 MB
- Stars: 11
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.org/sh4nks/flask-emoji.svg?branch=master)](https://travis-ci.org/sh4nks/flask-emoji)
[![Coverage Status](https://coveralls.io/repos/sh4nks/flask-emoji/badge.png)](https://coveralls.io/r/sh4nks/flask-emoji)# Flask-Emoji
Flask-Emoji provides an easy way to add emoji support to your Flask
application.# Quickstart
Install it from PyPI:
$ pip install Flask-Emoji
You can either bind Flask-Emoji directly to a specific application instance
app = Flask(__name__)
emoji = Emoji(app)or by using the factory pattern, you can bind it to one or more instances:
emoji = Emoji()
def create_app():
app = Flask(__name__)
emoji.init_app(app)
return app# Links
* [Documentation](https://flask-emoji.readthedocs.io)
* [Source Code](https://github.com/sh4nks/flask-emoji)
* [Issues](https://github.com/sh4nks/flask-emoji/issues)