https://github.com/norihiro/untriseptium
A GUI automation library in python with OCR
https://github.com/norihiro/untriseptium
Last synced: 4 months ago
JSON representation
A GUI automation library in python with OCR
- Host: GitHub
- URL: https://github.com/norihiro/untriseptium
- Owner: norihiro
- License: gpl-3.0
- Created: 2023-04-29T09:39:59.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-03T05:51:36.000Z (over 1 year ago)
- Last Synced: 2024-04-14T05:31:15.453Z (10 months ago)
- Language: Python
- Size: 47.9 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Untriseptium
A GUI automation library in python with OCR.
## Example usage
Below is an example to run OCR on a screen, find a text, and click it.
```python
import untriseptium
u = untriseptium.Untriseptium()
u.capture()
u.find_text('Sign in').click()
```## Acknowledgments
- [pyautogui](https://github.com/asweigart/pyautogui) - A frontend to access the desktop
- [Tesseract](https://github.com/tesseract-ocr/tesseract) - An open source OCR engine
- [pytesseract](https://pypi.org/project/pytesseract/) - An interface for python to access Tesseract