Answering to save anyone who googled that error message 15 minutes to find out what went wrong. I just did the same beginner mistake: you imported a module called meraki and you named your script meraki.py and this results in a naming conflict. Rename your file to not_the_module_name.py See also: Modules section of the Python tutorial on python.org
... View more