optexity-browser-use 0.9.5__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (147) hide show
  1. browser_use/__init__.py +157 -0
  2. browser_use/actor/__init__.py +11 -0
  3. browser_use/actor/element.py +1175 -0
  4. browser_use/actor/mouse.py +134 -0
  5. browser_use/actor/page.py +561 -0
  6. browser_use/actor/playground/flights.py +41 -0
  7. browser_use/actor/playground/mixed_automation.py +54 -0
  8. browser_use/actor/playground/playground.py +236 -0
  9. browser_use/actor/utils.py +176 -0
  10. browser_use/agent/cloud_events.py +282 -0
  11. browser_use/agent/gif.py +424 -0
  12. browser_use/agent/judge.py +170 -0
  13. browser_use/agent/message_manager/service.py +473 -0
  14. browser_use/agent/message_manager/utils.py +52 -0
  15. browser_use/agent/message_manager/views.py +98 -0
  16. browser_use/agent/prompts.py +413 -0
  17. browser_use/agent/service.py +2316 -0
  18. browser_use/agent/system_prompt.md +185 -0
  19. browser_use/agent/system_prompt_flash.md +10 -0
  20. browser_use/agent/system_prompt_no_thinking.md +183 -0
  21. browser_use/agent/views.py +743 -0
  22. browser_use/browser/__init__.py +41 -0
  23. browser_use/browser/cloud/cloud.py +203 -0
  24. browser_use/browser/cloud/views.py +89 -0
  25. browser_use/browser/events.py +578 -0
  26. browser_use/browser/profile.py +1158 -0
  27. browser_use/browser/python_highlights.py +548 -0
  28. browser_use/browser/session.py +3225 -0
  29. browser_use/browser/session_manager.py +399 -0
  30. browser_use/browser/video_recorder.py +162 -0
  31. browser_use/browser/views.py +200 -0
  32. browser_use/browser/watchdog_base.py +260 -0
  33. browser_use/browser/watchdogs/__init__.py +0 -0
  34. browser_use/browser/watchdogs/aboutblank_watchdog.py +253 -0
  35. browser_use/browser/watchdogs/crash_watchdog.py +335 -0
  36. browser_use/browser/watchdogs/default_action_watchdog.py +2729 -0
  37. browser_use/browser/watchdogs/dom_watchdog.py +817 -0
  38. browser_use/browser/watchdogs/downloads_watchdog.py +1277 -0
  39. browser_use/browser/watchdogs/local_browser_watchdog.py +461 -0
  40. browser_use/browser/watchdogs/permissions_watchdog.py +43 -0
  41. browser_use/browser/watchdogs/popups_watchdog.py +143 -0
  42. browser_use/browser/watchdogs/recording_watchdog.py +126 -0
  43. browser_use/browser/watchdogs/screenshot_watchdog.py +62 -0
  44. browser_use/browser/watchdogs/security_watchdog.py +280 -0
  45. browser_use/browser/watchdogs/storage_state_watchdog.py +335 -0
  46. browser_use/cli.py +2359 -0
  47. browser_use/code_use/__init__.py +16 -0
  48. browser_use/code_use/formatting.py +192 -0
  49. browser_use/code_use/namespace.py +665 -0
  50. browser_use/code_use/notebook_export.py +276 -0
  51. browser_use/code_use/service.py +1340 -0
  52. browser_use/code_use/system_prompt.md +574 -0
  53. browser_use/code_use/utils.py +150 -0
  54. browser_use/code_use/views.py +171 -0
  55. browser_use/config.py +505 -0
  56. browser_use/controller/__init__.py +3 -0
  57. browser_use/dom/enhanced_snapshot.py +161 -0
  58. browser_use/dom/markdown_extractor.py +169 -0
  59. browser_use/dom/playground/extraction.py +312 -0
  60. browser_use/dom/playground/multi_act.py +32 -0
  61. browser_use/dom/serializer/clickable_elements.py +200 -0
  62. browser_use/dom/serializer/code_use_serializer.py +287 -0
  63. browser_use/dom/serializer/eval_serializer.py +478 -0
  64. browser_use/dom/serializer/html_serializer.py +212 -0
  65. browser_use/dom/serializer/paint_order.py +197 -0
  66. browser_use/dom/serializer/serializer.py +1170 -0
  67. browser_use/dom/service.py +825 -0
  68. browser_use/dom/utils.py +129 -0
  69. browser_use/dom/views.py +906 -0
  70. browser_use/exceptions.py +5 -0
  71. browser_use/filesystem/__init__.py +0 -0
  72. browser_use/filesystem/file_system.py +619 -0
  73. browser_use/init_cmd.py +376 -0
  74. browser_use/integrations/gmail/__init__.py +24 -0
  75. browser_use/integrations/gmail/actions.py +115 -0
  76. browser_use/integrations/gmail/service.py +225 -0
  77. browser_use/llm/__init__.py +155 -0
  78. browser_use/llm/anthropic/chat.py +242 -0
  79. browser_use/llm/anthropic/serializer.py +312 -0
  80. browser_use/llm/aws/__init__.py +36 -0
  81. browser_use/llm/aws/chat_anthropic.py +242 -0
  82. browser_use/llm/aws/chat_bedrock.py +289 -0
  83. browser_use/llm/aws/serializer.py +257 -0
  84. browser_use/llm/azure/chat.py +91 -0
  85. browser_use/llm/base.py +57 -0
  86. browser_use/llm/browser_use/__init__.py +3 -0
  87. browser_use/llm/browser_use/chat.py +201 -0
  88. browser_use/llm/cerebras/chat.py +193 -0
  89. browser_use/llm/cerebras/serializer.py +109 -0
  90. browser_use/llm/deepseek/chat.py +212 -0
  91. browser_use/llm/deepseek/serializer.py +109 -0
  92. browser_use/llm/exceptions.py +29 -0
  93. browser_use/llm/google/__init__.py +3 -0
  94. browser_use/llm/google/chat.py +542 -0
  95. browser_use/llm/google/serializer.py +120 -0
  96. browser_use/llm/groq/chat.py +229 -0
  97. browser_use/llm/groq/parser.py +158 -0
  98. browser_use/llm/groq/serializer.py +159 -0
  99. browser_use/llm/messages.py +238 -0
  100. browser_use/llm/models.py +271 -0
  101. browser_use/llm/oci_raw/__init__.py +10 -0
  102. browser_use/llm/oci_raw/chat.py +443 -0
  103. browser_use/llm/oci_raw/serializer.py +229 -0
  104. browser_use/llm/ollama/chat.py +97 -0
  105. browser_use/llm/ollama/serializer.py +143 -0
  106. browser_use/llm/openai/chat.py +264 -0
  107. browser_use/llm/openai/like.py +15 -0
  108. browser_use/llm/openai/serializer.py +165 -0
  109. browser_use/llm/openrouter/chat.py +211 -0
  110. browser_use/llm/openrouter/serializer.py +26 -0
  111. browser_use/llm/schema.py +176 -0
  112. browser_use/llm/views.py +48 -0
  113. browser_use/logging_config.py +330 -0
  114. browser_use/mcp/__init__.py +18 -0
  115. browser_use/mcp/__main__.py +12 -0
  116. browser_use/mcp/client.py +544 -0
  117. browser_use/mcp/controller.py +264 -0
  118. browser_use/mcp/server.py +1114 -0
  119. browser_use/observability.py +204 -0
  120. browser_use/py.typed +0 -0
  121. browser_use/sandbox/__init__.py +41 -0
  122. browser_use/sandbox/sandbox.py +637 -0
  123. browser_use/sandbox/views.py +132 -0
  124. browser_use/screenshots/__init__.py +1 -0
  125. browser_use/screenshots/service.py +52 -0
  126. browser_use/sync/__init__.py +6 -0
  127. browser_use/sync/auth.py +357 -0
  128. browser_use/sync/service.py +161 -0
  129. browser_use/telemetry/__init__.py +51 -0
  130. browser_use/telemetry/service.py +112 -0
  131. browser_use/telemetry/views.py +101 -0
  132. browser_use/tokens/__init__.py +0 -0
  133. browser_use/tokens/custom_pricing.py +24 -0
  134. browser_use/tokens/mappings.py +4 -0
  135. browser_use/tokens/service.py +580 -0
  136. browser_use/tokens/views.py +108 -0
  137. browser_use/tools/registry/service.py +572 -0
  138. browser_use/tools/registry/views.py +174 -0
  139. browser_use/tools/service.py +1675 -0
  140. browser_use/tools/utils.py +82 -0
  141. browser_use/tools/views.py +100 -0
  142. browser_use/utils.py +670 -0
  143. optexity_browser_use-0.9.5.dist-info/METADATA +344 -0
  144. optexity_browser_use-0.9.5.dist-info/RECORD +147 -0
  145. optexity_browser_use-0.9.5.dist-info/WHEEL +4 -0
  146. optexity_browser_use-0.9.5.dist-info/entry_points.txt +3 -0
  147. optexity_browser_use-0.9.5.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,344 @@
