Passed
Push — master ( ee6432...2c449f )
by Randy
01:48
created

page_view   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 5
dl 0
loc 18
rs 10
c 0
b 0
f 0
1
#!/usr/bin/env python3
2
"""
3
Phishing Blocker Project - Analytics
4
5
(c)2020 Star Inc.(https://starinc.xyz).
6
===
7
    This Source Code Form is subject to the terms of the Mozilla Public
8
    License, v. 2.0. If a copy of the MPL was not distributed with this
9
    file, You can obtain one at http://mozilla.org/MPL/2.0/.
10
===
11
"""
12
13
from libs import Analytics
14
15
if __name__ == "__main__":
16
    config = "../config.ini"
17
    handle = Analytics(config)
18