Difficult-Rocket/test/gui/format/html_format.py
2022-01-19 20:21:57 +08:00

45 lines
949 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# -------------------------------
# Difficult Rocket
# Copyright © 2021 by shenjackyuanjie
# All rights reserved
# -------------------------------
"""
writen by shenjackyuanjie
mail: 3695888@qq.com
github: @shenjackyuanjie
gitee: @shenjackyuanjie
"""
import os
import cProfile
os.chdir('..')
os.chdir('..')
os.chdir('..')
from Difficult_Rocket.guis.format import html
try_texts = [
'明天天气很好',
'从前有座山,山里有座庙, **is it**?',
'啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊。阿巴巴巴',
'阿瓦达达瓦的aiwdhaihdwia.awdaiwhdahwido[12312](123131)',
'1231231dawdawd65ewwe56er56*awdadad*aaa**阿伟大的阿瓦打我的**'
]
def main_test():
for text in try_texts:
print(text)
print(html.decode_text2HTML(text))
print('------')
check = True
if check:
cProfile.run('main_test()', sort='calls')
else:
main_test()