1 Star 3 Fork 0

Toby_lai/statlang

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
statlang.py 627 Bytes
一键复制 编辑 原始数据 按行查看 历史
Toby 提交于 2020-09-19 20:43 . readme,insallation update
import imports
import click,sys
pack='''import imports
core=imports.core
code="""|code_here|"""
core.runcode(code)'''
@click.command()
@click.option('--run',type=str,help='run a statlang (.statlng) file')
def runfile(run):
if(run):
try:
with open(run,encoding='utf-8')as fp:
data=fp.read()
# print(data)
imports.core.runcode(data)
except FileNotFoundError:
print(f"[Errno 2] No such file or directory: '{run}'")
else:
try:
imports.ErrorStop=False
imports.core.runcode('info:')
while True:
code=input('>>>')
imports.core.runcode(code)
except KeyboardInterrupt:
sys.exit()
runfile()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/toby_lai/statlang.git
[email protected]:toby_lai/statlang.git
toby_lai
statlang
statlang
master

搜索帮助