This file is indexed.

/usr/lib/python3/dist-packages/sima/__init__.py is in mpd-sima 0.14.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
# -*- coding: utf-8 -*-
"""WebServices API credentials and ressources
"""
from datetime import timedelta

LFM = {'apikey': 'NG4xcDlxcXJwMjk4MTZycTgwM3E3b3I5MTEzb240cG8',
       'host':'ws.audioscrobbler.com',
       'version': '2.0',}

ECH = {'apikey': 'WlRKQkhTS0JHWFVDUEZZRFA',
       'host': 'developer.echonest.com',
       'version': 'v4',}

WAIT_BETWEEN_REQUESTS = timedelta(days=0, seconds=2)
SOCKET_TIMEOUT = 6

# vim: ai ts=4 sw=4 sts=4 expandtab