├── .github └── workflows │ └── publish.yml ├── .gitignore ├── README.md ├── demo.gif ├── examples └── demo.py ├── pyproject.toml ├── src └── screenium │ ├── __init__.py │ ├── draw.py │ └── locator.py ├── tests ├── screenshot.png └── test_locator.py └── uv.lock /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elyase/screenium/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elyase/screenium/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elyase/screenium/HEAD/README.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elyase/screenium/HEAD/demo.gif -------------------------------------------------------------------------------- /examples/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elyase/screenium/HEAD/examples/demo.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elyase/screenium/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/screenium/__init__.py: -------------------------------------------------------------------------------- 1 | from screenium.locator import Text 2 | 3 | __all__ = ["Text"] 4 | -------------------------------------------------------------------------------- /src/screenium/draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elyase/screenium/HEAD/src/screenium/draw.py -------------------------------------------------------------------------------- /src/screenium/locator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elyase/screenium/HEAD/src/screenium/locator.py -------------------------------------------------------------------------------- /tests/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elyase/screenium/HEAD/tests/screenshot.png -------------------------------------------------------------------------------- /tests/test_locator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elyase/screenium/HEAD/tests/test_locator.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elyase/screenium/HEAD/uv.lock --------------------------------------------------------------------------------