It seems no matter what script I run or what Python interpreter I run it I am getting no attributes for the specific parameter it is looking for. Below is the most simple request I can find -
Script -
import meraki
# Defining your API key as a variable in source code is not recommended
API_KEY = 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
# Instead, use an environment variable as shown under the Usage section
# @ https://github.com/meraki/dashboard-api-python/
dashboard = meraki.DashboardAPI(API_KEY)
organization_id = 'XXXXXX'
response = dashboard.networks.getOrganizationNetworks(
organization_id
)
print(response)
Error -
Message='Networks' object has no attribute 'getOrganizationNetworks'
response = dashboard.networks.getOrganizationNetworks(
I've confirmed the meraki module is installed and upgraded. The file it is looking within does exist as well.