<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Python - Get list of switch ports from specific Network ID in Network Platform API</title>
    <link>https://community.cisco.com/t5/network-platform-api/python-get-list-of-switch-ports-from-specific-network-id/m-p/5407169#M1450</link>
    <description>&lt;P&gt;WellyHartanto, Thank you.&lt;/P&gt;&lt;P&gt;Yes, I have about 50 networks that I manage.  I want to be able to get the ports in each network so I can say, bounce all ports in a specific vlan. We have "homemade" PoE devices in certain vlans that need bounced every so often if they lose connectivity to a server.&lt;/P&gt;&lt;P&gt;I also want to look to disable unused ports after XX number of days.&lt;/P&gt;&lt;P&gt;I hope Im on the correct path to be able to accomplish those tasks?&lt;/P&gt;</description>
    <pubDate>Wed, 21 Feb 2024 15:16:10 GMT</pubDate>
    <dc:creator>What In the</dc:creator>
    <dc:date>2024-02-21T15:16:10Z</dc:date>
    <item>
      <title>Python - Get list of switch ports from specific Network ID</title>
      <link>https://community.cisco.com/t5/network-platform-api/python-get-list-of-switch-ports-from-specific-network-id/m-p/5407164#M1445</link>
      <description>&lt;P&gt;Im trying to test getting info from my Org to learn building scripts.&lt;/P&gt;&lt;P&gt;I want to get the list of switch ports from a specific Network ID.  I am able to pull the device ports if I use the switch's serial number:&lt;/P&gt;&lt;P&gt;                    response = dashboard.switch.getDeviceSwitchPorts(&lt;BR /&gt;                          serial&lt;BR /&gt;                     )&lt;/P&gt;&lt;P class="lia-indent-padding-left-90px" style="padding-left : 90px;"&gt;print(response)&lt;/P&gt;&lt;P class="lia-indent-padding-left-90px" style="padding-left : 90px;"&gt; &lt;/P&gt;&lt;P&gt;&lt;A href="https://developer.cisco.com/meraki/api-v1/get-device-switch-ports/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://developer.cisco.com/meraki/api-v1/get-device-switch-ports/&lt;/A&gt;&lt;/P&gt;&lt;P class="lia-indent-padding-left-90px" style="padding-left : 90px;"&gt; &lt;/P&gt;&lt;P&gt;Im trying to expand upon this by getting the switch ports from a net ID&lt;/P&gt;&lt;P&gt;import meraki&lt;/P&gt;&lt;P&gt;API_KEY = 'c4............................................'&lt;/P&gt;&lt;P&gt;dashboard = meraki.DashboardAPI(API_KEY)&lt;/P&gt;&lt;P&gt;organization_id = 'XXXXXX'&lt;/P&gt;&lt;P&gt;# Get the list of networks in your organization&lt;BR /&gt;networks = dashboard.organizations.getOrganizationNetworks(&lt;BR /&gt;organization_id, total_pages='all'&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;# Find the network that you want&lt;BR /&gt;network_id = 'L_6................................'&lt;/P&gt;&lt;P&gt;# Get the list of switchports&lt;BR /&gt;switchports = dashboard.switch.getDeviceSwitchPorts(&lt;BR /&gt;network_id&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;# Print the list of switchports&lt;BR /&gt;for switchport in switchports:&lt;BR /&gt;print(switchport)&lt;/P&gt;&lt;P&gt;I get an error &lt;/P&gt;&lt;P&gt;ERROR &amp;gt; switch, getDeviceSwitchPorts - 404 Not Found, b''&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2024 21:56:40 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/python-get-list-of-switch-ports-from-specific-network-id/m-p/5407164#M1445</guid>
      <dc:creator>What In the</dc:creator>
      <dc:date>2024-02-19T21:56:40Z</dc:date>
    </item>
    <item>
      <title>Re: Python - Get list of switch ports from specific Network ID</title>
      <link>https://community.cisco.com/t5/network-platform-api/python-get-list-of-switch-ports-from-specific-network-id/m-p/5407165#M1446</link>
      <description>&lt;P&gt;Have you tried this API?&lt;/P&gt;&lt;P&gt;&lt;A href="https://developer.cisco.com/meraki/api-v1/get-organization-switch-ports-statuses-by-switch/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://developer.cisco.com/meraki/api-v1/get-organization-switch-ports-statuses-by-switch/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2024 22:39:18 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/python-get-list-of-switch-ports-from-specific-network-id/m-p/5407165#M1446</guid>
      <dc:creator>aleabrahao</dc:creator>
      <dc:date>2024-02-19T22:39:18Z</dc:date>
    </item>
    <item>
      <title>Re: Python - Get list of switch ports from specific Network ID</title>
      <link>https://community.cisco.com/t5/network-platform-api/python-get-list-of-switch-ports-from-specific-network-id/m-p/5407166#M1447</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&lt;A href="https://developer.cisco.com/meraki/api/get-device-switch-ports/" target="_blank" rel="noopener nofollow noreferrer"&gt;https://developer.cisco.com/meraki/api/get-device-switch-ports/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;/devices/&lt;/SPAN&gt;&lt;STRONG&gt;{serial}&lt;/STRONG&gt;&lt;SPAN&gt;/switch/ports&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;You can't input a Network ID , it requires a Serial number. You would be better using the Org-Wide call that alemabrahao has suggested and filter the json received or filter with the parameter networkids.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2024 23:30:16 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/python-get-list-of-switch-ports-from-specific-network-id/m-p/5407166#M1447</guid>
      <dc:creator>Raphael_L</dc:creator>
      <dc:date>2024-02-19T23:30:16Z</dc:date>
    </item>
    <item>
      <title>Re: Python - Get list of switch ports from specific Network ID</title>
      <link>https://community.cisco.com/t5/network-platform-api/python-get-list-of-switch-ports-from-specific-network-id/m-p/5407167#M1448</link>
      <description>&lt;P&gt;Thank you both.&lt;/P&gt;&lt;P&gt;HMM.  I was playing with this to add&lt;/P&gt;&lt;P&gt;# Filter the devices to only include switches&lt;BR /&gt;switches = []&lt;BR /&gt;for device in devices:&lt;BR /&gt;if device["model"].startswith("MS"):&lt;BR /&gt;switches.append(device)&lt;/P&gt;&lt;P&gt;# Print the list of switches&lt;BR /&gt;for switch in switches:&lt;BR /&gt;print(switch["serial"])&lt;/P&gt;&lt;P&gt;this gets me the serial of each switch. &lt;/P&gt;&lt;P&gt;Can I use this output in the operations you both have provided?&lt;/P&gt;&lt;P&gt;I assume I am going need to build an array or something&lt;/P&gt;</description>
      <pubDate>Tue, 20 Feb 2024 18:52:25 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/python-get-list-of-switch-ports-from-specific-network-id/m-p/5407167#M1448</guid>
      <dc:creator>What In the</dc:creator>
      <dc:date>2024-02-20T18:52:25Z</dc:date>
    </item>
    <item>
      <title>Re: Python - Get list of switch ports from specific Network ID</title>
      <link>https://community.cisco.com/t5/network-platform-api/python-get-list-of-switch-ports-from-specific-network-id/m-p/5407168#M1449</link>
      <description>&lt;P&gt;So you want to get the list of switch ports by network ID?&lt;/P&gt;&lt;P&gt;API_KEY = 'xxxx'&lt;/P&gt;&lt;P&gt;ORG_ID = 123&lt;/P&gt;&lt;P&gt;NET_ID = L_123&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;dashboard&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;meraki&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;DashboardAPI&lt;/SPAN&gt;&lt;SPAN&gt;(API_KEY&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;suppress_logging&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;True&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;ports&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;dashboard&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;switch&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;getOrganizationSwitchPortsBySwitch&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;ORG_ID&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;total_pages&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;'all'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;networkIds&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;SPAN&gt;NET_ID&lt;/SPAN&gt;&lt;SPAN&gt;])&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;print&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;ports&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;#### rest of your codes #####&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;There are other ways to do this as mentioned in this thread.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;devices&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;dashboard&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;organizations&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;getOrganizationDevices&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;ORG_ID&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;total_pages&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;'all'&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;for device in devices:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;   if device['networkId'] == NET_ID and device['productType'] == 'switch':&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;  &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;      ports&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;dashboard&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;switch&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;getDeviceSwitchPorts&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;device['serial']):&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;         for port in ports:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;            print(port)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 21 Feb 2024 03:14:58 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/python-get-list-of-switch-ports-from-specific-network-id/m-p/5407168#M1449</guid>
      <dc:creator>wellyhartanto</dc:creator>
      <dc:date>2024-02-21T03:14:58Z</dc:date>
    </item>
    <item>
      <title>Re: Python - Get list of switch ports from specific Network ID</title>
      <link>https://community.cisco.com/t5/network-platform-api/python-get-list-of-switch-ports-from-specific-network-id/m-p/5407169#M1450</link>
      <description>&lt;P&gt;WellyHartanto, Thank you.&lt;/P&gt;&lt;P&gt;Yes, I have about 50 networks that I manage.  I want to be able to get the ports in each network so I can say, bounce all ports in a specific vlan. We have "homemade" PoE devices in certain vlans that need bounced every so often if they lose connectivity to a server.&lt;/P&gt;&lt;P&gt;I also want to look to disable unused ports after XX number of days.&lt;/P&gt;&lt;P&gt;I hope Im on the correct path to be able to accomplish those tasks?&lt;/P&gt;</description>
      <pubDate>Wed, 21 Feb 2024 15:16:10 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/python-get-list-of-switch-ports-from-specific-network-id/m-p/5407169#M1450</guid>
      <dc:creator>What In the</dc:creator>
      <dc:date>2024-02-21T15:16:10Z</dc:date>
    </item>
    <item>
      <title>Re: Python - Get list of switch ports from specific Network ID</title>
      <link>https://community.cisco.com/t5/network-platform-api/python-get-list-of-switch-ports-from-specific-network-id/m-p/5407170#M1451</link>
      <description>&lt;P&gt;Yes it can be done via API.&lt;/P&gt;&lt;P&gt;Take a look at the ouput when you make the API call for switch ports to determine the port VLAN.&lt;/P&gt;&lt;P&gt;For unused port, this thread may help: &lt;A href="https://community.meraki.com/t5/Developers-APIs/Find-Unused-Ports-And-Shut-them-Down/m-p/223886/highlight/true#M9740" target="_blank"&gt;https://community.meraki.com/t5/Developers-APIs/Find-Unused-Ports-And-Shut-them-Down/m-p/223886/highlight/true#M9740&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Feb 2024 15:31:52 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/python-get-list-of-switch-ports-from-specific-network-id/m-p/5407170#M1451</guid>
      <dc:creator>wellyhartanto</dc:creator>
      <dc:date>2024-02-21T15:31:52Z</dc:date>
    </item>
    <item>
      <title>Re: Python - Get list of switch ports from specific Network ID</title>
      <link>https://community.cisco.com/t5/network-platform-api/python-get-list-of-switch-ports-from-specific-network-id/m-p/5407171#M1452</link>
      <description>&lt;P&gt;WellyHartanto,&lt;/P&gt;&lt;P&gt;question about the cycle ports script...&lt;/P&gt;&lt;P&gt;timespan=(31*24*60*60))&lt;/P&gt;&lt;P&gt;Is this 31 days, then 24 hrs in a day, 60 min in an hour, 60 sec in a minute?&lt;/P&gt;&lt;P&gt;so if you wanted a different # of days you just need to change the 31?&lt;/P&gt;</description>
      <pubDate>Wed, 21 Feb 2024 16:39:28 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/python-get-list-of-switch-ports-from-specific-network-id/m-p/5407171#M1452</guid>
      <dc:creator>What In the</dc:creator>
      <dc:date>2024-02-21T16:39:28Z</dc:date>
    </item>
    <item>
      <title>Re: Python - Get list of switch ports from specific Network ID</title>
      <link>https://community.cisco.com/t5/network-platform-api/python-get-list-of-switch-ports-from-specific-network-id/m-p/5407172#M1453</link>
      <description>&lt;P&gt;Looks like "getOrganizationDevices" does not handle stacked switches.  When I run it only returns the primary switch ports, and not the member switch ports.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Feb 2024 19:28:54 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/python-get-list-of-switch-ports-from-specific-network-id/m-p/5407172#M1453</guid>
      <dc:creator>What In the</dc:creator>
      <dc:date>2024-02-21T19:28:54Z</dc:date>
    </item>
    <item>
      <title>Re: Python - Get list of switch ports from specific Network ID</title>
      <link>https://community.cisco.com/t5/network-platform-api/python-get-list-of-switch-ports-from-specific-network-id/m-p/5407173#M1454</link>
      <description>&lt;P&gt;the timespan parameter is in seconds and a maximum of 31 days (you may want to read the documentation thoroughly)&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2024 04:30:08 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/python-get-list-of-switch-ports-from-specific-network-id/m-p/5407173#M1454</guid>
      <dc:creator>wellyhartanto</dc:creator>
      <dc:date>2024-02-22T04:30:08Z</dc:date>
    </item>
    <item>
      <title>Re: Python - Get list of switch ports from specific Network ID</title>
      <link>https://community.cisco.com/t5/network-platform-api/python-get-list-of-switch-ports-from-specific-network-id/m-p/5407174#M1455</link>
      <description>&lt;P&gt;Based on the documentation, I disagree.&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;devices&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;dashboard&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;organizations&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;getOrganizationDevices&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;ORG_ID&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;total_pages&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;'all'&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;for&lt;/SPAN&gt; &lt;SPAN&gt;device&lt;/SPAN&gt; &lt;SPAN&gt;in&lt;/SPAN&gt; &lt;SPAN&gt;devices&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;    &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt; &lt;SPAN&gt;device&lt;/SPAN&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;SPAN&gt;'productType'&lt;/SPAN&gt;&lt;SPAN&gt;] &lt;/SPAN&gt;&lt;SPAN&gt;==&lt;/SPAN&gt; &lt;SPAN&gt;'switch':&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN&gt;        &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;ports&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;dashboard&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;switch&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;getDeviceSwitchPorts&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;device&lt;/SPAN&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;SPAN&gt;'serial'&lt;/SPAN&gt;&lt;SPAN&gt;])&lt;/SPAN&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;            &lt;/SPAN&gt;&lt;SPAN&gt;print&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;f&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;SPAN&gt;device&lt;/SPAN&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;SPAN&gt;'name'&lt;/SPAN&gt;&lt;SPAN&gt;]&lt;/SPAN&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt; has &lt;/SPAN&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;SPAN&gt;len&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;ports&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt; ports"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 22 Feb 2024 04:32:53 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/python-get-list-of-switch-ports-from-specific-network-id/m-p/5407174#M1455</guid>
      <dc:creator>wellyhartanto</dc:creator>
      <dc:date>2024-02-22T04:32:53Z</dc:date>
    </item>
    <item>
      <title>Re: Python - Get list of switch ports from specific Network ID</title>
      <link>https://community.cisco.com/t5/network-platform-api/python-get-list-of-switch-ports-from-specific-network-id/m-p/5407175#M1456</link>
      <description>&lt;P&gt;HMM.  ok.  Ill have to take another look. thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2024 14:45:08 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/python-get-list-of-switch-ports-from-specific-network-id/m-p/5407175#M1456</guid>
      <dc:creator>What In the</dc:creator>
      <dc:date>2024-02-22T14:45:08Z</dc:date>
    </item>
    <item>
      <title>Re: Python - Get list of switch ports from specific Network ID</title>
      <link>https://community.cisco.com/t5/network-platform-api/python-get-list-of-switch-ports-from-specific-network-id/m-p/5407176#M1457</link>
      <description>&lt;P&gt;I found it.  the output splits the stacked switches, and put my 3rd switch which is standalone sandwiched in between.&lt;/P&gt;&lt;P&gt;Thank you again!&lt;/P&gt;</description>
      <pubDate>Fri, 23 Feb 2024 20:22:50 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/python-get-list-of-switch-ports-from-specific-network-id/m-p/5407176#M1457</guid>
      <dc:creator>What In the</dc:creator>
      <dc:date>2024-02-23T20:22:50Z</dc:date>
    </item>
  </channel>
</rss>

