mirror of
https://github.com/browser-use/browser-use
synced 2026-05-06 17:52:15 +02:00
- Changed `_get_recent_events_str` method in `dom_watchdog.py` to return recent events as JSON instead of CSV, enhancing data structure and usability. - Updated tests in `test_browser_event_ClickElementEvent.py`, `test_browser_event_NavigateToUrlEvent.py`, and others to reflect changes in event handling and improve error handling. - Marked several tests as skipped due to known issues, ensuring clarity in test results.
Codebase Structure
The code structure inspired by https://github.com/Netflix/dispatch.
Very good structure on how to make a scalable codebase is also in this repo.
Just a brief document about how we should structure our backend codebase.
Code Structure
src/
/<service name>/
models.py
services.py
prompts.py
views.py
utils.py
routers.py
/_<subservice name>/
Service.py
Always a single file, except if it becomes too long - more than ~500 lines, split it into _subservices
Views.py
Always split the views into two parts
# All
...
# Requests
...
# Responses
...
If too long → split into multiple files
Prompts.py
Single file; if too long → split into multiple files (one prompt per file or so)
Routers.py
Never split into more than one file