This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ############################################################################################################ | |
| # Module Variables - PC Health # | |
| #----------------------------------# | |
| # Customise report Variables | |
| $EmailTo = $EmailTo | |
| $EmailSubject = $EmailSubject | |
| $ReportTitle = $ReportTitle | |
| $ReportSubTitle = $ReportSubTitle |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys | |
| import webbrowser as wb | |
| import simplejson as json | |
| from restkit import Resource, BasicAuth, request | |
| def createTask(server_base_url, user, password, project, task_summary): | |
| auth = BasicAuth(user, password) | |