mirror of
https://github.com/ok-oldking/ok-wuthering-waves.git
synced 2025-04-24 08:25:16 +00:00
10 lines
204 B
Python
10 lines
204 B
Python
if __name__ == '__main__':
|
|
from config import config
|
|
from ok.OK import OK
|
|
|
|
config = config
|
|
config['debug'] = True
|
|
config['ocr']['lib'] = 'paddleocr'
|
|
ok = OK(config)
|
|
ok.start()
|