- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
NameError: name 'UplinkEnum' is not defined
Hi I've got a problem with this python request. error log :
File "uplinks-stats.py", line 15, in <module>
uplink = UplinkEnum.WAN1
NameError: name 'UplinkEnum' is not defined
Script :
import json
from meraki_sdk.meraki_sdk_client import MerakiSdkClient
from meraki_sdk.exceptions.api_exception import APIException
x_cisco_meraki_api_key = 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
meraki = MerakiSdkClient(x_cisco_meraki_api_key)
collect = {}
organization_id = 'XXXXXX'
collect['organization_id'] = organization_id
uplink = UplinkEnum.WAN1
collect['uplink'] = uplink
ip = '8.8.8.8'
collect['ip'] = ip
organization_uplinks_stats = meraki.organizations.get_organization_uplinks_loss_and_latency(collect)
with open('data-uplink.json', 'w') as f:
json.dump(organization_uplinks_stats, f)
Any ideas ?
Thanks
Solved! Go to solution.
- Labels:
-
Dashboard API
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Add the following import:
from meraki_sdk.models.uplink_enum import UplinkEnum
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Add the following import:
from meraki_sdk.models.uplink_enum import UplinkEnum
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks it work ! Think Cisco need to add this information to the documentation because I never saw it
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This confusion is one of the reasons why we are deprecating that Python SDK, which is auto-generated by a third-party tool, with our library/package published in-house.
