Metadata-Version: 1.1
Name: onevizion
Version: 1.0.6
Summary: onevizion wraps the version 3 API for a OneVizion system, and provides a few optional other utilities.
Home-page: https://github.com/Onevizion/API-v3
Author: OneVizion
Author-email: development@onevizion.com
License: MIT
Description-Content-Type: UNKNOWN
Description: # API-v3
        Version 3 API for OneVizion
        
        This is a wrapper for simplifying API connection to a OneVizion system.
        
        Install with 
        
        pip install onevizion
        
        
        The Parameters.json file is not necessary, but we added in, since we use it for our scripts, and it keeps hardcoded logins and things our of a script.
        
        All of our scripts use a Parameters.json file, which includes usernames and passwords along with URLs and other configuration.  This lets us test locally, then copy a script up unedited, to the production server or UAT server, and it will work correctly using parameters for that system.
        
        That file looks like this:
        ```python
        {
        	"trackor.onevizion.com": {
        		"url":"trackor.onevizion.com",
        		"UserName": "jsmith",
        		"Password": “xxxxxxxxxxxx"
        	},
        	"Veracode": {
        		"UserName": "jsmith@onevizion.com",
        		"Password": “xxxxxxxxx"
        	},
        	"Folders": {
        		"Archiva": "/opt/tomcat/data/repositories/releases",
        		"Git": "/Users/jsmith/GitHub/IKAM/ov"
        	},
        	"SMTP_ESRI": {
        		"UserName": "jsmith@onevizion.com",
        		"Password": “xxxxxxxxxxxxx",
        		"Server": "smtp.office365.com",
        		"Port": "587",
        		"Security": "STARTTLS",
        		"To": "jsmith@onevizion.com"
        	},
        	"SMTP": {
        		"UserName": "jsmith@onevizion.com",
        		"Password": “xxxxxxxxxxxx",
        		"Server": "smtp.office365.com",
        		"Port": "587",
        		"Security": "STARTTLS",
        		"To": "jsmith@onevizion.com"
        	},
        	"AWSCredentials": {
        		"AccessKey": “AOJBFJQEBFJQEFJEEJBFEJF",
        		"SecretAccessKey”:”jlknf3kj4nr34rjnwj4nrwj4werwe"
        	}
        }
        ```
        The idea is that you have a token, like “STMP” , or “trackor.onevizion.com”, and it has all the relavent  parameter info.
        
        
        We tried to add some automatic Logging and Messaging for all API connections.  It is optional, but can cut down on lines of code if you want to use it.
        To implement this, we created a Config stucture so you can pass parameters to ALL instances of the classes you create.  This is not elegant, but it cut down on necessary lines of code and made readability much better.
        
        This Config structure is used for Messaging by setting the "Verbosity" item to a number. Vebosity = 0 gives only error messaging, Verbosity = 1 gives a little more information.  The higher the number, the more information, although, at teh time of this writing, 2 is the highest used.
        for example:
        ```python
        onevizion.Config["Verbosity"] = 1
        ```
        
        The Logging part is handled in onevizion.Config["Trace"].  Trace is an OrderedDict.  This can be used however you need to get a list of Messaging that hapened during the script's run.
        
Platform: Unix
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
