I am trying to use Coinbase's API to get my wallet info to eventually make transactions using Python. Below is the 2 lines of code that i have written:
from coinbase.wallet.client import Client
client = Client(api_key, api_secret)
After running, I get the error--> 'NameError: name 'api_key' is not defined'. I know that I am supposed to set up an API Key and API Secret via Coinbase (which I have done already) and even put them both in the 'Client' parenthesis. Cany anyone tell me what I am doing wrong or guide me to successfully use my Coinbase API in Python?