Installation

Download SimularBrowser.dmg from the official website.

Usage

Open the app, sign in using your google account and start browsing.

Note:

  • You can only use Simular Browser on macOS 15.0+.
  • Make sure to enable accessibility permissions for Simular Browser.

Python API

Simular Browser can be controlled using the Python API.

Installation

Requires SimularBrowser to be installed from the official website.

pip install pysimular

Quick Test

Code
from pysimular import SimularBrowser

browser = SimularBrowser(
    "<path-to-simular-browser>/SimularBrowser.app"
)
response = browser.run("hello how are you?")
print(f"final response: {response}")