Metadata-Version: 2.1
Name: vininfo
Version: 1.3.0
Summary: Extracts useful information from Vehicle Identification Number (VIN)
Home-page: https://github.com/idlesign/vininfo
Author: Igor `idle sign` Starikov
Author-email: idlesign@yandex.ru
License: BSD 3-Clause License
Description: vininfo
        =======
        https://github.com/idlesign/vininfo
        
        .. image:: https://idlesign.github.io/lbc/py2-lbc.svg
           :target: https://idlesign.github.io/lbc/
           :alt: LBC Python 2
        
        ----
        
        |release| |lic| |ci| |coverage| |health|
        
        .. |release| image:: https://img.shields.io/pypi/v/vininfo.svg
            :target: https://pypi.python.org/pypi/vininfo
        
        .. |lic| image:: https://img.shields.io/pypi/l/vininfo.svg
            :target: https://pypi.python.org/pypi/vininfo
        
        .. |ci| image:: https://img.shields.io/travis/idlesign/vininfo/master.svg
            :target: https://travis-ci.org/idlesign/vininfo
        
        .. |coverage| image:: https://img.shields.io/coveralls/idlesign/vininfo/master.svg
            :target: https://coveralls.io/r/idlesign/vininfo
        
        .. |health| image:: https://landscape.io/github/idlesign/vininfo/master/landscape.svg?style=flat
            :target: https://landscape.io/github/idlesign/vininfo/master
        
        
        Description
        -----------
        
        *Extracts useful information from Vehicle Identification Number (VIN)*
        
        * Can be used as a standalone console application (CLI).
        * One can also use import it as any other package in your Python code.
        * Gives basic and detailed info (is available) about VIN.
        * Allows VIN checksum verification.
        
        Additional info available for many vehicles from:
        
        * AvtoVAZ
        * Nissan
        * Opel
        * Renault
        
        
        Requirements
        ------------
        
        * Python 2.7, 3.5+
        * `click` package for CLI
        
        
        Usage
        -----
        
        CLI
        ~~~
        
        `click` package is required for CLI. You can install `vininfo` with `click` using::
        
            $ pip install vininfo[cli]
        
        
        .. code-block:: bash
        
            $ vininfo --help
        
            ; Print out VIN info:
            $ vininfo show XTAGFK330JY144213
        
            ; Basic:
            ; Country: USSR/CIS
            ; Manufacturer: AvtoVAZ
            ; Region: Europe
            ; Years: 2018, 1988
            ;
            ; Details:
            ; Body: Station Wagon, 5-Door
            ; Engine: 21179
            ; Model: Vesta
            ; Plant: Izhevsk
            ; Serial: 144213
            ; Transmission: Manual Renault
        
            ; Verify checksum
            $ vininfo check 1M8GDM9AXKP042788
            ; Checksum is valid
        
        
        Python
        ~~~~~~
        
        .. code-block:: python
        
            from vininfo import Vin
        
            vin = Vin('VF1LM1B0H36666155')
        
            vin.country  # France
            vin.manufacturer  # Renault
            vin.region  # Europe
            vin.wmi  # VF1
            vin.vds  # LM1B0H
            vin.vis  # 36666155
        
            annotated = vin.annotate()
            details = vin.details
        
            vin.verify_checksum()  # False
            Vin('1M8GDM9AXKP042788').verify_checksum()  # True
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: BSD License
Provides-Extra: cli
