Metadata-Version: 2.1
Name: pyVinted
Version: 0.0.2
Summary: Vinted API wrapper for python
Home-page: https://github.com/aime-risson/vinted-api-wrapper
Author: Aimé Risson
Author-email: aime.risson.1@gmail.fr
License: UNKNOWN
Keywords: python,Vinted api,Vinted API wrapper,python vinted
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Education
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Vinted-Api-Wrapper
Simple python package that uses the Vinted API to search new posts.

## Install
Simpely install package using pip :
```
pip install pyVinted
```
## Example

```py
from pyVinted import Vinted

vinted = Vinted("fr")

# search(url, number_of_items, page_number)
vinted.search("https://www.vinted.fr/vetement?order=newest_first&price_to=60&currency=EUR",10,1)

```

