py lib for frontend framework amis which generates valid amis response with json
Project description
PyAmis
1. Installation
Install with pip
pip install pyamis
2. Examples
from __future__ import print_function
from pyamis import mod
table = mod.Table(
title='AmisTable'
)
table.set_title('A Amis Table Example')
table.add_column('text', 'measurement', '${mea}')
table.add_column('text', 'avg value', '${avg_value}')
table.add_column('text', '90% value', '${percent_90}')
table.add_column('text', '99% value', '${percent_99}')
table.add_column('text', '99.9% value', '${percent_999}')
rows_dict = {
'mea': 'mb/s',
'avg_value': 11,
'percent_90': 11.5,
'percent_99': 11.54,
'percent_999': 11.55,
}
table.set_rows([rows_dict])
# call xx.render() will get the json data that amis needs
# print(table.render())
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
pyamis-1.0.1.tar.gz
(3.5 kB
view details)
File details
Details for the file pyamis-1.0.1.tar.gz
.
File metadata
- Download URL: pyamis-1.0.1.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.19.5 CPython/2.7.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 42d21d580fed75297736a75499351f485dbcf4c1dc2ee279a4c2a85d2d850a1d |
|
MD5 | 286696a9971dfc47725ac94135540749 |
|
BLAKE2b-256 | cf68665a05565f0eeabaec259c6abeeb7821fe62dc38afc9042f1af0a5b614dd |