Python SDK for Browserness API
Project description
Browserness Python SDK
The official Python SDK for the Browserness API, allowing you to programmatically create and manage remote browser instances.
Installation
pip install browserness
Or if you're installing from source:
pip install .
Quick Start
from browserness import Browserness
# Initialize the client
client = Browserness()
# List all browsers
browsers = client.list_browsers()
print(browsers)
# Create a new browser
browser = client.create_browser()
print(browser)
Async Support
The SDK also includes an async client:
import asyncio
from browserness import AsyncBrowserness
async def main():
# Initialize the async client
client = AsyncBrowserness()
# List all browsers
browsers = await client.list_browsers()
print(browsers)
asyncio.run(main())
Documentation
For detailed documentation, please refer to the API documentation.
License
This SDK is licensed under the MIT License. See the LICENSE file for more details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file browserness-0.0.1.tar.gz.
File metadata
- Download URL: browserness-0.0.1.tar.gz
- Upload date:
- Size: 24.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39ed26050b97a2d58fa4419138970fb78659ee347d72e761e99ab09c88c5bd0d
|
|
| MD5 |
cb67836f9de113baf7dcebd845df1cc2
|
|
| BLAKE2b-256 |
b43233a568c3a503004ab5ae4070bd275709b12c856abb51c40d327ec8ab8435
|
File details
Details for the file browserness-0.0.1-py3-none-any.whl.
File metadata
- Download URL: browserness-0.0.1-py3-none-any.whl
- Upload date:
- Size: 38.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3fb456ae90df414ab3775904e81f86c48dbdf7e85bc673849c8921e5d38667d
|
|
| MD5 |
d331ff0c53849d3c23095620761efe1b
|
|
| BLAKE2b-256 |
7d3c3b02bba864908e6d0109a74242c95603b173e842e23c8531074340d428ac
|