libs.survey   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 5
dl 0
loc 14
rs 10
c 0
b 0
f 0
1
from .page_view import View
2
from .phishtank import PhishTank
3
from .safebrowsing import GoogleSafeBrowsing
4
5
"""
6
    Copyright (c) 2020 Star Inc.(https://starinc.xyz)
7
8
    This Source Code Form is subject to the terms of the Mozilla Public
9
    License, v. 2.0. If a copy of the MPL was not distributed with this
10
    file, You can obtain one at http://mozilla.org/MPL/2.0/.
11
"""
12
13
__all__ = ["View", "GoogleSafeBrowsing", "PhishTank"]
14