This file is indexed.

/usr/lib/python2.7/dist-packages/scrapy/project.py is in python-scrapy 1.0.3-2.

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
"""
Obsolete module, kept for giving a meaningful error message when trying to
import.
"""

raise ImportError("""scrapy.project usage has become obsolete.

If you want to get the Scrapy crawler from your extension, middleware or
pipeline implement the `from_crawler` class method (or look up for extending
components that have already done it, such as spiders).

For example:

    @classmethod
    def from_crawler(cls, crawler):
        return cls(crawler)""")