Metadata-Version: 2.1
Name: pylunch
Version: 0.2.9
Summary: Pylunch cli and web tool to get lunch info
Home-page: https://gitlab.com/pestanko/pylunch
License: Apache-2.0
Author: Peter Stanko
Author-email: peter.stanko0@gmail.com
Requires-Python: >=3.6,<4.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Utilities
Requires-Dist: aiodns
Requires-Dist: aiohttp
Requires-Dist: beautifulsoup4
Requires-Dist: click
Requires-Dist: discord.py (>=1.3,<2.0)
Requires-Dist: flask
Requires-Dist: flask-jwt-extended
Requires-Dist: fuzzywuzzy
Requires-Dist: gunicorn (>=19.9,<20.0)
Requires-Dist: html2text
Requires-Dist: ipython
Requires-Dist: lxml
Requires-Dist: pdfminer-six
Requires-Dist: pillow
Requires-Dist: pytesseract
Requires-Dist: python-levenshtein
Requires-Dist: python-telegram-bot (>=12.0.0b1,<13.0.0)
Requires-Dist: pyyaml
Requires-Dist: pyzomato
Requires-Dist: requests
Requires-Dist: toml (>=0.10.0,<0.11.0)
Requires-Dist: unidecode
Requires-Dist: werkzeug
Project-URL: Documentation, https://gitlab.com/pestanko/pylunch
Project-URL: Repository, https://gitlab.com/pestanko/pylunch
Description-Content-Type: text/markdown

# Pylunch

``PyLunch`` was designed to scrape restaurants for it's daily menus and show them in multiple ways and formats.

## Getting stated
`PyLunch` is a scraper, to use it, you have to install it. It is available at [PyLunch](https://gitlab.com/pestanko/pylunch)

### Install the released version

You can install the `PyLunch` using the `pip`:
```bash
$ pip install pylunch
```


### Install the development version from github
- Python 3.7 or later
- (Optional) [pipenv](https://github.com/pypa/pipenv)

Or you can add it as a development dependency using the ``pipenv``

```bash
$ git clone https://github.com/pestanko/pylunch.git
$ cd pylunch
$ pipenv install # install the dependencies
```

### Install Tesseract for OCR support
To support extracting text from images you need to install [Tesseract](https://github.com/tesseract-ocr/tesseract/wiki).
Then you need to download trained models for your language [Tesseract data files wiki](https://github.com/tesseract-ocr/tesseract/wiki/Data-Files) 
(English is supported by default).

Recommended are the [best (most accurate) trained models](https://github.com/tesseract-ocr/tessdata_best).
Save downloaded trained models to a dictionary with name `tessdata`. 
Expose environment variable `TESSDATA_PREFIX` with path to `tessdata` directory (i.e. `TESSDATA_PREFIX=/tmp/tessdata`).

You can specify different language when extracting data from the image for any restaurant with attribute `language: <Lang code>` in `restaurants.yml` file. 

#### Dockerfile supported languages:

| Language | Lang code |
| ---------|:---:| 
| English  | eng | 
| Czech    | ces | 
| Slovak   | slk | 


### First Run
In order to run the tool correctly you need to configure it.

At first run the tool will create config folder in the home directory with restaurants database, 
by default it will be empty.

To use the `zomato` resolver you need to add the `zomato_key` to your configuration.
In order to get the zomato key you need to go to the [Zomato Api documentation](https://developers.zomato.com/api)

```bash
$ pylunch cfg-set zomato_key "<YOUR_KEY>"
```

To use the telegram integration, you need to set the telegram bot token property ``telegram_token``.
To get the telegram bot token please take a look [here](https://core.telegram.org/bots).

```bash
$ pylunch cfg-set telegram_token "<YOUR_KEY>"
```

To use the discord integration, you need to set the discord bot token property `discord_token`.
For more information how to get them you go [here](https://discordapp.com/developers/applications).

```bash
$ pylunch cfg-set discord_token "<YOUR_KEY>"
```

Also if you have already created or exported database of the restaurants, you an import it using the command `import`:
Example file is located in: `resources/restaurants.yml` available [here](https://gitlab.com/pestanko/pylunch/raw/master/resources/restaurants.yml).

```bash
$ pylunch import -O restaurants.yml
```

If you wish to load example from the repository you can use the `curl` and just pipe it to the `import` subcommand.

```bash
$ curl 'https://gitlab.com/pestanko/pylunch/raw/master/resources/restaurants.yml' | pylunch import -O 
```

In order to export the restaurants database file, you can use the export command.
```bash
$ pylunch export -f exported.yml
```

## Run the cli tool

Hera is a help output with available commands.

```bash
# Show the help
$ pylunch --help

Usage: pylunch [OPTIONS] COMMAND [ARGS]...

  PyLunch CLI tool

Options:
  --version              Show the version and exit.
  -L, --log-level TEXT   Set log level (d|i|w|e) - default=w
  -C, --no-cache         Disable cache
  -c, --config-dir TEXT  Location to the configuration directory
  -F, --format TEXT      Set output format
  --help                 Show this message and exit.

Commands:
  add            Adds a new restaurant
  cache-clear    Clear a current cache for a day
  cache-content  Show the current cache for a day
  cfg-edit       Edit a configuration using the editor (Ex: VIM)
  cfg-set        Set a config value in the user configuration
  config         Shows the current configuration
  console        Start the interactive console (IPython)
  disable        Disables the restaurants
  edit           Edits restaurants DB file
  enable         Enables the restaurants
  export         Export restaurants
  import         Import restaurants
  info           Get info for the restaurant
  ls             List all available restaurants
  menu           Get menu for a restaurant
  rm             Removes the restaurant
  telegram-bot   Start the telegram bot
```

### Runnig the server

As a server is used the Flask.
To run the flask server please take a look to the documnetation.

In order to start the pylunch server take a look at the `run_flask.ps1` or `run_flask.sh` scripts.

For access to the admin pages - in order to import restaurants or invalidate (refresh cache) you will need to set env variables:
```
PYLUNCH_SECRET=<JWT_SECRET>
PYLUNCH_USERS=PATH_TO_USERS_FILE
```


Admin user credentials:

```
Username: admin
Password: foobar1
```

