Metadata-Version: 2.1
Name: flake8-scrapy
Version: 0.0.1
Summary: UNKNOWN
Home-page: http://github.com/stummjr/flake8-scrapy
Author: Valdir Stumm Junior
Author-email: stummjr@gmail.com
License: MIT
Description: # scrapy-flake8
        
        A Flake8 plugin to catch common issues on Scrapy spiders.
        
        ## Issue types
        
        | Code  | Meaning |
        | ---   | --- |
        | SCP01 | There are URLs in `start_urls` whose netloc is not in `allowed_domains` |
        | SCP02 | There are URLs in `allowed_domains` |
        | SCP03 | Usage of `urljoin(response.url, '/foo')` instead of `response.urljoin('/foo')` |
        | SCP04 | Usage of `Selector(response)` in callback |
        
        This is a work in progress, so new issues will be added to this list.
        
Platform: UNKNOWN
Classifier: Framework :: Flake8
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Quality Assurance
Description-Content-Type: text/markdown
