evollution

Results 4 issues of evollution

``` @app.route("/data", methods=['GET']) def data(): columns = [ ColumnDT(Customer.id), ColumnDT(Customer.Email), ] query = db.session.query(Customer) params = request.args.to_dict() rowTable = DataTables(params, query, columns) print(query , file=sys.stdout) return jsonify(rowTable.output_result()) ``` and i...

Hello, I would like to run the terminal in read-only mode, what this means is basically i start my terminal with a specific command : http://localhost:8888/?hostname=xx&username=yy&password=str_base64_encoded&command=htop and after that I...

Hi , I am using this code: ``` @amazon.route("/data")` def datatables(): table = DataTable(request.args, Order, db.session.query(Order), [ "id", ("AmazonOrderId", "AmazonOrderId"), ("OrderStatus", "OrderStatus"), ]) return json.dumps(table.json()) ``` But i get {"error":...

Hello, do you think mouse movement, or scrolling can be dome with this app? I think that can help into making your server more human ?

enhancement