Skip to content

antoncom/flask-tuieditor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flask-TuiEditor

Flask extension for Tui-Editor

Quick start

NOTE: This is early alpha version. It provides simple integration Tui-Editor to your Flask application. See "example" folder to get it worked.

  1. pip install https://github.com/antoncom/flask-tuieditor/archive/master.zip
  2. Use example/simple/templates/index.html as an example for template editing.
  3. Use the code example below:
from flask import Flask, render_template
from flask_tuieditor import TuiEditor

app = Flask(__name__)

TuiEditor(app)


@app.route('/')
def index():
    return render_template('index.html')


if __name__ == '__main__':
    app.run(debug=True)

Special thanks

About

Tui-editor wrapper for Flask

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published