Skip to content

Commit

Permalink
Renaming fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
PackeTsar committed Feb 4, 2021
1 parent 4bb9941 commit 242b0d1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The version of Meraki-CLI documented here is: **1.0.2**

-----------------------------------------
## ABOUT
Meraki-CLI is a wrapper around the [Meraki Python Dashboard API SDK](https://github.com/meraki/dashboard-api-python). It takes all published functions in the library and makes them available to the user as a standard command-line tool with `-h` help options, commands, switches, and arguments. It also supports classic Linux-style pipelining, allowing the output of one instance of the program to be piped to the input of another.
Meraki-CLI is a wrapper around the [Meraki Dashboard API Python SDK](https://github.com/meraki/dashboard-api-python). It takes all published functions in the library and makes them available to the user as a standard command-line tool with `-h` help options, commands, switches, and arguments. It also supports classic Linux-style pipelining, allowing the output of one instance of the program to be piped to the input of another.

### Examples

Expand Down
10 changes: 5 additions & 5 deletions meraki-cli.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/usr/bin/python
#!/usr/bin/env python3


'''
Testing file. Run with 'python mcli.py <args>' to run tests on changes without
need to reinstall
'''
"""
Testing file. Run with 'python meraki-cli.py <args>' to run tests on changes
without need to reinstall
"""


# mcli library
Expand Down
3 changes: 2 additions & 1 deletion meraki_cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@


'''
Main import file used when 'import meraki-cli'
Main import file used when 'import meraki_cli'
'''


from . import __main__
from .__main__ import * # Make all the functions and classes available
from . import __version__


Expand Down

0 comments on commit 242b0d1

Please sign in to comment.