# Checks (Python) Demonstrates how to create, cash, and cancel checks on the XRP Ledger. ## Setup ```sh python -m venv .venv source .venv/bin/activate pip install -r requirements.txt ``` ## Create a Check ```sh python create_check.py ``` ## Cash a Check ```sh python cash_check.py ``` ## Cancel a Check ```sh python cancel_check.py ``` ## Get Account Checks ```sh python account_checks.py ```