Official Python client for Scrapybara
Project description
Scrapybara Python Client
Official Python client for Scrapybara ₍ᐢ•(ܫ)•ᐢ₎
Installation
pip install scrapybara
Usage
from scrapybara import Scrapybara
# Initialize the client
client = Scrapybara(api_key="your-api-key")
# Start a new instance and get its ID
instance = client.start()
# Interact with the instance
client.get(instance.instance_id)
client.computer(instance.instance_id, "mouse_move", [100, 200])
client.screenshot(instance.instance_id)
# Stop the instance
client.stop(instance.instance_id)
With Anthropic Computer Use
from scrapybara.anthropic import ComputerTool, EditTool, BashTool
# From https://github.com/anthropics/anthropic-quickstarts/blob/main/computer-use-demo
tool_collection = ToolCollection(
ComputerTool(client, instance.instance_id),
EditTool(client, instance.instance_id),
BashTool(client, instance.instance_id),
)
raw_response = client.beta.messages.with_raw_response.create(
max_tokens=max_tokens,
messages=messages,
model=model,
system=[system],
tools=tool_collection.to_params(),
betas=betas,
)
Requirements
- Python >= 3.8
requests
>= 2.25.1anthropic
^0.39.0pydantic
^2.0.0
License
This project is licensed under the MIT License - see the LICENSE file for details.
Contributing
Contributions are welcome! Feel free to submit an issue.
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
scrapybara-0.1.3.tar.gz
(8.3 kB
view details)
Built Distribution
File details
Details for the file scrapybara-0.1.3.tar.gz
.
File metadata
- Download URL: scrapybara-0.1.3.tar.gz
- Upload date:
- Size: 8.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.11.5 Darwin/23.0.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ed48f2f0fdf5676dab35894f970a61f7f3fa2fc7324c9fb72405a07ea7189975 |
|
MD5 | c25fdbb2b0bf6bf9f6fd2eeeba94881d |
|
BLAKE2b-256 | 3f33517bbb47fa3e09880d441115a8b800e0a281032bba7ada0814c533882dec |
File details
Details for the file scrapybara-0.1.3-py3-none-any.whl
.
File metadata
- Download URL: scrapybara-0.1.3-py3-none-any.whl
- Upload date:
- Size: 10.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.11.5 Darwin/23.0.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 22b43bedc27b575669d0aad833aa00b322eda3cac8cb8f6b193ee0dff3577d66 |
|
MD5 | 21d55d3231298d85ae32c9a7c7c37b5f |
|
BLAKE2b-256 | a3842eeecbcc1511e8cd07fa6b052a1a5cc94d963ae4e25b75c71258ffeb8b40 |