From 242b0d180f258e404a4f9adca2a4241608b5d2ac Mon Sep 17 00:00:00 2001 From: John W Kerns Date: Thu, 4 Feb 2021 11:59:12 -0800 Subject: [PATCH] Renaming fixes --- README.md | 2 +- meraki-cli.py | 10 +++++----- meraki_cli/__init__.py | 3 ++- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 840751a..2adaef3 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/meraki-cli.py b/meraki-cli.py index f42a253..3280ccb 100644 --- a/meraki-cli.py +++ b/meraki-cli.py @@ -1,10 +1,10 @@ -#!/usr/bin/python +#!/usr/bin/env python3 -''' -Testing file. Run with 'python mcli.py ' to run tests on changes without - need to reinstall -''' +""" +Testing file. Run with 'python meraki-cli.py ' to run tests on changes + without need to reinstall +""" # mcli library diff --git a/meraki_cli/__init__.py b/meraki_cli/__init__.py index 64ca7f8..2658d09 100644 --- a/meraki_cli/__init__.py +++ b/meraki_cli/__init__.py @@ -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__