代码拉取完成,页面将自动刷新
#! /usr/bin/env python3
# -*- coding: utf-8 -*-
# -*- mode: python -*-
import distutils.spawn
import subprocess
import sys
start_script = '''
import autokey.iomediator
import autokey.configmanager.configmanager
import autokey.scripting as scripting
import autokey.scripting.highlevel as hl
system = scripting.System()
print("""
AutoKey functions from “autokey.scripting.highlevel” (under name “hl”)
and “autokey.scripting.System()” (under name “system”) are imported.
You can try the functions on the interpreter. For example:
help(hl.click_on_pat)
print(system.exec_command('ls'))
""")
'''
ipython3_cmd = distutils.spawn.find_executable('ipython3')
if ipython3_cmd is not None:
retcode = subprocess.call([ipython3_cmd, '-ic', start_script])
raise SystemExit(retcode)
python3_path = distutils.spawn.find_executable('python3')
if python3_path is not None:
retcode = subprocess.call([python3_path, '-ic', start_script])
raise SystemExit(retcode)
print('\033[91m' + 'Error! No Python 3 shell found.' + '\033[0m')
sys.exit(1)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。