Documentation/Source/eric6.Helpviewer.VirusTotalApi.html

changeset 3673
e26d7d0c1088
child 4335
a25c157625c4
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Documentation/Source/eric6.Helpviewer.VirusTotalApi.html	Sat Jul 05 12:29:15 2014 +0200
@@ -0,0 +1,204 @@
+<!DOCTYPE html>
+<html><head>
+<title>eric6.Helpviewer.VirusTotalApi</title>
+<meta charset="UTF-8">
+<style>
+body {
+    background: #EDECE6;
+    margin: 0em 1em 10em 1em;
+    color: black;
+}
+
+h1 { color: white; background: #85774A; }
+h2 { color: white; background: #85774A; }
+h3 { color: white; background: #9D936E; }
+h4 { color: white; background: #9D936E; }
+    
+a { color: #BA6D36; }
+
+</style>
+</head>
+<body><a NAME="top" ID="top"></a>
+<h1>eric6.Helpviewer.VirusTotalApi</h1>
+<p>
+Module implementing the <a href="http://www.virustotal.com">VirusTotal</a>
+API class.
+</p>
+<h3>Global Attributes</h3>
+<table>
+<tr><td>None</td></tr>
+</table>
+<h3>Classes</h3>
+<table>
+<tr>
+<td><a href="#VirusTotalAPI">VirusTotalAPI</a></td>
+<td>Class implementing the <a href="http://www.virustotal.com">VirusTotal</a> API.</td>
+</tr>
+</table>
+<h3>Functions</h3>
+<table>
+<tr><td>None</td></tr>
+</table>
+<hr /><hr />
+<a NAME="VirusTotalAPI" ID="VirusTotalAPI"></a>
+<h2>VirusTotalAPI</h2>
+<p>
+    Class implementing the <a href="http://www.virustotal.com">VirusTotal</a>
+    API.
+</p><h3>Signals</h3>
+<dl>
+<dt>checkServiceKeyFinished(bool, str)</dt>
+<dd>
+emitted after the service key
+        check has been performed. It gives a flag indicating validity
+        (boolean) and an error message in case of a network error (string).
+</dd><dt>fileScanReport(str)</dt>
+<dd>
+emitted with the URL of the file scan report
+        page
+</dd><dt>submitUrlError(str)</dt>
+<dd>
+emitted with the error string, if the URL scan
+        submission returned an error.
+</dd><dt>urlScanReport(str)</dt>
+<dd>
+emitted with the URL of the URL scan report page
+</dd>
+</dl>
+<h3>Derived from</h3>
+QObject
+<h3>Class Attributes</h3>
+<table>
+<tr><td>GetFileReportPattern</td></tr><tr><td>GetUrlReportPattern</td></tr><tr><td>ReportFileScanPagePattern</td></tr><tr><td>ReportUrlScanPagePattern</td></tr><tr><td>ScanUrlPattern</td></tr><tr><td>SearchUrl</td></tr><tr><td>ServiceResult_InvalidServiceKey</td></tr><tr><td>ServiceResult_ItemNotPresent</td></tr><tr><td>ServiceResult_ItemPresent</td></tr><tr><td>ServiceResult_RequestLimitReached</td></tr><tr><td>TestServiceKeyScanID</td></tr>
+</table>
+<h3>Class Methods</h3>
+<table>
+<tr>
+<td><a href="#VirusTotalAPI.getSearchRequestData">getSearchRequestData</a></td>
+<td>Class method to assemble the search request data structure.</td>
+</tr>
+</table>
+<h3>Methods</h3>
+<table>
+<tr>
+<td><a href="#VirusTotalAPI.__init__">VirusTotalAPI</a></td>
+<td>Constructor</td>
+</tr><tr>
+<td><a href="#VirusTotalAPI.__checkServiceKeyValidityFinished">__checkServiceKeyValidityFinished</a></td>
+<td>Private slot to determine the result of the service key validity check.</td>
+</tr><tr>
+<td><a href="#VirusTotalAPI.__getFileScanReportUrl">__getFileScanReportUrl</a></td>
+<td>Private method to get the report URL for a file scan.</td>
+</tr><tr>
+<td><a href="#VirusTotalAPI.__getFileScanReportUrlFinished">__getFileScanReportUrlFinished</a></td>
+<td>Private slot to determine the result of the file scan report URL request.</td>
+</tr><tr>
+<td><a href="#VirusTotalAPI.__loadSettings">__loadSettings</a></td>
+<td>Private method to load the settings.</td>
+</tr><tr>
+<td><a href="#VirusTotalAPI.__submitUrlFinished">__submitUrlFinished</a></td>
+<td>Private slot to determine the result of the URL scan submission.</td>
+</tr><tr>
+<td><a href="#VirusTotalAPI.checkServiceKeyValidity">checkServiceKeyValidity</a></td>
+<td>Public method to check the validity of the given service key.</td>
+</tr><tr>
+<td><a href="#VirusTotalAPI.preferencesChanged">preferencesChanged</a></td>
+<td>Public slot to handle a change of preferences.</td>
+</tr><tr>
+<td><a href="#VirusTotalAPI.submitUrl">submitUrl</a></td>
+<td>Public method to submit an URL to be scanned.</td>
+</tr>
+</table>
+<h3>Static Methods</h3>
+<table>
+<tr><td>None</td></tr>
+</table>
+<a NAME="VirusTotalAPI.getSearchRequestData" ID="VirusTotalAPI.getSearchRequestData"></a>
+<h4>VirusTotalAPI.getSearchRequestData (class method)</h4>
+<b>getSearchRequestData</b>(<i>term</i>)
+<p>
+        Class method to assemble the search request data structure.
+</p><dl>
+<dt><i>term</i></dt>
+<dd>
+search term (string)
+</dd>
+</dl><dl>
+<dt>Returns:</dt>
+<dd>
+tuple of network request object, operation and parameters
+            (QNetworkRequest, QNetworkAccessManager.Operation, QByteArray)
+</dd>
+</dl><a NAME="VirusTotalAPI.__init__" ID="VirusTotalAPI.__init__"></a>
+<h4>VirusTotalAPI (Constructor)</h4>
+<b>VirusTotalAPI</b>(<i>parent=None</i>)
+<p>
+        Constructor
+</p><dl>
+<dt><i>parent</i></dt>
+<dd>
+reference to the parent object (QObject)
+</dd>
+</dl><a NAME="VirusTotalAPI.__checkServiceKeyValidityFinished" ID="VirusTotalAPI.__checkServiceKeyValidityFinished"></a>
+<h4>VirusTotalAPI.__checkServiceKeyValidityFinished</h4>
+<b>__checkServiceKeyValidityFinished</b>(<i></i>)
+<p>
+        Private slot to determine the result of the service key validity check.
+</p><a NAME="VirusTotalAPI.__getFileScanReportUrl" ID="VirusTotalAPI.__getFileScanReportUrl"></a>
+<h4>VirusTotalAPI.__getFileScanReportUrl</h4>
+<b>__getFileScanReportUrl</b>(<i>scanId</i>)
+<p>
+        Private method to get the report URL for a file scan.
+</p><dl>
+<dt><i>scanId</i></dt>
+<dd>
+ID of the scan to get the report URL for (string)
+</dd>
+</dl><a NAME="VirusTotalAPI.__getFileScanReportUrlFinished" ID="VirusTotalAPI.__getFileScanReportUrlFinished"></a>
+<h4>VirusTotalAPI.__getFileScanReportUrlFinished</h4>
+<b>__getFileScanReportUrlFinished</b>(<i></i>)
+<p>
+        Private slot to determine the result of the file scan report URL
+        request.
+</p><a NAME="VirusTotalAPI.__loadSettings" ID="VirusTotalAPI.__loadSettings"></a>
+<h4>VirusTotalAPI.__loadSettings</h4>
+<b>__loadSettings</b>(<i></i>)
+<p>
+        Private method to load the settings.
+</p><a NAME="VirusTotalAPI.__submitUrlFinished" ID="VirusTotalAPI.__submitUrlFinished"></a>
+<h4>VirusTotalAPI.__submitUrlFinished</h4>
+<b>__submitUrlFinished</b>(<i></i>)
+<p>
+        Private slot to determine the result of the URL scan submission.
+</p><a NAME="VirusTotalAPI.checkServiceKeyValidity" ID="VirusTotalAPI.checkServiceKeyValidity"></a>
+<h4>VirusTotalAPI.checkServiceKeyValidity</h4>
+<b>checkServiceKeyValidity</b>(<i>key, protocol=""</i>)
+<p>
+        Public method to check the validity of the given service key.
+</p><dl>
+<dt><i>key</i></dt>
+<dd>
+service key (string)
+</dd><dt><i>protocol</i></dt>
+<dd>
+protocol used to access VirusTotal (string)
+</dd>
+</dl><a NAME="VirusTotalAPI.preferencesChanged" ID="VirusTotalAPI.preferencesChanged"></a>
+<h4>VirusTotalAPI.preferencesChanged</h4>
+<b>preferencesChanged</b>(<i></i>)
+<p>
+        Public slot to handle a change of preferences.
+</p><a NAME="VirusTotalAPI.submitUrl" ID="VirusTotalAPI.submitUrl"></a>
+<h4>VirusTotalAPI.submitUrl</h4>
+<b>submitUrl</b>(<i>url</i>)
+<p>
+        Public method to submit an URL to be scanned.
+</p><dl>
+<dt><i>url</i></dt>
+<dd>
+url to be scanned (QUrl)
+</dd>
+</dl>
+<div align="right"><a href="#top">Up</a></div>
+<hr />
+</body></html>
\ No newline at end of file

eric ide

mercurial