I am using Solana.py to interact with Solana. While I can connect to the testnet using:
from solana.rpc.api import Client
http_client = Client("https://api.testnet.solana.com")
print(http_client.is_connected())
I have no idea how to send a transaction with metadata and query it back. Any guidance and direction will be appreciated.