<?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: Getting started with Meraki API using Python: Part 1 in Network Platform API</title>
    <link>https://community.cisco.com/t5/network-platform-api/getting-started-with-meraki-api-using-python-part-1/m-p/5420210#M3288</link>
    <description>&lt;P&gt;This is great information, thanks for creating this!&lt;/P&gt;</description>
    <pubDate>Fri, 23 Jun 2023 16:41:30 GMT</pubDate>
    <dc:creator>JorgeEscalera031478</dc:creator>
    <dc:date>2023-06-23T16:41:30Z</dc:date>
    <item>
      <title>Getting started with Meraki API using Python: Part 1</title>
      <link>https://community.cisco.com/t5/network-platform-api/getting-started-with-meraki-api-using-python-part-1/m-p/5420201#M3279</link>
      <description>&lt;P&gt;&lt;U&gt;&lt;FONT size="6"&gt;&lt;STRONG&gt;Getting started with Meraki API using Python: Part 1&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/U&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;Hi Everyone! This post is in response to a large demand from the Meraki community to have something for people to get started on the Meraki API using Python. &lt;/SPAN&gt;&lt;SPAN&gt;Here we have Part 1 of a series of Community posts focused on helping you navigate the basics of leveraging the Meraki API using Python. We'll share a new post every month. You can subscribe to the label "&lt;/SPAN&gt;&lt;A href="https://community.meraki.com/t5/forums/filteredbylabelpage/board-id/api/label-name/getting%20started" target="_blank"&gt;&lt;SPAN&gt;Getting Started&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;" to receive an email notification for the next part in this series.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;Now before we get started with Python, let's cover a few basics, namely what is an API.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;H3&gt;&lt;U&gt;&lt;STRONG&gt;Application Programming Interface&lt;/STRONG&gt;&lt;/U&gt;&lt;/H3&gt;

&lt;P&gt;&lt;SPAN&gt;An API is basically a way for two pieces of software to talk to each other. &lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Arun_TE_0-1660174540891.png" style="width: 400px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="image.png"&gt;&lt;img src="https://community.cisco.com/t5/image/serverpage/image-id/262780i244C463CA6180F29/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;H3&gt;&lt;U&gt;&lt;STRONG&gt;REST API&lt;/STRONG&gt;&lt;/U&gt;&lt;/H3&gt;

&lt;P&gt;&lt;FONT size="4" color="#000000"&gt;&lt;SPAN&gt;There are many different types of APIs and one of them is the REST API. REST stands for Representational State Transfer. What it means is that it involves transferring the representation of the state of information between applications. It is not a protocol like TCP or UDP, it is an architecture, hence as with any architecture it is defined by a set of constraints. A few of those relevant for us here are listed below:&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;&lt;SPAN&gt;It is Server-Client architecture&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;&lt;SPAN&gt;It is Stateless&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;&lt;SPAN&gt;Cacheable&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;&lt;SPAN&gt;Uniform Interface&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3" color="#000000"&gt;&lt;SPAN&gt;Layered&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;&lt;FONT size="4" color="#000000"&gt;&lt;SPAN&gt;We won't go through all the constraints in detail as we want to keep this simple for now, maybe for another post! &lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT size="4" color="#000000"&gt;&lt;SPAN&gt;REST uses HTTP as the transaction method and JSON format for data. This makes life easy as we don't have to learn a whole new protocol for APIs. It uses the same HTTP that is used on the Internet. &lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Arun_TE_1-1660174540885.png" style="width: 143px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="image.png"&gt;&lt;img src="https://community.cisco.com/t5/image/serverpage/image-id/262781iC4087052531A3CB1/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;


&lt;P&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;Therefore interacting with an API server such as the Meraki Dashboard would involve just using HTTP verbs such as :&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;GET&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;PUT&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;POST&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;DELETE&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;Of course, there are more actions available, but we are just focusing on the most common ones for now.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Arun_TE_2-1660174540925.png" style="width: 504px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="image.png"&gt;&lt;img src="https://community.cisco.com/t5/image/serverpage/image-id/262782iC80C77D36A316C94/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;


