Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

pyamis

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pyamis

py lib for frontend framework amis which generates valid amis response with json

  • 1.0.1
  • PyPI
  • Socket score

Maintainers
1

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())

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc