Getting Started
Installation
You can install the ritual-arweave
library via pip or by cloning the repository from GitHub.
Installing from source via GitHub
Usage Examples
Uploading a Repository
from ritual_arweave.repo_manager import RepoManager
repo_manager = RepoManager(wallet_path='./wallet.json')
upload_result = repo_manager.upload_repo(
name='my-repo',
path='/path/to/repo',
version_mapping_file='/path/to/version_mapping.json'
)
print(f"Uploaded repo with manifest URL: {upload_result.manifest_url}")