Metadata-Version: 2.1
Name: leboncoin-api-wrapper
Version: 0.2
Summary: UNKNOWN
Home-page: https://github.com/Shinyhero36/Leboncoin-API-Wrapper
Author: Shinyhero36
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: requests (>=2.25.0)
Requires-Dist: cloudscraper (>=1.2.48)
Requires-Dist: dataclasses

# Leboncoin API Wrapper

Allow easy acces to leboncoin api using python

## Installation
```bash
pip install .
```

## Usage
```python
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](https://choosealicense.com/licenses/mit/)

