emphasize web crawling over screen scraping on scrapy description. closes #586

This commit is contained in:
Pablo Hoffman 2015-03-18 00:24:16 -03:00
parent da90449edf
commit 5846d6154c
4 changed files with 5 additions and 5 deletions

View File

@ -15,7 +15,7 @@ Scrapy
Overview
========
Scrapy is a fast high-level screen scraping and web crawling framework, used to
Scrapy is a fast high-level web crawling and screen scraping framework, used to
crawl websites and extract structured data from their pages. It can be used for
a wide range of purposes, from data mining to monitoring and automated testing.

4
debian/control vendored
View File

@ -13,8 +13,8 @@ Depends: ${python:Depends}, python-lxml, python-twisted, python-openssl,
Recommends: python-setuptools
Conflicts: python-scrapy, scrapy, scrapy-0.11
Provides: python-scrapy, scrapy
Description: Python web crawling and scraping framework
Scrapy is a fast high-level screen scraping and web crawling framework,
Description: Python web crawling and screen scraping framework
Scrapy is a fast high-level web crawling and screen scraping framework,
used to crawl websites and extract structured data from their pages.
It can be used for a wide range of purposes, from data mining to
monitoring and automated testing.

View File

@ -1,5 +1,5 @@
"""
Scrapy - a screen scraping framework written in Python
Scrapy - a web crawling and screen scraping framework written for Python
"""
__all__ = ['__version__', 'version_info', 'optional_features', 'twisted_version',

View File

@ -10,7 +10,7 @@ setup(
name='Scrapy',
version=version,
url='http://scrapy.org',
description='A high-level Python Screen Scraping framework',
description='A high-level Web Crawling and Screen Scraping framework',
long_description=open('README.rst').read(),
author='Scrapy developers',
maintainer='Pablo Hoffman',