Skip to content

This is a simple python module to interact with the vinted api with ease.

License

Notifications You must be signed in to change notification settings

herissondev/vinted-api-wrapper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

from pyVinted import Vinted

vinted = Vinted()

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

You can access Item attributes as shown here:

item1 = items[0]
#title
item1.title
#id
item1.id
#photo url
item1.photo
#brand
item1.brand_title
#price
item1.price
#url
item1.url
#currency
item1.currency

About

This is a simple python module to interact with the vinted api with ease.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages