For example if I ran this search:
python3 subito-searcher.py --add "orologi" --url "https://www.subito.it/annunci-italia/vendita/usato/?q=orologi" --maxPrice "700"
I'll get results like this:
Rolex oyster perpetual : 4.500 € --> Alassio (SV)
but 4.500 is greater than 700.
I think the problem is that strings are used to represent the prices, in fact you can run into many bugs like this, but it should be easy enough to fix, just convert the strings to integers.
For example if I ran this search:
python3 subito-searcher.py --add "orologi" --url "https://www.subito.it/annunci-italia/vendita/usato/?q=orologi" --maxPrice "700"
I'll get results like this:Rolex oyster perpetual : 4.500 € --> Alassio (SV)
but 4.500 is greater than 700. I think the problem is that strings are used to represent the prices, in fact you can run into many bugs like this, but it should be easy enough to fix, just convert the strings to integers.