Example to integrating IBP Index in PYTHON applications Contact IBP Index to obtain the key. PYTHON example authored by Francisco José Arnau import requests def ibpindex(filepath, key): url = 'http://www.ibpindex.com/esp/ibpresponse.php' files = {'fichero': open(filepath, 'rb'), 'UDO': key} r=requests.post(url,files=files) return r.text