&lt;P&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;As you noticed PUT and POST are both used for writing to the Dashboard, to put it simply you would use POST to create data and PUT to update or edit existing data. For example we use a POST to create a Routed Interface on the switch and a PUT to update an existing one.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Arun_TE_3-1660174540887.png" style="width: 305px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="image.png"&gt;&lt;img src="https://community.cisco.com/t5/image/serverpage/image-id/262784i0D2438CFAF1547C4/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;


&lt;P&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;Java Script Object Notation or JSON, is the format in which data is sent between your machine and the Dashboard.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Arun_TE_4-1660174540923.png" style="width: 112px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="image.png"&gt;&lt;img src="https://community.cisco.com/t5/image/serverpage/image-id/262783iA8E7F892849504D8/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;What does JSON data look like? Let’s take a look at an example. Here we can see a dashboard organization retrieved from a dashboard using a GET.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Arun_TE_5-1660174541133.png" style="width: 650px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="image.png"&gt;&lt;img src="https://community.cisco.com/t5/image/serverpage/image-id/262786i2DE2D0F097433467/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;The attributes of an organization are described through the use of key-value pairs. In this example we can see the organization’s id, name, url etc.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;H3&gt;&lt;U&gt;&lt;STRONG&gt;Using cURL to understand the Meraki Dashboard API&lt;/STRONG&gt;&lt;/U&gt;&lt;/H3&gt;

&lt;P&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;Ok! Now that we know what REST APIs are all about, let's get hands on and try a few requests to the Dashboard!&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;For this one tool that can be used in cURL, another Postman but let's use cURL for now.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT face="times new roman,times"&gt;&lt;SPAN&gt;curl -L --request GET \&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="times new roman,times"&gt;&lt;SPAN&gt;--url &lt;A href="https://api.meraki.com/api/v1/organizations" target="_blank" rel="noopener nofollow noreferrer"&gt;https://api.meraki.com/api/v1/organizations&lt;/A&gt; \&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="times new roman,times"&gt;&lt;SPAN&gt;--header 'Content-Type: application/json' \&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="times new roman,times"&gt;&lt;SPAN&gt;--header 'Accept: application/json' \&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="times new roman,times"&gt;&lt;SPAN&gt;--header 'X-Cisco-Meraki-API-Key: *****'&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;As you can see, we issued a GET request using cURL using the above command. We will learn about processing the output later but for now let’s break the cURL request down!&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Arun_TE_6-1660174540921.png" style="width: 512px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="image.png"&gt;&lt;img src="https://community.cisco.com/t5/image/serverpage/image-id/262785iDEF31BF0487053E9/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;For the headers we set to accept and send JSON data and we also send an API key (we will get to this in a bit) for authentication. The url points to api.meraki.com which is where you would send your requests to. Note the v1 in the URL, Meraki APIs are currently on v1 and v0 is deprecated. &lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Arun_TE_7-1660174540883.png" style="width: 655px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="image.png"&gt;&lt;img src="https://community.cisco.com/t5/image/serverpage/image-id/262790i2B890057C1EC4EEA/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;


&lt;P&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;Now let’s use the -v, which is for verbose with the same cURL command and check the output.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;First we see the connection to api.meraki.com (yes our Dashboard supports IPv6!):&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Arun_TE_8-1660174541059.png" style="width: 612px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="image.png"&gt;&lt;img src="https://community.cisco.com/t5/image/serverpage/image-id/262789iC1F60EAC3F158632/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;


&lt;P&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;Next, we see a 302!!&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Arun_TE_9-1660174540943.png" style="width: 620px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="image.png"&gt;&lt;img src="https://community.cisco.com/t5/image/serverpage/image-id/262788iF24D67693CF53EC9/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;


&lt;P&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;So what is a 302? It is a redirect! Why do we get a redirect? That is because we are being redirected to our Dashboard instance based on the API key we used. api.meraki.com is an API server url we use so we don’t have to remember our individual dashboard instance url. If you notice, on the 5th line from the bottom you can see the redirect location to the specific dashboard url.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;So here are some common responses you will see.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Arun_TE_10-1660174540890.png" style="width: 535px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="image.png"&gt;&lt;img src="https://community.cisco.com/t5/image/serverpage/image-id/262787i0092672D7F9AEB06/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;


