CMHopeSunshine / amis-python

基于百度Amis前端框架的Python Pydantic模型封装。/ Python Pydantic model encapsulation based on Baidu Amis front-end framework.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

amis-python

license python version

基于 百度amis 前端框架的python pydantic模型封装。

由于原版本缺少大量amis新版本的组件或配置,因此本项目在其版本的基础上进行了扩充。

相比fastapi-amis-admin的版本:

  • 涵盖amis截至3.1.0版本的所有组件
  • 使用jinja2模板
  • 支持修改主题

安装

pip install amis-python

简单使用

from amis.components import Page

page = Page(title='新页面', body='Hello World')
# 输出为python字典
print(page.to_dict())
# 输出为json
print(page.to_json())
# 输出为str
print(page.render())
# 保存为html文件
with open('HelloWorld.html', 'w', encoding='utf-8') as f:
    f.write(page.render())

详细使用

详见amis官方文档

感谢

About

基于百度Amis前端框架的Python Pydantic模型封装。/ Python Pydantic model encapsulation based on Baidu Amis front-end framework.

License:Apache License 2.0


Languages

Language:Python 95.7%Language:Jinja 4.3%