Hi everyone!
We're excited for the upcoming Python SDK webinar tomorrow - registration is still open here!
We'll use this thread for any ongoing QA after the show. For folks who are unable to join us for the live broadcast, this (and other Meraki webinars!) will be available on-demand through the same link/channel above.
We have another session next week on Node-Red and will start a topic on that soon. Sign up here.
See you soon!
I've registered for the Node Red seminar on 14 January (hope I'm back from London in time).
Having spent a great chunk of my time in academia working on language design, I still shudder whenever presented with looking at anything written in Python. Honestly, it is as full of appalling error-inducing features as the original Fortran, that attracted attention thanks to a number of stellar programming misunderstandings so that their NASA missions were destined for failure.
Being able to use Node-Red with the Meraki API is a great alternative option. As a bonus, I have found that when communicating with engineering types, they readily understand what is going on.
https://developer.cisco.com/meraki/build/node-red-and-meraki-apis-demo/
It is worth giving it a go.
Hi, @chengineer.
I watched your webinar held on Jan 8 and it is really helpful. Thank you very much.
However, can I ask something about the difference between meraki-sdk-1.5.0 and meraki-0.70.4?
Although the contents about meraki-sdk-1.5.0(https://developer.cisco.com/meraki/api/#/rest/guides/python-sdk-quick-start) are in Meraki-DevNet homepage, updated meraki-0.70.4(https://pypi.org/project/meraki/) is introduced on Jan 8.
I did tests of two SDKs all, but I wonder what is the biggest difference between them. (Only components of each library?)
Hi @Namgyu, thanks for your feedback. The "SDK" (this repository) was generated by a third-party API tool, and unfortunately not only does it contain bugs, it is also not intuitive (need to import extra controllers, models, exceptions), and does not include features we want for an API to manage networking infrastructure.
The new "library" (repository and package) is similar only in that the functions used are also under-the-hood based on the OpenAPI specification, but includes features listed there on GitHub meant specifically for Meraki's platforms.
We do need to update the Developer Hub webpage that you have linked there, and in the meantime, the recommendation is to migrate to the latter if you are using the former.
Hi,
Attended the seminar, and I really liked it 🙂
One thing, when I try to use the new API, I get this error:
AttributeError: module 'meraki' has no attribute 'DashboardAPI'
I get the error when I try run the example script: New_Client_Listing.
This is an example code I am running, and the same error:
api_key = 'A_API_KEY'
import meraki
m = meraki.DashboardAPI(api_key)
orgs = m.organizations.getOrganizations()
print(orgs)
Sure I am doing something wrong here, but what? Can you point me in the right direction. I have upgraded the 'Meraki' module from 0.32 to 0.70.4 with pip3 install --upgrade.
Thank you
Hi @kruse, thank you for joining, and sorry I saw your question late and didn't answer it verbally!
In your folder/directory where you have your source code, is there a file meraki.py or folder meraki already? If so, you will need to remove that first, since what Python does with import commands is to first try the local directory first, before using packages installed.