Metadata-Version: 1.0
Name: python-vpic
Version: 0.1.4
Summary: Simple wrapper to the vPic API.
Home-page: https://github.com/OmniRisk/python-vpic
Author: Damian Hites
Author-email: damian@omnirisk.co
License: MIT
Description: # Python-vPic
        
        A simple wrapper around the vPic API.
        
        ## To install:
        pip install python-vpic
        
        ## To use:
        ```
        from vpic import vpic
        
        # Single VIN lookup
        vehicle = vpic.lookup_vin('5FYD4FS147B031975')
        print('Make:', vehicle.make)
        print('Model:', vehicle.model)
        print('Year:', vehicle.model_year)
        
        # Bulk VIN lookup
        vehicles = vpic.lookup_vins(
            [{'vin': '5FYD4FS147B031975', 'year': 2006}, {'vin': '4V4WDBPFSCN735320'}]
        )
        # ...
        ```
        
Keywords: vPic
Platform: UNKNOWN