1
+ Metadata-Version: 2.4
2
+ Name: optexity-browser-use
3
+ Version: 0.9.5
4
+ Summary: Make websites accessible for AI agents
5
+ Project-URL: Repository, https://github.com/browser-use/browser-use
6
+ Author: Gregor Zunic
7
+ License-File: LICENSE
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Operating System :: OS Independent
10
+ Classifier: Programming Language :: Python :: 3
11
+ Requires-Python: <4.0,>=3.11
12
+ Requires-Dist: aiohttp==3.12.15
13
+ Requires-Dist: anthropic<1.0.0,>=0.68.1
14
+ Requires-Dist: anyio>=4.9.0
15
+ Requires-Dist: authlib>=1.6.0
16
+ Requires-Dist: bubus>=1.5.6
17
+ Requires-Dist: cdp-use>=1.4.0
18
+ Requires-Dist: click>=8.1.8
19
+ Requires-Dist: cloudpickle>=3.1.1
20
+ Requires-Dist: google-api-core>=2.25.0
21
+ Requires-Dist: google-api-python-client>=2.174.0
22
+ Requires-Dist: google-auth-oauthlib>=1.2.2
23
+ Requires-Dist: google-auth>=2.40.3
24
+ Requires-Dist: google-genai<2.0.0,>=1.29.0
25
+ Requires-Dist: groq>=0.30.0
26
+ Requires-Dist: httpx>=0.28.1
27
+ Requires-Dist: inquirerpy>=0.3.4
28
+ Requires-Dist: markdownify>=1.2.0
29
+ Requires-Dist: mcp>=1.10.1
30
+ Requires-Dist: ollama>=0.5.1
31
+ Requires-Dist: openai<2.0.0,>=1.99.2
32
+ Requires-Dist: pillow>=11.2.1
33
+ Requires-Dist: portalocker<3.0.0,>=2.7.0
34
+ Requires-Dist: posthog>=3.7.0
35
+ Requires-Dist: psutil>=7.0.0
36
+ Requires-Dist: pydantic>=2.11.5
37
+ Requires-Dist: pyobjc>=11.0; platform_system == 'darwin'
38
+ Requires-Dist: pyotp>=2.9.0
39
+ Requires-Dist: pypdf>=5.7.0
40
+ Requires-Dist: python-docx>=1.2.0
41
+ Requires-Dist: python-dotenv>=1.0.1
42
+ Requires-Dist: reportlab>=4.0.0
43
+ Requires-Dist: requests>=2.32.3
44
+ Requires-Dist: rich>=14.0.0
45
+ Requires-Dist: screeninfo>=0.8.1; platform_system != 'darwin'
46
+ Requires-Dist: typing-extensions>=4.12.2
47
+ Requires-Dist: uuid7>=0.1.0
48
+ Provides-Extra: all
49
+ Requires-Dist: browser-use[aws,cli,examples,oci]; extra == 'all'
50
+ Provides-Extra: aws
51
+ Requires-Dist: boto3>=1.38.45; extra == 'aws'
52
+ Provides-Extra: cli
53
+ Requires-Dist: textual>=3.2.0; extra == 'cli'
54
+ Provides-Extra: cli-oci
55
+ Requires-Dist: browser-use[cli,oci]; extra == 'cli-oci'
56
+ Provides-Extra: code
57
+ Requires-Dist: matplotlib>=3.9.0; extra == 'code'
58
+ Requires-Dist: numpy>=2.3.2; extra == 'code'
59
+ Requires-Dist: pandas>=2.2.0; extra == 'code'
60
+ Requires-Dist: tabulate>=0.9.0; extra == 'code'
61
+ Provides-Extra: eval
62
+ Requires-Dist: anyio>=4.9.0; extra == 'eval'
63
+ Requires-Dist: datamodel-code-generator>=0.26.0; extra == 'eval'
64
+ Requires-Dist: lmnr[all]==0.7.17; extra == 'eval'
65
+ Requires-Dist: psutil>=7.0.0; extra == 'eval'
66
+ Provides-Extra: examples
67
+ Requires-Dist: agentmail==0.0.59; extra == 'examples'
68
+ Requires-Dist: botocore>=1.37.23; extra == 'examples'
69
+ Requires-Dist: imgcat>=0.6.0; extra == 'examples'
70
+ Requires-Dist: langchain-openai>=0.3.26; extra == 'examples'
71
+ Provides-Extra: oci
72
+ Requires-Dist: oci>=2.126.4; extra == 'oci'
73
+ Provides-Extra: video
74
+ Requires-Dist: imageio[ffmpeg]>=2.37.0; extra == 'video'
75
+ Requires-Dist: numpy>=2.3.2; extra == 'video'
76
+ Description-Content-Type: text/markdown
77
+
78
+ <picture>
79
+ <source media="(prefers-color-scheme: light)" srcset="https://github.com/user-attachments/assets/2ccdb752-22fb-41c7-8948-857fc1ad7e24"">
80
+ <source media="(prefers-color-scheme: dark)" srcset="https://github.com/user-attachments/assets/774a46d5-27a0-490c-b7d0-e65fcbbfa358">
81
+ <img alt="Shows a black Browser Use Logo in light color mode and a white one in dark color mode." src="https://github.com/user-attachments/assets/2ccdb752-22fb-41c7-8948-857fc1ad7e24" width="full">
82
+ </picture>
83
+
84
+ <div align="center">
85
+ <picture>
86
+ <source media="(prefers-color-scheme: light)" srcset="https://github.com/user-attachments/assets/9955dda9-ede3-4971-8ee0-91cbc3850125"">
87
+ <source media="(prefers-color-scheme: dark)" srcset="https://github.com/user-attachments/assets/6797d09b-8ac3-4cb9-ba07-b289e080765a">
88
+ <img alt="The AI browser agent." src="https://github.com/user-attachments/assets/9955dda9-ede3-4971-8ee0-91cbc3850125" width="400">
89
+ </picture>
90
+ </div>
91
+
92
+ <div align="center">
93
+ <img src="https://media.browser-use.tools/badges/package" height="48" alt="Browser-Use Package Download Statistics">
94
+ </div>
95
+
96
+ ---
97
+
98
+ <div align="center">
99
+ <a href="#demos"><img src="https://media.browser-use.tools/badges/demos" alt="Demos"></a>
100
+ <img width="16" height="1" alt="">
101
+ <a href="https://docs.browser-use.com"><img src="https://media.browser-use.tools/badges/docs" alt="Docs"></a>
102
+ <img width="16" height="1" alt="">
103
+ <a href="https://browser-use.com/posts"><img src="https://media.browser-use.tools/badges/blog" alt="Blog"></a>
104
+ <img width="16" height="1" alt="">
105
+ <a href="https://browsermerch.com"><img src="https://media.browser-use.tools/badges/merch" alt="Merch"></a>
106
+ <img width="100" height="1" alt="">
107
+ <a href="https://github.com/browser-use/browser-use"><img src="https://media.browser-use.tools/badges/github" alt="Github Stars"></a>
108
+ <img width="4" height="1" alt="">
109
+ <a href="https://x.com/intent/user?screen_name=browser_use"><img src="https://media.browser-use.tools/badges/twitter" alt="Twitter"></a>
110
+ <img width="4 height="1" alt="">
111
+ <a href="https://link.browser-use.com/discord"><img src="https://media.browser-use.tools/badges/discord" alt="Discord"></a>
112
+ <img width="4" height="1" alt="">
113
+ <a href="https://cloud.browser-use.com"><img src="https://media.browser-use.tools/badges/cloud" height="48" alt="Browser-Use Cloud"></a>
114
+ </div>
115
+
116
+ </br>
117
+
118
+ # 🤖 LLM Quickstart
119
+
120
+ 1. Direct your favorite coding agent (Cursor, ClaudeS, etc) to [Agents.md](https://docs.browser-use.com/llms-full.txt)
121
+ 2. Prompt away!
122
+
123
+ <br/>
124
+
125
+ # 👋 Human Quickstart
126
+
127
+ **1. Create environment with [uv](https://docs.astral.sh/uv/) (Python>=3.11):**
128
+ ```bash
129
+ uv init
130
+ ```
131
+
132
+ **2. Install Browser-Use package:**
133
+ ```bash
134
+ # We ship every day - use the latest version!
135
+ uv add browser-use
136
+ uv sync
137
+ ```
138
+
139
+ **3. Get your API key from [Browser Use Cloud](https://cloud.browser-use.com/new-api-key) and add it to your `.env` file (new signups get $10 free credits):**
140
+ ```
141
+ # .env
142
+ BROWSER_USE_API_KEY=your-key
143
+ ```
144
+
145
+ **4. Install Chromium browser:**
146
+ ```bash
147
+ uvx browser-use install
148
+ ```
149
+
150
+ **5. Run your first agent:**
151
+ ```python
152
+ from browser_use import Agent, Browser, ChatBrowserUse
153
+ import asyncio
154
+
155
+ async def example():
156
+ browser = Browser(
157
+ # use_cloud=True, # Uncomment to use a stealth browser on Browser Use Cloud
158
+ )
159
+
160
+ llm = ChatBrowserUse()
161
+
162
+ agent = Agent(
163
+ task="Find the number of stars of the browser-use repo",
164
+ llm=llm,
165
+ browser=browser,
166
+ )
167
+
168
+ history = await agent.run()
169
+ return history
170
+
171
+ if __name__ == "__main__":
172
+ history = asyncio.run(example())
173
+ ```
174
+
175
+ Check out the [library docs](https://docs.browser-use.com) and the [cloud docs](https://docs.cloud.browser-use.com) for more!
176
+
177
+ <br/>
178
+
179
+ # 🔥 Deploy on Sandboxes
180
+
181
+ We handle agents, browsers, persistence, auth, cookies, and LLMs. The agent runs right next to the browser for minimal latency.
182
+
183
+ ```python
184
+ from browser_use import Browser, sandbox, ChatBrowserUse
185
+ from browser_use.agent.service import Agent
186
+ import asyncio
187
+
188
+ @sandbox()
189
+ async def my_task(browser: Browser):
190
+ agent = Agent(task="Find the top HN post", browser=browser, llm=ChatBrowserUse())
191
+ await agent.run()
192
+
193
+ # Just call it like any async function
194
+ asyncio.run(my_task())
195
+ ```
196
+
197
+ See [Going to Production](https://docs.browser-use.com/production) for more details.
198
+
199
+ <br/>
200
+
201
+ # 🚀 Template Quickstart
202
+
203
+ **Want to get started even faster?** Generate a ready-to-run template:
204
+
205
+ ```bash
206
+ uvx browser-use init --template default
207
+ ```
208
+
209
+ This creates a `browser_use_default.py` file with a working example. Available templates:
210
+ - `default` - Minimal setup to get started quickly
211
+ - `advanced` - All configuration options with detailed comments
212
+ - `tools` - Examples of custom tools and extending the agent
213
+
214
+ You can also specify a custom output path:
215
+ ```bash
216
+ uvx browser-use init --template default --output my_agent.py
217
+ ```
218
+
219
+ <br/>
220
+
221
+ # Demos
222
+
223
+
224
+ ### 📋 Form-Filling
225
+ #### Task = "Fill in this job application with my resume and information."
226
+ ![Job Application Demo](https://github.com/user-attachments/assets/57865ee6-6004-49d5-b2c2-6dff39ec2ba9)
227
+ [Example code ↗](https://github.com/browser-use/browser-use/blob/main/examples/use-cases/apply_to_job.py)
228
+
229
+
230
+ ### 🍎 Grocery-Shopping
231
+ #### Task = "Put this list of items into my instacart."
232
+
233
+ https://github.com/user-attachments/assets/a6813fa7-4a7c-40a6-b4aa-382bf88b1850
234
+
235
+ [Example code ↗](https://github.com/browser-use/browser-use/blob/main/examples/use-cases/buy_groceries.py)
236
+
237
+
238
+ ### 💻 Personal-Assistant.
239
+ #### Task = "Help me find parts for a custom PC."
240
+
241
+ https://github.com/user-attachments/assets/ac34f75c-057a-43ef-ad06-5b2c9d42bf06
242
+
243
+ [Example code ↗](https://github.com/browser-use/browser-use/blob/main/examples/use-cases/pcpartpicker.py)
244
+
245
+
246
+ ### 💡See [more examples here ↗](https://docs.browser-use.com/examples) and give us a star!
247
+
248
+ <br/>
249
+
250
+ ## Integrations, hosting, custom tools, MCP, and more on our [Docs ↗](https://docs.browser-use.com)
251
+
252
+ <br/>
253
+
254
+ # FAQ
255
+
256
+ <details>
257
+ <summary><b>What's the best model to use?</b></summary>
258
+
259
+ We optimized **ChatBrowserUse()** specifically for browser automation tasks. On avg it completes tasks 3-5x faster than other models with SOTA accuracy.
260
+
261
+ **Pricing (per 1M tokens):**
262
+ - Input tokens: $0.50
263
+ - Output tokens: $3.00
264
+ - Cached tokens: $0.10
265
+
266
+ For other LLM providers, see our [supported models documentation](https://docs.browser-use.com/supported-models).
267
+ </details>
268
+
269
+
270
+ <details>
271
+ <summary><b>Can I use custom tools with the agent?</b></summary>
272
+
273
+ Yes! You can add custom tools to extend the agent's capabilities:
274
+
275
+ ```python
276
+ from browser_use import Tools
277
+
278
+ tools = Tools()
279
+
280
+ @tools.action(description='Description of what this tool does.')
281
+ def custom_tool(param: str) -> str:
282
+ return f"Result: {param}"
283
+
284
+ agent = Agent(
285
+ task="Your task",
286
+ llm=llm,
287
+ browser=browser,
288
+ tools=tools,
289
+ )
290
+ ```
291
+
292
+ </details>
293
+
294
+ <details>
295
+ <summary><b>Can I use this for free?</b></summary>
296
+
297
+ Yes! Browser-Use is open source and free to use. You only need to choose an LLM provider (like OpenAI, Google, ChatBrowserUse, or run local models with Ollama).
298
+ </details>
299
+
300
+ <details>
301
+ <summary><b>How do I handle authentication?</b></summary>
302
+
303
+ Check out our authentication examples:
304
+ - [Using real browser profiles](https://github.com/browser-use/browser-use/blob/main/examples/browser/real_browser.py) - Reuse your existing Chrome profile with saved logins
305
+ - If you want to use temporary accounts with inbox, choose AgentMail
306
+ - To sync your auth profile with the remote browser, run `curl -fsSL https://browser-use.com/profile.sh | BROWSER_USE_API_KEY=XXXX sh` (replace XXXX with your API key)
307
+
308
+ These examples show how to maintain sessions and handle authentication seamlessly.
309
+ </details>
310
+
311
+ <details>
312
+ <summary><b>How do I solve CAPTCHAs?</b></summary>
313
+
314
+ For CAPTCHA handling, you need better browser fingerprinting and proxies. Use [Browser Use Cloud](https://cloud.browser-use.com) which provides stealth browsers designed to avoid detection and CAPTCHA challenges.
315
+ </details>
316
+
317
+ <details>
318
+ <summary><b>How do I go into production?</b></summary>
319
+
320
+ Chrome can consume a lot of memory, and running many agents in parallel can be tricky to manage.
321
+
322
+ For production use cases, use our [Browser Use Cloud API](https://cloud.browser-use.com) which handles:
323
+ - Scalable browser infrastructure
324
+ - Memory management
325
+ - Proxy rotation
326
+ - Stealth browser fingerprinting
327
+ - High-performance parallel execution
328
+ </details>
329
+
330
+ <br/>
331
+
332
+ <div align="center">
333
+
334
+ **Tell your computer what to do, and it gets it done.**
335
+
336
+ <img src="https://github.com/user-attachments/assets/06fa3078-8461-4560-b434-445510c1766f" width="400"/>
337
+
338
+ [![Twitter Follow](https://img.shields.io/twitter/follow/Magnus?style=social)](https://x.com/intent/user?screen_name=mamagnus00)
339
+ &emsp;&emsp;&emsp;
340
+ [![Twitter Follow](https://img.shields.io/twitter/follow/Gregor?style=social)](https://x.com/intent/user?screen_name=gregpr07)
341
+
342
+ </div>
343
+
344
+ <div align="center"> Made with ❤️ in Zurich and San Francisco </div>
@@ -0,0 +1,147 @@
1
+ browser_use/__init__.py,sha256=BntzHzhau7LqBE9hCUzCzDE-VzSIkUPQoThLZsP2YRo,5553
2
+ browser_use/cli.py,sha256=kVI5XmdXqx0Em4I-MJQYOgEXV7AyhadKO34Mj9HFJQY,81005
3
+ browser_use/config.py,sha256=z-iTeS93xtnXJaylFC1GzNkEVdWgAnm6Y7hOrvHORHE,16336
4
+ browser_use/exceptions.py,sha256=Bn79JaO4kwiJ7YKDbtiebrgaNvzHn6PgKmbaNf_XrpI,186
5
+ browser_use/init_cmd.py,sha256=Doi680GvxJ9t_8VvAG_NZoRt7t0ujJkuURVZRsAI134,10517
6
+ browser_use/logging_config.py,sha256=M6uM4_OyQHNAR2CoErysITu2HuD2zfk4ZvL1p8PJqbc,10743
7
+ browser_use/observability.py,sha256=fsr4UgknC4SVoKbB2bs5-KavGhAuOp6gULUACGkTWwM,6209
8
+ browser_use/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ browser_use/utils.py,sha256=NBQtOP2bXXjJOkWy8gziSGi_PWu1CsPD1H-9gHKrRcc,22953
10
+ browser_use/actor/__init__.py,sha256=Lyxz7RZlj4zljRY8NAU7Kc6Yp0JHGcdDVzH2bod0UIw,261
11
+ browser_use/actor/element.py,sha256=BHtqylvCNbAzmcRx7-N4q_z-x66E1qzn0uZxLkDBHQI,36585
12
+ browser_use/actor/mouse.py,sha256=ZQjNlTVp57PI_koJeusBR0Qg9ET-K1s4fNQweYBsJGk,4243
13
+ browser_use/actor/page.py,sha256=vX8WvbcmqPF_RPVMPbAvPyING0NAJRZvWvNzN4Ndyas,19199
14
+ browser_use/actor/utils.py,sha256=B7YSoidDC2GgP6oIJ3xK54orycCOJQNv0tDFPIjIV2E,5234
15
+ browser_use/actor/playground/flights.py,sha256=52B7OJE7eahTuJj-BJhbxjc8nqSnYFPVGOzwRbbQDS0,1019
16
+ browser_use/actor/playground/mixed_automation.py,sha256=ZPxt-ez1AjVK04iub8r1-t6NvsWKh8Tv5-OU5JkpLkI,1119
17
+ browser_use/actor/playground/playground.py,sha256=pSDpXJX4iQoIoK_NkwtuuvjzGnOXGuawmNEQZe8htLs,7372
18
+ browser_use/agent/cloud_events.py,sha256=01Stj6BjXvm6kUlgQF0fvnwvS3uQCrnpZk-17t5Yt_M,11317
19
+ browser_use/agent/gif.py,sha256=8XSzg82d_qiQx7_PsDvSG6YxgTh_dCP7kHE83NOHnjY,12302
20
+ browser_use/agent/judge.py,sha256=WX38PzqpcEMBWDmcVy0BYPSlcnBKU1lIb1P7Nf7qkZ8,7622
21
+ browser_use/agent/prompts.py,sha256=6HPoVk8Keucss2jsyBKAFodOnvU6tJFVRLcsNMXblF4,15231
22
+ browser_use/agent/service.py,sha256=CQCf95OG5J49UF7MO-nlXlSDFh0gbejNHis2wyXtH4k,87223
23
+ browser_use/agent/system_prompt.md,sha256=ZT9UVUGaU4_Jih-e1D02xKLcuGjoByKDkuVvXrO9PEk,16321
24
+ browser_use/agent/system_prompt_flash.md,sha256=ubSdVTtQd-onEhtcvlHBdxmE9R4YEaoJ-J8s15ViGfs,1559
25
+ browser_use/agent/system_prompt_no_thinking.md,sha256=s1NiM6dpUlFiWVbVnBWA0VR3hvYVWycOZQCIL9AWD_Q,16225
26
+ browser_use/agent/views.py,sha256=hTwquGKP6pnia27MKL8bQQa299cAosAAwA2azS1fSeI,26447
27
+ browser_use/agent/message_manager/service.py,sha256=XXBWho9Vrx-rgqfqP3U_64SJHeoyuRs-KByEw1zoUX8,18446
28
+ browser_use/agent/message_manager/utils.py,sha256=t0E71oIptfH8vCsMkm4pjTbbDMGZKqvhRBEhnGLqxDo,1372
29
+ browser_use/agent/message_manager/views.py,sha256=vNS7FvZuThyo4zZmJDomqHFketbaAlHQ8sQHqBwO5RY,2858
30
+ browser_use/browser/__init__.py,sha256=-MlstnQw2ulh9gNkl2o1FC_fXGwZWf-N-SVcycwiaoY,1146
31
+ browser_use/browser/events.py,sha256=zdevl6XV1URi1l2oyK25PYnECp_5TCQujp4SJAYKGB0,18086
32
+ browser_use/browser/profile.py,sha256=JpyLRupA31gQ52sBQUVoE-MkLEjl_0nruikZp0X31rI,47237
33
+ browser_use/browser/python_highlights.py,sha256=l27_46HDphCB566hmOaY5-wLLHtQouBua8sjS4eUJo4,18151
34
+ browser_use/browser/session.py,sha256=tnrQxIL2q6tpcc6lrV0yx1JJXEtRiRx9DmB7AhQZ39w,126115
35
+ browser_use/browser/session_manager.py,sha256=XKk7S1JgS_9FXBISqzecQV_KH3hfhan7yOAQnkvQRZY,15412
36
+ browser_use/browser/video_recorder.py,sha256=N0swIzPd-2e08WQZ3ei5h5tbH1PQlmD_eNTIDAKjNSk,5360
37
+ browser_use/browser/views.py,sha256=HwxjM1y8N3QRr3vW4xQVLWX6E9x0rbF7V72ST0rXgkQ,6317
38
+ browser_use/browser/watchdog_base.py,sha256=P6Xvj5kMNpWZbLCG8QBUAKkpdExdmX6MKzxUjUndUZ4,11262
39
+ browser_use/browser/cloud/cloud.py,sha256=l7zi3fJPT1QfQ4-3jXwEWH9wrSh2-a8w3qCMniGfmwo,7557
40
+ browser_use/browser/cloud/views.py,sha256=mmEU-mw6fjPlL-ChK_SC1YvOEAGmycup4KvsLEbA_oI,2347
41
+ browser_use/browser/watchdogs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
+ browser_use/browser/watchdogs/aboutblank_watchdog.py,sha256=pbSs12OglFxGg8kxAiAcW94IlpA7JSOEdwJKkJpycjI,9167
43
+ browser_use/browser/watchdogs/crash_watchdog.py,sha256=x9c9I5nSTgKAW6w9UOGYYakhkvhSYpHvRiRd35fc7os,13231
44
+ browser_use/browser/watchdogs/default_action_watchdog.py,sha256=cUCTYsNmXils-BM_FaHDBHFJegGyyVWxSQ5nSvMNKyk,94415
45
+ browser_use/browser/watchdogs/dom_watchdog.py,sha256=ElGjERlHV-a6qpnL8WR_WLl0DI2UXvW3BY99ljHwavA,32116
46
+ browser_use/browser/watchdogs/downloads_watchdog.py,sha256=Z8NhpsXSVvr9etNlbvRyJZuhWk9JRlaGfzJ3lYCLzO0,48416
47
+ browser_use/browser/watchdogs/local_browser_watchdog.py,sha256=LFOghBjFH9izq325cCUN6aacJEkHRqi7a1N-oH6v9-Y,16171
48
+ browser_use/browser/watchdogs/permissions_watchdog.py,sha256=LVxIeVEt1qgau0g4eijwZlK2NP4EN2WAW_NTgohNrFs,1418
49
+ browser_use/browser/watchdogs/popups_watchdog.py,sha256=8eAlvIMbBc9xblWXaA9KqMCY9d55vhtyZRZCC-SxxTU,6391
50
+ browser_use/browser/watchdogs/recording_watchdog.py,sha256=Epn17xv98WRsVU0iZm8gTCmbsIx446dn6ynuGtcathY,4432
51
+ browser_use/browser/watchdogs/screenshot_watchdog.py,sha256=b6oP7zLSbXrY0mUsjOS1jnO4krbvxdWj0RdtWYOVL-w,2190
52
+ browser_use/browser/watchdogs/security_watchdog.py,sha256=7J1qjxGh6NQYt_ZchjCrLwkSqfu76fOoY92EwWbyaAY,9213
53
+ browser_use/browser/watchdogs/storage_state_watchdog.py,sha256=_9hIw2Z_WnEhGIflzdEsB38mwUWemYOQ8YKySU7CQTA,12025
54
+ browser_use/code_use/__init__.py,sha256=RX4ieMatD5ZDZ1YUmUq8YjtltZYYtEFWIbB2kzj3Igs,520
55
+ browser_use/code_use/formatting.py,sha256=g2aqaefiM-oHpnfdzl4aSHIBuOPmY2NvZ8rbszNvwjI,6709
56
+ browser_use/code_use/namespace.py,sha256=tZ_V_yPtQuVyrbkpG-PBjypgLY9yu-6LHZYjfu_gz4M,22280
57
+ browser_use/code_use/notebook_export.py,sha256=cAlfdo_WOKz8_gB_cckf3fsZJWtbQpHfpIpopZ_WDsg,8264
58
+ browser_use/code_use/service.py,sha256=S71CnWgf4_3g9NW-4sPctX2klDL8WOz46MJHe-2SNrE,51593
59
+ browser_use/code_use/system_prompt.md,sha256=kLGUg65rHZ3CaL-PrDEPhaeC-9kxazHBE-X4bjkQcbY,18501
60
+ browser_use/code_use/utils.py,sha256=2B9h3wF3WhKSnJ-aBu34laxnuSk1ipWui80Y77iB9Sw,5247
61
+ browser_use/code_use/views.py,sha256=StVh8ofuwIQKFQW06jjuqBjWqk9cc3JeprlheCZna8A,5828
62
+ browser_use/controller/__init__.py,sha256=UwqqlbCyejYKv_zlKkgDDua-YL9fSJdEgkHe2i098N8,75
63
+ browser_use/dom/enhanced_snapshot.py,sha256=HKpb49COP7i6E2xjSpw6troTcLO0L9Ge7lmMGkXu6aM,6161
64
+ browser_use/dom/markdown_extractor.py,sha256=D8YXBTYAVQ9xOU_wQn8y5iUzdI2h8ysQ_l4BJK6D0-8,6470
65
+ browser_use/dom/service.py,sha256=zNOMj9LfO7NWleHkrI73Z1LWfWOLZOWzA19YZVvJbPE,31575
66
+ browser_use/dom/utils.py,sha256=jv5MN3kPkXhRYnvcyNmuMBNWjBu6yJ6oxwA31FdsIEw,4284
67
+ browser_use/dom/views.py,sha256=FmFbSZGgipUjMXRPVpsWFFCR7dh2J6ZGyQ_uuRBFhHM,28599
68
+ browser_use/dom/playground/extraction.py,sha256=lXh5nSVW53UxnVvWlawDaI2xYWO6tTao-dK2JEuW32s,12558
69
+ browser_use/dom/playground/multi_act.py,sha256=H-bQ1-bRPEeL9VmjIIKo0I_NDygRAD18kLIEM36mTRk,734
70
+ browser_use/dom/serializer/clickable_elements.py,sha256=O-r0Ntyh-kBc86a_D7snw8VWLBuwQQaTBP8siU1yxPU,6564
71
+ browser_use/dom/serializer/code_use_serializer.py,sha256=KZPRBzGJ50Kb2hqUh4eykwZP_GSqs5tixdKULDTiBBM,9060
72
+ browser_use/dom/serializer/eval_serializer.py,sha256=TbRmZcKDiD2ImUM16LBjtet-d2-_6yVlZpnDyUiGG3g,15097
73
+ browser_use/dom/serializer/html_serializer.py,sha256=G2k9PyS1byraiBVmb-r0zRPU7zdDY_r_yaZg_gnOX1E,6032
74
+ browser_use/dom/serializer/paint_order.py,sha256=NCirHXEt5CjrBSh9UT41x0yeJ9o1xmkh81fUDmTud24,5542
75
+ browser_use/dom/serializer/serializer.py,sha256=gNu--eH6J7fN5vMAw1K00-6_cDcRUqNOIpW-TH8drr0,46041
76
+ browser_use/filesystem/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
77
+ browser_use/filesystem/file_system.py,sha256=Gq3eCYXghsMcnZcrFeRdVWfgi6jUIzEbYXgXhZ0PdDE,19513
78
+ browser_use/integrations/gmail/__init__.py,sha256=zjQIPpFYRMdaBv87KQZ0-rsuq3eBzLk7RFhQYG7b33Q,1020
79
+ browser_use/integrations/gmail/actions.py,sha256=NxCWxA1X-qdsANxhf2kuHMI6nem10ujHwZKlnSuaeSc,4174
80
+ browser_use/integrations/gmail/service.py,sha256=23qbTaoXvS-u780GYX6bbKR9tek4npefT39rV2l_IZM,7670
81
+ browser_use/llm/__init__.py,sha256=F9iBE89FDJweCc1yx0nF338jAY7bfTrdmFsKW-c28ww,4850
82
+ browser_use/llm/base.py,sha256=2Psecxnz00dMH1TGG6d77RGeFuDh9jaehBD1JWlo7sA,1495
83
+ browser_use/llm/exceptions.py,sha256=RuY7LThET74rInvCNUC9T7MUHlGK_I0OpPd_0HPxJf8,613
84
+ browser_use/llm/messages.py,sha256=KGOPuH0xL0uCmPesT7PWRXmcm9VvzNnmm_CPjf5rJlk,6576
85
+ browser_use/llm/models.py,sha256=ahEl7jzh7YafQK9vfV5-TwSriWrW5rrq3vExa-SLVsM,8783
86
+ browser_use/llm/schema.py,sha256=VP0cfW83vnINFjY2gmXYMluju6Mg0MtkKAQybgAzzvI,6358
87
+ browser_use/llm/views.py,sha256=uCrnxJikRzfPShcOqTHxpbCU2qdYGa6RMzcdJADN0Q8,1326
88
+ browser_use/llm/anthropic/chat.py,sha256=QrsFCuyPVGt_F3f2k5jCNOI_py_6eiQTEEg-Kn3YO60,7750
89
+ browser_use/llm/anthropic/serializer.py,sha256=CNxDprWjyeMD_Sms4uHh09M3-s7Lr110GcFU3mcju9Y,10340
90
+ browser_use/llm/aws/__init__.py,sha256=wJkq5ulIDXh2TBzEFu7Nd1vg8SxmlKePjdQcp1GMMOg,1056
91
+ browser_use/llm/aws/chat_anthropic.py,sha256=wQaW8qSHYI1AVczVKKghdozG1Et6mBWeB4XiZjRL1F4,8022
92
+ browser_use/llm/aws/chat_bedrock.py,sha256=e_5Xs4JjIrqNwLNu_gnKdf85WL6XQGie0MfPd3atagk,9288
93
+ browser_use/llm/aws/serializer.py,sha256=HberFwAwuPFZ13to8eKg4oFJJ6uAUG70ElfZhXLRDqQ,7958
94
+ browser_use/llm/azure/chat.py,sha256=OdlyOBxJGXDWEbIwnIQXmIORfQ7jBKAynDHZA8mSOqI,2768
95
+ browser_use/llm/browser_use/__init__.py,sha256=GbrfUise3qBiGjWe0neqa655GQXwvUOU14ft9--KoyM,90
96
+ browser_use/llm/browser_use/chat.py,sha256=ZuMcoDQ0AY_k-_gIdi2883Fu6VyG1kpgfjqUl_7n3TA,6131
97
+ browser_use/llm/cerebras/chat.py,sha256=34peVsulri4-jF9jO9JtCBbwzRGMepZ7GINdaO90New,5826
98
+ browser_use/llm/cerebras/serializer.py,sha256=HNYDzLUd1MD4Pd-75j9mxt2vfLO1rikqOHMf2ZMVlFs,3360
99
+ browser_use/llm/deepseek/chat.py,sha256=18_hVvnU8ntULIKb-JQ8bic-gWIqYKB3zH5x-crhh2g,6780
100
+ browser_use/llm/deepseek/serializer.py,sha256=noVgJEDx9SniMKTlMs_-UveUux4WmMIc1rj68PtTd94,3360
101
+ browser_use/llm/google/__init__.py,sha256=i7W91y9J4FxyqY_c25ZVtro5HcNg7peh1e6XTwsYlmg,77
102
+ browser_use/llm/google/chat.py,sha256=POM6CribVjwhWwyGUhprEeYiH3y_9u9ZZ2cN2-QFfNc,19160
103
+ browser_use/llm/google/serializer.py,sha256=wQ0PZV_iVCnYSFAnmyHHBgjDNb2bf54NU0ZPY84E-GA,4140
104
+ browser_use/llm/groq/chat.py,sha256=gDDQt39ZKQw4C-be6WR6pMkSk3C4MZXAx3V1RMLwZ24,7455
105
+ browser_use/llm/groq/parser.py,sha256=MVmzXiC6WqKAXDkQoRjzBQ4bv01bUHLq9f_J2tgVpFA,4944
106
+ browser_use/llm/groq/serializer.py,sha256=ImWUCdpHB3recMrWt4t_3iANSvkcgkewUQKCRSNKrpo,5194
107
+ browser_use/llm/oci_raw/__init__.py,sha256=6behCqn3tTiuNPiYhKWadYSVpN5RC6ez137Kesxc0P4,264
108
+ browser_use/llm/oci_raw/chat.py,sha256=uLiyu2KOM0Mib1YdxikQWcLVqb88yFShVCGyygfHohE,14875
109
+ browser_use/llm/oci_raw/serializer.py,sha256=95tBwV14KTNhGqy4z78JDSltyRVk7GL_xwVi49vsoWA,7338
110
+ browser_use/llm/ollama/chat.py,sha256=7nZ7JjggvTsQEvaEP4NS2dQqXmSyPm0PslF6GN9yqlI,2750
111
+ browser_use/llm/ollama/serializer.py,sha256=88H2l1Che6s8VlbDO255C_hM0r5-1e-btawYRt5Fmrw,4052
112
+ browser_use/llm/openai/chat.py,sha256=G8wjGr6WA7j4ujRF4LReXdPC-QUxo7jbjexVCW02xQw,8871
113
+ browser_use/llm/openai/like.py,sha256=kxJN-CUzZR4hSpC-3LPk5-V3vOEfrWNImtIsaJTbdq8,291
114
+ browser_use/llm/openai/serializer.py,sha256=3UjJtM0hBEHbK7b0sTnmxzO0rhShKMd-kTB02ZfHvns,5899
115
+ browser_use/llm/openrouter/chat.py,sha256=pJq1uaYA-P3y42ahjx0te1l0n-REU6TbxpINto8sUoQ,6508
116
+ browser_use/llm/openrouter/serializer.py,sha256=IYBtGrE7GUmUy7chcS6on_ekQx6FR95yJ648UEnUCDI,848
117
+ browser_use/mcp/__init__.py,sha256=yreV4jrg3S1ugOM7stHxbXHu4ExwBPfupjxEoyD6B84,617
118
+ browser_use/mcp/__main__.py,sha256=kWIs5NB9qSEdMigUUuLwtxXAa6ELoFZCsIYTe_CplbU,199
119
+ browser_use/mcp/client.py,sha256=ldwdpF9TAFvWVy_WNHvnu0mExMV_Mq9LK7JHUl3_LEI,17051
120
+ browser_use/mcp/controller.py,sha256=cEPepN4NMX5PO4_9DjjYY9K7pkxsMyXY1bu_SnCM_sM,8199
121
+ browser_use/mcp/server.py,sha256=Al85RZ9l_zk50fQzfdj9qCNvKRMU5yhCZx7317WKcGE,35070
122
+ browser_use/sandbox/__init__.py,sha256=F-BntZsCNg5F757QGudULXYbG9z2g712ETOkjHTJWLw,863
123
+ browser_use/sandbox/sandbox.py,sha256=TwqpuTPce_Jvs3PADjav2T-jsvGehfN0edMbP4-0Cno,21992
124
+ browser_use/sandbox/views.py,sha256=-Y2xkjMFzp3RtE975cCYJvDv1e1OKY-1KASVaoSCORo,3259
125
+ browser_use/screenshots/__init__.py,sha256=tph4XxC_ozJcPUshYvOiejtFQzJtmT2C_Pp1FxM5SOI,38
126
+ browser_use/screenshots/service.py,sha256=bfNWI1vIvzFTDY14x_i8zzvsiQxXEP00siv7Q6_px8A,1704
127
+ browser_use/sync/__init__.py,sha256=7DlYMGJmejR475TJlmWkp5nitrh69iVjAP0gtTXRtns,221
128
+ browser_use/sync/auth.py,sha256=BnjPmI_X55jY-1-QVOQqPASKvmQ5KGIohM8P70OA-Vg,10608
129
+ browser_use/sync/service.py,sha256=HqIhPanGZ6qyB-C9BKhjpAl_vwrIPBBxo5vEaF13qWM,6103
130
+ browser_use/telemetry/__init__.py,sha256=lCEPl0DM9SAtWewJFuPoFWAzZRRtJ_1kJZQK73Siw5Q,1470
131
+ browser_use/telemetry/service.py,sha256=de9LphffKqj2s2thC_WdBlYMRta4ZBsK7AasOe9YXNE,3030
132
+ browser_use/telemetry/views.py,sha256=w1HzFY0dDiRtnijrJiHhPvtS9kzANLrnlQXuF3l96rU,2480
133
+ browser_use/tokens/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
134
+ browser_use/tokens/custom_pricing.py,sha256=uqF6GjQLyKLwoaEUM0DxYaIQEXOC5ORilknswgx5qmI,850
135
+ browser_use/tokens/mappings.py,sha256=CQbM_cFgForUZrdWzrK9HzEqRce4TO-8O7IqeWf8EE8,141
136
+ browser_use/tokens/service.py,sha256=FtZpCByREpwA4dLmZeeAxmLyuSaAxuaClKZM28KtxqU,20670
137
+ browser_use/tokens/views.py,sha256=B-9guL9fIZZKU-PkkMZlyTDOORNq_JO_1dsP_CCG0zk,2306
138
+ browser_use/tools/service.py,sha256=HfkRswlwwKGxmcECRTt9dv4woSObVo0el5_nN-B3WjQ,65446
139
+ browser_use/tools/utils.py,sha256=xvKOaZW6Q83qo3QjeR31ZR6ed4_DfkrP7tZC_NOuLPo,2943
140
+ browser_use/tools/views.py,sha256=Oxfd1k7ka_P-qq0tc7pxxNlmsQJi5rmbqngrleTHquI,2920
141
+ browser_use/tools/registry/service.py,sha256=aagu-WrnMv4t_3x0rY10qP4W0dL6OBxd7Z41_Ku9tiY,22696
142
+ browser_use/tools/registry/views.py,sha256=4r3qysEE5UMER-G7PtU1j6RlsbKbUu6-1eGMN6xRG9A,5743
143
+ optexity_browser_use-0.9.5.dist-info/METADATA,sha256=-B0m9j76aC3q9poVr2mbeWLv12yxzbD_ubL0YCB9zcg,11788
144
+ optexity_browser_use-0.9.5.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
145
+ optexity_browser_use-0.9.5.dist-info/entry_points.txt,sha256=NceUXLtKZs9AznxXL8P1rxVQVpF8jyk0x3SXZGhU1VE,87
146
+ optexity_browser_use-0.9.5.dist-info/licenses/LICENSE,sha256=E1xXZxsO6VdmmwWgygDMBvZFSW01Hi5zKDLG4nbaml4,1069
147
+ optexity_browser_use-0.9.5.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.28.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ browser-use = browser_use.cli:main
3
+ browseruse = browser_use.cli:main
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Gregor Zunic
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.