Shoemaker2 is a modular RPA solution designed to automate the retrieval of real estate tax data. It includes:
- Command-Line and GUI interfaces.
- Modular architecture for scalability and flexibility.
Shoemaker2/ ├─ src/ │ ├─ orchestrator/ │ │ ├─ init.py │ │ ├─ main_orchestrator.py # Entry point for CLI and GUI │ │ ├─ gui_orchestrator.py # GUI logic │ │ │ ├─ cases/ │ │ ├─ init.py │ │ └─ case_processor.py │ │ │ ├─ parsers/ │ │ ├─ init.py │ │ └─ html_parser.py │ │ │ ├─ drivers/ │ │ ├─ init.py │ │ └─ browser_driver.py │ │ │ ├─ utils/ │ │ ├─ init.py │ │ ├─ config.py │ │ ├─ logger.py │ │ └─ helpers.py │ │ │ ├─ init.py │ ├─ tests/ │ ├─ init.py │ └─ test_case_processor.py │ ├─ requirements.txt ├─ README.md