silviud / flask-sqlalchemy-sharding-example

This is an example application of Flask-SQLAlchemy horizontal sharding.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Flask-SQLAlchemy Sharding Example

Python 3

This is an example application of Flask-SQLAlchemy horizontal sharding.

Installing modules

ENV=tmp
python3 -m venv $HOME/.venv/$ENV
$HOME/.venv/$ENV/bin/python -m pip install -U pip -r requirements.txt

Running server

FLASK_APP=app.py FLASK_DEBUG=1 $HOME/.venv/$ENV/bin/flask run

Using APIs

Post your account.

ACCOUNT_ID=me
ACCOUNT_NAME=Me

curl -d id=$ACCOUNT_ID \
     -d name=$ACCOUNT_NAME \
     http://localhost:5000/accounts

Get account.

curl http://localhost:5000/accounts/$ACCOUNT_ID

About

This is an example application of Flask-SQLAlchemy horizontal sharding.


Languages

Language:Python 100.0%