25 """ |
25 """ |
26 Class implementing the low level interface for Google Safe Browsing. |
26 Class implementing the low level interface for Google Safe Browsing. |
27 |
27 |
28 @signal networkError(str) emitted to indicate a network error |
28 @signal networkError(str) emitted to indicate a network error |
29 """ |
29 """ |
30 ClientId = "eric6_API_client" |
30 ClientId = "eric7_API_client" |
31 ClientVersion = "2.0.0" |
31 ClientVersion = "2.0.0" |
32 |
32 |
33 GsbUrlTemplate = "https://safebrowsing.googleapis.com/v4/{0}?key={1}" |
33 GsbUrlTemplate = "https://safebrowsing.googleapis.com/v4/{0}?key={1}" |
34 |
34 |
35 networkError = pyqtSignal(str) |
35 networkError = pyqtSignal(str) |