&lt;UL&gt;
&lt;LI&gt;&lt;SPAN&gt;If the response is in the 2xx range such as 201 or 200 then the request was successful. We will get to the specifics on the differences between 201 and 200 later on, but as always let’s keep it simple for now!&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;If the response is in the 3xx range as we saw in our example it is a redirect.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;If the response is in the 4xx range then the error is on th&lt;FONT color="#000000"&gt;e client side&lt;/FONT&gt;, we would need to check our request, for example an incorrect API key.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Arun_TE_11-1660174540905.png" style="width: 400px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="image.png"&gt;&lt;img src="https://community.cisco.com/t5/image/serverpage/image-id/262791iA0A1DB8CC6BA9172/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;&lt;SPAN&gt;If the response is in the 5xx range then the issue is on the server side, in our case the dashboard side.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;&lt;FONT size="4" color="#000000"&gt;&lt;SPAN&gt;Alright, I think we now have some understanding of the API interaction happening with the Meraki Dashboard. We will sign off for now but stay tuned for Part 2 where we shall continue our API journey further!&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;FONT size="4" color="#000000"&gt;&lt;SPAN&gt;In the meantime, please don't forget to &lt;/SPAN&gt;&lt;SPAN&gt;subscribe to "&lt;/SPAN&gt;&lt;A href="https://community.meraki.com/t5/forums/filteredbylabelpage/board-id/api/label-name/getting%20started" target="_blank"&gt;&lt;SPAN&gt;Getting Started&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;" to receive a notification when Part 2 goes live and also &lt;/SPAN&gt;&lt;SPAN&gt;please leave your thoughts/feedback/comments below so that we can improve the posts to focus on the needs of the community.&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Aug 2022 00:20:29 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/getting-started-with-meraki-api-using-python-part-1/m-p/5420201#M3279</guid>
      <dc:creator>Arun_TE</dc:creator>
      <dc:date>2022-08-11T00:20:29Z</dc:date>
    </item>
    <item>
      <title>Re: Getting started with Meraki API using Python: Part I</title>
      <link>https://community.cisco.com/t5/network-platform-api/getting-started-with-meraki-api-using-python-part-1/m-p/5420202#M3280</link>
      <description>&lt;P&gt;&lt;A href="https://community.meraki.com/t5/user/viewprofilepage/user-id/47074"&gt;@Arun_TE&lt;/A&gt; : Awesome thanks &lt;/P&gt;</description>
      <pubDate>Thu, 11 Aug 2022 15:00:04 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/getting-started-with-meraki-api-using-python-part-1/m-p/5420202#M3280</guid>
      <dc:creator>inderdeepsingh1</dc:creator>
      <dc:date>2022-08-11T15:00:04Z</dc:date>
    </item>
    <item>
      <title>Re: Getting started with Meraki API using Python: Part I</title>
      <link>https://community.cisco.com/t5/network-platform-api/getting-started-with-meraki-api-using-python-part-1/m-p/5420203#M3281</link>
      <description>&lt;P&gt;Nice work &lt;A href="https://community.meraki.com/t5/user/viewprofilepage/user-id/47074"&gt;@Arun_TE&lt;/A&gt;!  &lt;SPAN class="lia-unicode-emoji" title=":raising_hands:"&gt;&lt;span class="lia-unicode-emoji" title=":raising_hands:"&gt;🙌&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Sep 2022 17:26:44 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/getting-started-with-meraki-api-using-python-part-1/m-p/5420203#M3281</guid>
      <dc:creator>ChrisSkees</dc:creator>
      <dc:date>2022-09-09T17:26:44Z</dc:date>
    </item>
    <item>
      <title>Re: Getting started with Meraki API using Python: Part I</title>
      <link>https://community.cisco.com/t5/network-platform-api/getting-started-with-meraki-api-using-python-part-1/m-p/5420204#M3282</link>
      <description>&lt;P&gt;Thanks &lt;A href="https://community.meraki.com/t5/user/viewprofilepage/user-id/67925"&gt;@ChrisSkees&lt;/A&gt;!&lt;/P&gt;</description>
      <pubDate>Mon, 12 Sep 2022 06:01:32 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/getting-started-with-meraki-api-using-python-part-1/m-p/5420204#M3282</guid>
      <dc:creator>Arun_TE</dc:creator>
      <dc:date>2022-09-12T06:01:32Z</dc:date>
    </item>
    <item>
      <title>Re: Getting started with Meraki API using Python: Part I</title>
      <link>https://community.cisco.com/t5/network-platform-api/getting-started-with-meraki-api-using-python-part-1/m-p/5420205#M3283</link>
      <description>&lt;P&gt;Yassss!! Gimme more of the good stuff. I just started playing around with the API to see what kinds of extra information I could get. Thank you!!&lt;/P&gt;</description>
      <pubDate>Mon, 12 Sep 2022 20:08:37 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/getting-started-with-meraki-api-using-python-part-1/m-p/5420205#M3283</guid>
      <dc:creator>PacerX</dc:creator>
      <dc:date>2022-09-12T20:08:37Z</dc:date>
    </item>
    <item>
      <title>Re: Getting started with Meraki API using Python: Part I</title>
      <link>https://community.cisco.com/t5/network-platform-api/getting-started-with-meraki-api-using-python-part-1/m-p/5420206#M3284</link>
      <description>&lt;P&gt;Thanks &lt;A href="https://community.meraki.com/t5/user/viewprofilepage/user-id/38739"&gt;@PacerX&lt;/A&gt; , hopefully you have noticed that Parts 2 and 3 are out already and also subscribed to "Getting Started"&lt;/P&gt;</description>
      <pubDate>Tue, 13 Sep 2022 07:05:41 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/getting-started-with-meraki-api-using-python-part-1/m-p/5420206#M3284</guid>
      <dc:creator>Arun_TE</dc:creator>
      <dc:date>2022-09-13T07:05:41Z</dc:date>
    </item>
    <item>
      <title>Re: Getting started with Meraki API using Python: Part I</title>
      <link>https://community.cisco.com/t5/network-platform-api/getting-started-with-meraki-api-using-python-part-1/m-p/5420207#M3285</link>
      <description>&lt;P&gt;I have seen that the other parts are out and thank you for sharing! Unfortunately programming and python are not my strong areas so I am working through things slowly but I will get there. &lt;SPAN class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;&lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Sep 2022 13:52:55 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/getting-started-with-meraki-api-using-python-part-1/m-p/5420207#M3285</guid>
      <dc:creator>PacerX</dc:creator>
      <dc:date>2022-09-13T13:52:55Z</dc:date>
    </item>
    <item>
      <title>Re: Getting started with Meraki API using Python: Part I</title>
      <link>https://community.cisco.com/t5/network-platform-api/getting-started-with-meraki-api-using-python-part-1/m-p/5420208#M3286</link>
      <description>&lt;P&gt;Just Gold !!!&lt;/P&gt;</description>
      <pubDate>Thu, 17 Nov 2022 16:06:57 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/getting-started-with-meraki-api-using-python-part-1/m-p/5420208#M3286</guid>
      <dc:creator>Verlaine_Devnet</dc:creator>
      <dc:date>2022-11-17T16:06:57Z</dc:date>
    </item>
    <item>
      <title>Re: Getting started with Meraki API using Python: Part I</title>
      <link>https://community.cisco.com/t5/network-platform-api/getting-started-with-meraki-api-using-python-part-1/m-p/5420209#M3287</link>
      <description>&lt;P&gt;Thanks &lt;A href="https://community.meraki.com/t5/user/viewprofilepage/user-id/66963"&gt;@Verlaine_Devnet&lt;/A&gt; !&lt;/P&gt;</description>
      <pubDate>Thu, 17 Nov 2022 20:53:54 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/getting-started-with-meraki-api-using-python-part-1/m-p/5420209#M3287</guid>
      <dc:creator>Arun_TE</dc:creator>
      <dc:date>2022-11-17T20:53:54Z</dc:date>
    </item>
    <item>
      <title>Re: Getting started with Meraki API using Python: Part 1</title>
      <link>https://community.cisco.com/t5/network-platform-api/getting-started-with-meraki-api-using-python-part-1/m-p/5420210#M3288</link>
      <description>&lt;P&gt;This is great information, thanks for creating this!&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jun 2023 16:41:30 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/getting-started-with-meraki-api-using-python-part-1/m-p/5420210#M3288</guid>
      <dc:creator>JorgeEscalera031478</dc:creator>
      <dc:date>2023-06-23T16:41:30Z</dc:date>
    </item>
  </channel>
</rss>

