14 lines
277 B
Python
14 lines
277 B
Python
#!/usr/bin/venv python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
VT_ATTRIBUTES_MAPPING = {
|
|
'asn': 'str',
|
|
'as_owner': 'int',
|
|
'continent': 'str',
|
|
'country': 'str',
|
|
'last_analysis_date': 'date',
|
|
'regional_internet_registry': 'str',
|
|
'network': 'str',
|
|
'ip': 'str'
|
|
}
|