So to start I have very little experience and this may be a simple answer but I can't find it easily.
I suspect that I am using the wrong thing to achieve what I am trying to do.
I'm parsing out the blocks locally to get transactional information. Then I am trying to take each wallet addr with a transaction and check the current balance.
When I run this code I get this error "('Wallet file not specified (must request wallet RPC through /wallet/ uri-path).',)" which makes me think I am not using the correct method.
If I'm not using the correct method, what should I be using?
received_info = rpc_connection.listreceivedbyaddress(1, False, True, str([output_address]))
if received_info:
output_file.write(f" Received by Address Info:\n")
for info in received_info:
output_file.write(f" Address: {info['address']}\n")
output_file.write(f" Amount Received: {info['amount']} BTC\n")
output_file.write(f" Confirmations: {info['confirmations']}\n\n")