All Projects → lixxu → Flask Paginate

lixxu / Flask Paginate

Licence: other
Pagination support for flask

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to Flask Paginate

Flask Rbac
Flask-RBAC
Stars: ✭ 198 (-11.21%)
Mutual labels:  flask
Saas Base
SaaS base application (Flask, Vue, Bootstrap, Webpack)
Stars: ✭ 208 (-6.73%)
Mutual labels:  flask
The Flask Mega Tutorial
📖《The Flask Mega-Tutorial》中文2018最新版📗
Stars: ✭ 221 (-0.9%)
Mutual labels:  flask
Chat
A simple chat app created to experiment with Redis, Gevent, Flask & Server-Sent Events.
Stars: ✭ 202 (-9.42%)
Mutual labels:  flask
Proxypool
An Efficient ProxyPool with Getter, Tester and Server
Stars: ✭ 3,050 (+1267.71%)
Mutual labels:  flask
Scout
RESTful search server written in Python, powered by SQLite.
Stars: ✭ 213 (-4.48%)
Mutual labels:  flask
Bolt Python
A framework to build Slack apps using Python
Stars: ✭ 190 (-14.8%)
Mutual labels:  flask
Flask Jsonrpc
A basic JSON-RPC implementation for your Flask-powered sites
Stars: ✭ 223 (+0%)
Mutual labels:  flask
Ssis Dashboard
HTML5 SQL Server Integration Services Dashboard
Stars: ✭ 206 (-7.62%)
Mutual labels:  flask
Authlib
The ultimate Python library in building OAuth, OpenID Connect clients and servers. JWS,JWE,JWK,JWA,JWT included.
Stars: ✭ 2,854 (+1179.82%)
Mutual labels:  flask
Taisite Platform
最强接口测试平台
Stars: ✭ 203 (-8.97%)
Mutual labels:  flask
Marshmallow Jsonapi
JSON API 1.0 (https://jsonapi.org/) formatting with marshmallow
Stars: ✭ 203 (-8.97%)
Mutual labels:  flask
Uwsgi Nginx Flask Docker
Docker image with uWSGI and Nginx for Flask applications in Python running in a single container. Optionally with Alpine Linux.
Stars: ✭ 2,607 (+1069.06%)
Mutual labels:  flask
Doxbox
web-based OSINT and reconaissance toolkit
Stars: ✭ 202 (-9.42%)
Mutual labels:  flask
Flaskmovie
【正在改版开发中,请勿使用!】Flask电影网站前台+后台管理。
Stars: ✭ 221 (-0.9%)
Mutual labels:  flask
Ok ip proxy pool
🍿爬虫代理IP池(proxy pool) python🍟一个还ok的IP代理池
Stars: ✭ 196 (-12.11%)
Mutual labels:  flask
Ml React App Template
This is a template for creating a Machine Learning application with its front-end developed using React which interacts with a Flask service as the back-end and makes predictions.
Stars: ✭ 210 (-5.83%)
Mutual labels:  flask
Slapdash
Boilerplate for bootstrapping scalable multi-page Dash applications
Stars: ✭ 225 (+0.9%)
Mutual labels:  flask
Titan
Create Discord server widgets for websites of all sizes! A simple to setup process for end-users. Server members may view or send messages into an embedded Discord channel.
Stars: ✭ 221 (-0.9%)
Mutual labels:  flask
Eve Sqlalchemy
SQLAlchemy data layer for Eve-powered RESTful APIs
Stars: ✭ 215 (-3.59%)
Mutual labels:  flask

flask-paginate

Pagination support for flask framework (study from will_paginate). It supports several css frameworks. It requires Python2.6+ as string.format syntax.

If you want to show pagination-info ("Total 100 posts, displaying 20 - 30") above the pagination links, please add the below lines to your css file::

.. sourcecode:: css

.pagination-page-info {
    padding: .6em;
    padding-left: 0;
    width: 40em;
    margin: .5em;
    margin-left: 0;
    font-size: 12px;
}
.pagination-page-info b {
    color: black;
    background: #6aa6ed;
    padding-left: 2px;
    padding: .1em .25em;
    font-size: 150%;
}

Full documentation: http://flask-paginate.readthedocs.io

Run example:

$cd example
$python sql.py
$python sql.py init_db
$python sql.py fill_data --total=310
$cp app.cfg.example app.cfg
$echo edit app.cfg
$python app.py --port 5000

Open http://localhost:5000 to see the example page.

demo

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].