This file is indexed.

/usr/share/pyshared/d_rats/wu.py is in d-rats 0.3.3-3ubuntu1.

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
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#!/usr/bin/python
#
# Copyright 2008 Dan Smith <dsmith@danplanet.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

import os
import libxml2
import urllib

class InvalidXMLError(Exception):
    pass

WEATHER_KEYS = [
    "temperature_string", "temp_f", "temp_c",
    "relative_humidity",
    "wind_string", "wind_dir", "wind_degrees", "wind_mph", "wind_gust_mph",
    "pressure_string", "pressure_mb", "pressure_in",
    "dewpoint_in", "dewpoint_f", "dewpoint_c",
    "heat_index_string", "heat_index_f", "heat_index_c",
    "windchill_string", "windchill_f", "windchill_c",
    "precip_1hr_string", "precip_1hr_in", "precip_1hr_metric",
    "precip_today_string", "precip_today_in", "precip_today_metric",
]

class WUObservation(object):
    def __init__(self):
        self.location = {}
        self.station_id = None
        self.time = None

        self.weather = {}

    def __str__(self):
        return "%s: %s (%s)" % (self.location["full"],
                                self.weather["temperature_string"],
                                self.time)

    def __parse_location(self, node):
        child = node.children
        while child:
            self.location[child.name] = child.getContent()
            child = child.next

    def __parse_doc(self, doc):
        root = doc.children

        if root.name != "current_observation":
            raise InvalidXMLError("Root is not current_observation")

        child = root.children
        while child:
            if child.name in ["location", "observation_location"]:
                self.__parse_location(child)
            elif child.name == "station_id":
                self.staton_id = child.getContent()
            elif child.name == "observation_time_rfc822":
                try:
                    self.time = datetime.datetime.strptime(\
                        child.getContent(),
                        "%a, %d %B %Y %H:%M:%S %Z")
                except:
                    self.time = child.getContent()
            elif child.name in WEATHER_KEYS:
                self.weather[child.name] = child.getContent()

            child = child.next

    def from_xml(self, xml):
        doc = libxml2.parseMemory(xml, len(xml))
        return self.__parse_doc(doc)

    def from_uri(self, uri):
        fn, foo = urllib.urlretrieve(uri)
        doc = libxml2.parseFile(fn)
        os.remove(fn)
        return self.__parse_doc(doc)