mirror of
https://github.com/pyecharts/pyecharts.git
synced 2026-01-25 17:06:27 +00:00
10 lines
216 B
Python
10 lines
216 B
Python
import codecs
|
|
|
|
|
|
def get_default_rendering_file_content(file_name='render.html'):
|
|
"""
|
|
Simply returns the content render.html
|
|
"""
|
|
with codecs.open(file_name, 'r', 'utf-8') as f:
|
|
return f.read()
|