Metadata-Version: 2.1
Name: Vinted-api-scraper
Version: 0.3.0
Summary: Une description de votre bibliothèque
Home-page: https://github.com/simonbeguin/Vinted_api_scraper
Author: Simon BEGUIN
Author-email: simon.beguin7@gmail.com
License: UNKNOWN
Description: # Vinted-Api-Wrapper
        Simple python package that uses the Vinted API to search new posts.
        
        ## Install
        Simpely install package using pip :
        ```
        pip install Vinted_api_scraper
        ```
        ## Example
        
        ```py
        from Vinted_api_scraper 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:
        ```py
        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
        ```
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
