techshot25 / DataTables-Python-Serverside

Serverside DataTables processing using python

Repository from Github https://github.comtechshot25/DataTables-Python-ServersideRepository from Github https://github.comtechshot25/DataTables-Python-Serverside

Serverside processing with Python

This builds the backend engine that handles processing of a JQuery DataTable.

Server side processing is ideal to prevent processing of large data directly on the client side. This implementation does it in python.


Example using flask

from flask import Flask

app = Flask(__name__)

@app.route('/api', methods=["GET", "POST"])
def api():
    pass

About

Serverside DataTables processing using python


Languages

Language:Python 77.8%Language:HTML 22.2%