Metadata-Version: 2.1
Name: scrapy-googlechat
Version: 1.0
Summary: Send crawl reports from Scrapy spiders to Google Chat
Home-page: https://github.com/innovinati/scrapy-googlechat
Author: Maximilian Wolf
Author-email: maximilian.wolf@innovinati.com
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/innovinati/scrapy-googlechat/issues
Project-URL: Source, https://github.com/innovinati/scrapy-googlechat/
Description: # scrapy-google-chat
        Send crawl reports from Scrapy spiders to Google Chat
        
        ## Usage
        Create a webhook in Google Chat: https://developers.google.com/hangouts/chat/how-tos/webhooks
        
        Within your Scrapy project, install the package:
        ```bash
        pip install scrapy-google-chat
        ```
        
        Register and configure the extension in `settings.py`:
        ```bash
        EXTENSIONS = {
            ...
            'scrapy_google_chat.GoogleChatBot': 100,
            ...
        }
        ...
        GOOGLE_CHAT_WEBHOOK = <YOUR_WEBHOOK>
        ```
        
        You're good to go. Happy crawling!
        
Keywords: scrapy,google chat,bot
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.5, <4
Description-Content-Type: text/markdown
