PyWebIO demos Basic demo and data visualization demo of PyWebIO. PyWebIO的基本demo和数据可视化demo
()
| 101 | |
| 102 | |
| 103 | def main(): |
| 104 | """PyWebIO demos |
| 105 | |
| 106 | Basic demo and data visualization demo of PyWebIO. |
| 107 | PyWebIO的基本demo和数据可视化demo |
| 108 | """ |
| 109 | put_row([ |
| 110 | put_markdown('# PyWebIO demos'), |
| 111 | put_html( |
| 112 | '<a class="github-button" data-size="large" href="https://github.com/wang0618/PyWebIO" data-show-count="true" aria-label="Star wang0618/PyWebIO on GitHub">Star</a>') |
| 113 | ], size='1fr auto').style('align-items:center') |
| 114 | put_html('<script async defer src="https://buttons.github.io/buttons.js"></script>') |
| 115 | |
| 116 | if 'zh' in session_info.user_language: |
| 117 | put_markdown(index_md_zh) |
| 118 | else: |
| 119 | put_markdown(index_md) |
nothing calls this directly
no test coverage detected
searching dependent graphs…