File size: 1,255 Bytes
d95db82
 
23dfd24
 
d95db82
936e0a7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f1d43f8
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39


import simplestart as ss

ss.md("# SimpleStart Introduction", color="#3451b2")

ss.space()
ss.md('''
### A Python Web Development Tool Without Frontend Programming
SimpleStart is a tool that allows web development without the need for frontend coding. All development work is done in Python on the backend, enabling users to easily create web applications without needing to master HTML, CSS, JavaScript, Ajax, and other technologies.
''')

ss.space()

ss.md('''
### Offers a Rich Set of Components
SimpleStart provides a variety of components needed for web development, including text, buttons, lists, tables, audio, and video. It supports containers and layouts while allowing users to customize components.
''')

ss.space()

ss.md('''
### Provides Data Visualization Support
SimpleStart enables data visualization through images, tables, Plot charts, and SQLite databases. It supports both static and interactive charts and offers features for displaying and editing data.
''')

ss.space()
ss.md("---")
ss.write("For installation and usage information, please visit")
ss.md('''
[Online Help](http://www.simplestart.cc)
''')


def locale():
    ss.send_message("change_locale", {"locale":"zh"});
    

ss.button("Chinese 中文版", onclick = locale)