git clone <https://github.com/0glabs/0g-storage-node.git>
cd 0g-storage-node

# Install Rust
curl --proto '=https' --tlsv1.2 -sSf <https://sh.rustup.rs> | sh

# Install Python dependencies
pip install -r requirements.txt

cargo test

pip install 0g-sdk

from og_sdk import StorageNodeClient

client = StorageNodeClient('<http://localhost:8000>')

# Example of creating and reading data
client.put('key', 'value')
value = client.get('key')
print(value)

cargo run --bin mining-node