browser_get_weather
Browser Get Weather
Get current weather conditions for the user's detected location. Returns temperature, conditions, humidity, and other weather data.
Usage Example
1234567891011
import asyncio
from owl_browser import OwlBrowser, RemoteConfig
# Async usage
async with OwlBrowser(config) as browser:
context = await browser.create_context()
context_id = context["context_id"]
await browser.get_weather(
)
Response
Returns a JSON object with the operation result.
{
"success": true,
"result": <value>
}