Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@

.DS_Store
# No PyCharm config files
.idea/
venv/
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ Also available via [PIP](https://pypi.python.org/pypi/meraki/).
* Although the Meraki API can be accessed in various ways, this module uses Python3. [Get started with Python](https://wiki.python.org/moin/BeginnersGuide/NonProgrammers)
* After Python is installed, prepare your environment:
* Use pip (or alternative such as easy_install) to install required packages:
* pip install requests
* pip install meraki
* pip install requests meraki
* You are now ready to create your first script:
* create a new file and name it with python extension, e.g., meraki_hello_world.py
* import the meraki api into your script, e.g., from meraki import meraki
Expand Down
Loading