Metadata-Version: 2.1
Name: poledni-menu
Version: 0.6
Summary: Scrap daily menu and send it via e-mail
Home-page: https://github.com/oskar456/poledni-menu
Author: Ondřej Caletka
Author-email: ondrej@caletka.cz
License: MIT
Description: Polední menu
        ============
        
        This utility will scrap daily menues from nearby restaurants and
        send them via e-mail. It is based on very simple modular architecture where
        each extractor presents similar API.
        
        Instalation
        -----------
        
        Use Python 3.6 virtual environment to install all necessary dependencies:
        
        .. code-block:: shell
        
            $ python3 -m venv venv
            $ source venv/bin/activate
            (venv) $ pip install -U pip
            (venv) $ pip install git+https://github.com/oskar456/poledni-menu
        
        After installation, you'll get three new runables:
        
        `poledni-menu-print <extractor>`
          Call given extractor and print its output to the standard output.
        
        `poledni-menu-digest <config file>`
          Read a list of extractors and their parameters from a YAML config file.
          Print daily menu digest to the standard output.
        
        `poledni-menu-email <config file>`
          Read a list of extractors and their parameters from a YAML config file.
          Send an e-mail with the digest to e-mail addresses configured in the
          config file.
        
        Configuration file example
        --------------------------
        
        .. code-block:: yaml
        
            ---
            menu:
             - potrefena_husa
             - kulatak
             - budvarka
             - blox
             - extractor: agata
               place_id: 3
             - extractor: agata
               place_id: 5
             - bernard_pub
        
            email:
              server: localhost
              sender: Foodmaster <foodmaster@example.com>
              recipients:
                      - Root <root@localhost>
                      - postmaster@example.com
            ...
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Utilities
Requires-Python: >=3.6
Description-Content-Type: text/x-rst
