A dict() like interface to your database.
Project description
Flask-Dictabase
A dict() like interface to your database.
Install
pip install flask_dictabase
Here is a simple flask app implementation.
import random
import string
from flask import (
Flask,
render_template,
redirect
)
import flask_dictabase
app = Flask('User Management')
# if you would like to specify the SQLAlchemy database then you can do:
# app.config['DATABASE_URL'] = 'sqlite:///my.db'
db = flask_dictabase.Dictabase(app)
class UserClass(flask_dictabase.BaseTable):
pass
@app.route('/')
def Index():
return render_template(
'users.html',
users=db.FindAll(UserClass),
)
@app.route('/update_user_uption/<userID>/<state>')
def UpdateUser(userID, state):
newState = {'true': True, 'false': False}.get(state.lower(), None)
user = db.FindOne(UserClass, id=int(userID))
user['state'] = newState # This is immediately saved to the database.
return redirect('/')
@app.route('/new')
def NewUser():
email = ''.join([random.choice(string.ascii_letters) for i in range(10)])
email += '@'
email += ''.join([random.choice(string.ascii_letters) for i in range(5)])
email += '.com'
newUser = db.New(UserClass, email=email, state=bool(random.randint(0, 1)))
print('newUser=', newUser) # This is now immediately saved to the database.
return redirect('/')
@app.route('/delete/<userID>')
def Delete(userID):
user = db.FindOne(UserClass, id=int(userID))
print('user=', user)
if user:
db.Delete(user) # User is now removed from the database.
return redirect('/')
if __name__ == '__main__':
app.run(
debug=True,
threaded=True,
)
Unsupported Types
If you want to store more complex information like list() and dict(), you can use the .Set() and .Get() helper methods. These convert your values to/from json to be stored in the db as a string.
myList = [1,2,3,4,5] #
user = db.FindOne(UserClass, id=1)
if user:
user.Set('myList', myList)
user2 = db.FindOne(UserClass, id=1)
print('user2.Get('myList')=', user2.Get('myList'))
Output
>>> user2.Get('myList')= [1, 2, 3, 4, 5]
You can also use a different function to load/dump the values. Like python’s pickle module.
import pickle
myList = [1,2,3,4,5] #
user = db.FindOne(UserClass, id=1)
if user:
user.Set('myList', myList, dumper=pickle.dumps, dumperKwargs={})
user2 = db.FindOne(UserClass, id=1)
print('user2.Get('myList')=', user2.Get('myList', loader=pickle.loads))
You can also provide a default argument to .Get()
user = db.FindOne(UserClass, id=1)
user.Get('missingKey', None) # return None if key is missing, else return the dumped value
Gunicorn
Supports multiple workers (-w config option). Example:
gunicorn main:app -w 4 -b localhost:8080
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file flask_dictabase-1.0.8.tar.gz.
File metadata
- Download URL: flask_dictabase-1.0.8.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9760370b7b7f1f1e704adc5a8d9c15ffb2b3aa471bfbe3c3a162f41ca74eadc
|
|
| MD5 |
4bd1c74d0b4f98e3cc1829c632dd90dd
|
|
| BLAKE2b-256 |
14c2719f438b1dda135a548b2e806d24799ee3c66e02026b416631aa767c002c
|
File details
Details for the file flask_dictabase-1.0.8-py3-none-any.whl.
File metadata
- Download URL: flask_dictabase-1.0.8-py3-none-any.whl
- Upload date:
- Size: 3.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
693409799338d00a11567cb2e5524f9552367ab0eca352d2078d5857950cdd3b
|
|
| MD5 |
19edf9784bc9406c3ab4c3207b3be746
|
|
| BLAKE2b-256 |
60c9ae7543f9d29bd61fc73cc0cd2deea8f73d345d99d4a38b4860c4ec89da58
|