Skip to content

Files

Latest commit

Jun 7, 2022
89fcdf2 · Jun 7, 2022

History

History
55 lines (46 loc) · 1.48 KB

README.md

File metadata and controls

55 lines (46 loc) · 1.48 KB

OlxAutoSearch

How to run

You need to have python3 installed to run this script. Refer to python website.

Install google-chrome

Ubuntu

wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome-stable_current_amd64.deb

Windows:

Go to https://www.google.com/chrome/ and install Chrome

Clone repo

git clone https://git.kobiela.click/wiktor.kobiela/OlxAutoSearch.git
cd OlxAutoSearch

Create and activate venv

mkdir venv
python3 -m venv venv/
source venv/bin/activate

Install requirements

python3 -m pip install -r requirements.txt

Run the script

python3 olx.py -h
usage: python3 olx.py -i "item_to_search" -c "city_to_search" -v max_value [-w "webhook_url" ] [-h]

Description

required arguments:
  -i "item_to_search"     Provide item name, that should be searched
  -c "city_to_search_in"  Provide city name, where item should be searched
  -v <value>              Provide max value of searched item

optional arguments:
  -w "webhook_url"        Provide discord webhook url - default notifications are off.

helpful arguments:
  -h                      Show this help message and exit

© 2022, wiktor.kobiela

Example usage:

Search IKEA MICKE in Gdańsk city for less than 300 and send notification about new items.

python3 olx.py -i "IKEA MICKE" -c "Gdańsk" -v 300 -w "https://discord.com/api/webhooks/privatewebhook"