Vehicle Identification Number Library
Project description
vinlib
vinlib is a Vehicle Identification Number Package that allows you to verify and decode parts of the vin number.
Currently it can:
vinlib.check_vin will return whether the entered vin number is authentic/correct.
Vin(‘somevinhere’) will return object that has vehicle year and vin check true/false flag.
Install vinlib
PYPI
You can install vinlib from PyPi:
easy_install vinlib #or pip install vinlib
Done.
Using vinlib
In python code you can check if the vin is valid:
import vinlib myvinnumber='1hasomenumberhere' print vinlib.check_vin(myvinnumber)
This will return true or false depending if the vin number is correct or not.
In python code you can decode vin’s year:
import vinlib print vinlib.Vin('1ZVIHaveAVinNumber17').year
Additional Examples:
import vinlib #get year from a vin print vinlib.Vin('1ZVIHaveAVinNumber17').year #check if vin is valid. print vinlib.Vin('1ZVIHaveAVinNumber17').check
Enjoy,
vinlib team.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file vinlib-0.7.14dev.tar.gz
.
File metadata
- Download URL: vinlib-0.7.14dev.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
42473199bb0a802e8e47b0e6fc462f77b8c07151c9b1363fccde7060c3b47113
|
|
MD5 |
38ae5d5ca0ab0621590339ca5d7eab0e
|
|
BLAKE2b-256 |
5def801c0f63c4fc012a2ed366d55e27e43b796494248324326d7219368a87cd
|