mirror of https://github.com/scrapy/scrapy.git
29 lines
888 B
Python
29 lines
888 B
Python
"""
|
|
This module defines the Link object used in Link extractors.
|
|
|
|
For actual link extractors implementation see scrapy.contrib.linkextractor, or
|
|
its documentation in: docs/topics/link-extractors.rst
|
|
"""
|
|
|
|
class Link(object):
|
|
"""Link objects represent an extracted link by the LinkExtractor.
|
|
At the moment, it contains just the url and link text.
|
|
"""
|
|
|
|
__slots__ = ['url', 'text', 'nofollow']
|
|
|
|
def __init__(self, url, text='', nofollow=False):
|
|
self.url = url
|
|
self.text = text
|
|
self.nofollow = nofollow
|
|
|
|
def __eq__(self, other):
|
|
return self.url == other.url and self.text == other.text and self.nofollow == other.nofollow
|
|
|
|
def __hash__(self):
|
|
return hash(self.url) ^ hash(self.text) ^ hash(self.nofollow)
|
|
|
|
def __repr__(self):
|
|
return 'Link(url=%r, text=%r, nofollow=%r)' % (self.url, self.text, self.nofollow)
|
|
|