mirror of https://github.com/scrapy/scrapy.git
emphasize web crawling over screen scraping on scrapy description. closes #586
This commit is contained in:
parent
da90449edf
commit
5846d6154c
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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',
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Reference in New Issue