Skip to main content

A library to watch for new items at wallapop.es

Project description

Wallapop update notifier

This package can be used to provide updates when new products appear on Wallapop. Install it just by using:

pip install wallapopUpdateWatcher

Basic usage example

from wallapopUpdateWatcher import updateWatcher,Query,Producto
import asyncio
async def callback(q: Query, l: list[Producto]):
    for prod in l:
        print(prod.msg())


async def main():
    watcher = updateWatcher(callback)
    await watcher.create("Iphone",strategy="price", min_max_sale_price = (15,30))
    # this creates a search for the product "Iphone"
    # between 15€ and 30€. 

    while True:
        await watcher.checkOperation()
        await asyncio.sleep(5)

asyncio.run(main())

Strategies:

Strategies are what decides if a product that has already appeared sometime is going to be notified. There are 3 strategies:

  • Price: This strategy only adds the product if its price has changed. It is the default strategy.

  • New: This strategy only notifies new products.

  • Any: This strategy notifies any product, even if it has already been notified.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

wallapopupdatewatcher-0.1.3.tar.gz (18.2 kB view hashes)

Uploaded Source

Built Distribution

wallapopupdatewatcher-0.1.3-py3-none-any.whl (19.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page