From 192664e86cd985aee26c7e958627ebe554eb84ab Mon Sep 17 00:00:00 2001 From: Daniel <54587088+Kifixo@users.noreply.github.com> Date: Mon, 22 Feb 2021 01:30:47 +0100 Subject: [PATCH 1/2] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 40701f4..fea01b7 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,8 @@ Periodically checks Wallapop for new articles based on specified parameters and ### Setup 🔧 ``` -pip install -U python-dotenv -pip install python-telegram-bot +pip3 install -U python-dotenv +pip3 install python-telegram-bot ``` You will also need to change .env parameters: @@ -16,7 +16,7 @@ TELEGRAM_TOKEN=Your Telegram Token ### Usage ``` -$ python alert.py -h +$ python3 alert.py -h usage: alert.py [-h] --name NAME [--latitude LATITUDE] [--longitude LONGITUDE] [--condition CONDITION] [--min MIN_PRICE] [--max MAX_PRICE] @@ -34,7 +34,7 @@ optional arguments: Example: ``` -$ python alert.py --name ps5 --condition new --min 400 --max 600 +$ python3 alert.py --name ps5 --condition new --min 400 --max 600 ``` From 034dc6163f2b99003bb5b85d92330b2ccdeda08a Mon Sep 17 00:00:00 2001 From: Daniel <54587088+Kifixo@users.noreply.github.com> Date: Mon, 22 Feb 2021 01:31:10 +0100 Subject: [PATCH 2/2] Update .env --- .env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env b/.env index 0212567..5148f7c 100644 --- a/.env +++ b/.env @@ -1,2 +1,2 @@ -TELEGRAM_CHANNEL_ID=@wallapopaler +TELEGRAM_CHANNEL_ID=@Your_Telegram_Channel TELEGRAM_TOKEN=Your Telegram Token