├── .gitignore ├── README.md ├── Screen Pilot.mp4 ├── config.py ├── core ├── __init__.py ├── action_sequence.py ├── base_tool.py ├── element.py ├── keyboard.py ├── mouse.py ├── screen_capture.py └── scroll.py ├── main.py ├── requirements.txt └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mtehabsim/ScreenPilot/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mtehabsim/ScreenPilot/HEAD/README.md -------------------------------------------------------------------------------- /Screen Pilot.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mtehabsim/ScreenPilot/HEAD/Screen Pilot.mp4 -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mtehabsim/ScreenPilot/HEAD/config.py -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/action_sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mtehabsim/ScreenPilot/HEAD/core/action_sequence.py -------------------------------------------------------------------------------- /core/base_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mtehabsim/ScreenPilot/HEAD/core/base_tool.py -------------------------------------------------------------------------------- /core/element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mtehabsim/ScreenPilot/HEAD/core/element.py -------------------------------------------------------------------------------- /core/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mtehabsim/ScreenPilot/HEAD/core/keyboard.py -------------------------------------------------------------------------------- /core/mouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mtehabsim/ScreenPilot/HEAD/core/mouse.py -------------------------------------------------------------------------------- /core/screen_capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mtehabsim/ScreenPilot/HEAD/core/screen_capture.py -------------------------------------------------------------------------------- /core/scroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mtehabsim/ScreenPilot/HEAD/core/scroll.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mtehabsim/ScreenPilot/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mtehabsim/ScreenPilot/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mtehabsim/ScreenPilot/HEAD/utils.py --------------------------------------------------------------------------------