13 lines
138 B
Python
13 lines
138 B
Python
# -*- coding: utf-8 -*-
|
|
import ipquery.ipquery
|
|
|
|
|
|
def exec(URL):
|
|
ipquery.ipquery.attack(URL)
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
exec()
|