Python SDK for Daytona
Project description
Daytona SDK for Python
A Python SDK for interacting with the Daytona API, providing a simple interface for Daytona Sandbox management, Git operations, file system operations, and language server protocol support.
Installation
You can install the package using pip:
pip install daytona-sdk
Quick Start
Here's a simple example of using the SDK:
from daytona_sdk import Daytona
# Initialize using environment variables
daytona = Daytona()
# Create a sandbox
sandbox = daytona.create()
# Run code in the sandbox
response = sandbox.process.code_run('print("Hello World!")')
print(response.result)
# Clean up when done
daytona.delete(sandbox)
Configuration
The SDK can be configured using environment variables or by passing a configuration object:
from daytona_sdk import Daytona, DaytonaConfig
# Initialize with configuration
config = DaytonaConfig(
api_key="your-api-key",
api_url="your-api-url",
target="us"
)
daytona = Daytona(config)
Or using environment variables:
DAYTONA_API_KEY: Your Daytona API keyDAYTONA_API_URL: The Daytona API URLDAYTONA_TARGET: Your target environment
You can also customize sandbox creation:
sandbox = daytona.create(CreateSandboxParams(
language="python",
env_vars={"PYTHON_ENV": "development"},
auto_stop_interval=60 # Auto-stop after 1 hour of inactivity
))
Features
- Sandbox Management: Create, manage and remove sandboxes
- Git Operations: Clone repositories, manage branches, and more
- File System Operations: Upload, download, search and manipulate files
- Language Server Protocol: Interact with language servers for code intelligence
- Process Management: Execute code and commands in sandboxes
Examples
Execute Commands
# Execute a shell command
response = sandbox.process.exec('echo "Hello, World!"')
print(response.result)
# Run Python code
response = sandbox.process.code_run('''
x = 10
y = 20
print(f"Sum: {x + y}")
''')
print(response.result)
File Operations
# Upload a file
sandbox.fs.upload_file('path/to/file.txt', b'Hello, World!')
# Download a file
content = sandbox.fs.download_file('path/to/file.txt')
# Search for files
matches = sandbox.fs.find_files(root_dir, 'search_pattern')
Git Operations
# Clone a repository
sandbox.git.clone('https://github.com/example/repo', 'path/to/clone')
# List branches
branches = sandbox.git.branches('path/to/repo')
# Add files
sandbox.git.add('path/to/repo', ['file1.txt', 'file2.txt'])
Language Server Protocol
# Create and start a language server
lsp = sandbox.create_lsp_server('typescript', 'path/to/project')
lsp.start()
# Notify the lsp for the file
lsp.did_open('path/to/file.ts')
# Get document symbols
symbols = lsp.document_symbols('path/to/file.ts')
# Get completions
completions = lsp.completions('path/to/file.ts', {"line": 10, "character": 15})
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
License
This project is licensed under the Apache License, Version 2.0 - see below for details:
Copyright 2024 Daytona
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
For the full license text, please see the Apache License 2.0.
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 daytona-0.17.0.tar.gz.
File metadata
- Download URL: daytona-0.17.0.tar.gz
- Upload date:
- Size: 41.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a968f874177ff9c9bdf6285e6e38d4ba3dbecc4d4305cdff2fd6b4890cc30137
|
|
| MD5 |
3c89c02b68c901a610a6a16338aecc59
|
|
| BLAKE2b-256 |
017f421f241947b1aeae37e49341c8496b5c9b13ae770c654b2840b089e0f4b5
|
File details
Details for the file daytona-0.17.0-py3-none-any.whl.
File metadata
- Download URL: daytona-0.17.0-py3-none-any.whl
- Upload date:
- Size: 48.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9c1de6a3189ba40253fbba44860e519510832deaa06d80cda54cdb4308ad46a
|
|
| MD5 |
94ee8505a78bef727be06c3dc5470397
|
|
| BLAKE2b-256 |
a7322607e987870007c19682ccd77cbbc2d783f66383a8990030f30f2dfcbc27
|