/Leboncoin-API-Wrapper

Allow easy acces to leboncoin api using python

Primary LanguagePython

Leboncoin API Wrapper

Build Status Coverage Badge GitHub issues GitHub pull requests

Build Status Build Status GitHub code size in bytes

Allow easy acces to leboncoin api using python

Installation

pip install .

Usage

from leboncoin_api_wrapper import Leboncoin

lbc = Leboncoin()
lbc.searchFor("iphone")
lbc.setLimit(10)
lbc.maxPrice(2000)
lbc.setDepartement("tarn")
results = lbc.execute()

for ad in results.ads():
    print(ad.subject, ad.price)
print("\n")

for ad in results.shippable_ads():
    print(ad.subject)
    print(ad.body)
    print("\n")

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT