You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

api.py 177 B

2 years ago
123456789
  1. class API:
  2. '''本地API,供前端JS调用'''
  3. window = None
  4. def getOwner(self):
  5. self.window.evaluate_js('getPythonData()')
  6. return '我是Python'