Metadata-Version: 2.1
Name: mercari
Version: 0.0.6
Summary: mercari api-like wrapper
Home-page: https://github.com/marvinody/mercari/
Author: marvinody
Author-email: manny@sadpanda.moe
License: UNKNOWN
Description: # Mercari Wrapper
        
        A simple api wrapper around the Mercari jp site.
        
        Simple usage can be something like
        
        ```python
        import mercari
        
        for item in mercari.search("東方 ふもふも"):
            print("{}, {}".format(item.productName, item.productURL))
        ```
        
        the item object contains the following properties
        
        - productURL
        - imageURL
        - productName
        - price
        - productCode
        
        ## Google Proxy
        
        By default, the wrapper will try to use a google proxy to hide traffic. This is a bit finicky and I think google has wised up recently. To disable it and have your requests by direct to mercari, use it in the following way
        
        ```python
        import mercari
        
        for item in mercari.search("東方 ふもふも", use_google_proxy=False):
            print("{}, {}".format(item.productName, item.productURL))
        ```
        
        The wrapper will throw on any 4xx or 5xx http status code.
        
        Main reason I've seen errors is because mercari decides to throw 403 if they blacklist your IP. I've tried to get around this with the google proxy, but it seems like google themselves are blocking either the IP or the mercari domain.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.5
Description-Content-Type: text/markdown
