Fix Import as Module

This commit is contained in:
Narbeh Arakil
2020-09-19 18:05:10 +04:30
parent 0ec1a12991
commit 0cbfb56286
2 changed files with 21 additions and 3 deletions
+7 -1
View File
@@ -271,7 +271,13 @@ Simply import the `ssl_checker.py` into your python script and use it as a modul
```
from ssl_checker import SSLChecker
SSLCheckerObject = SSLChecker()
SSLChecker = SSLChecker()
args = {
'hosts': ['google.com', 'cisco.com']
}
SSLChecker.show_result(SSLChecker.get_args(json_args=args))
```