#!/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'
}

DNS_QUERIES_TYPE = {
    'A': 'address',
    'MX': ['exchange', 'preference'],
    'TXT': 'strings',
}