This is vin-parser package description
Project description
vin-parser
Library that provides functions to work with VIN strings.
Install
vin-parser is available on PyPI and can be installed using pip.
$ pip install vin-parser
Usage
All the public functions are exported to the package namespace. We'll alias it as vp in the following examples.
>>> import vin_parser as vp
The functions check_no, seq_no, wmi, vds and vis return parts of the VIN string.
>>> vin = "1GYFK63878R248711"
>>> vp.check_no(vin)
'7'
Function check_no returns the VIN check digit, i.e. position 9 in the VIN string. It returns for all VINs, even for those that don't use the check digit schema.
>>> vp.wmi(vin)
'1GY'
>>> vp.vds(vin)
'FK6387'
Lowercase VINs are accepted:
>>> vp.vis(vin.lower())
'8R248711'
check_valid, is_valid and small_manuf are predicate functions, i.e. functions that return True or False.
check_valid returns True if the VIN's check digit matches the computed value.
is_valid returns True if the provided VIN is valid. Because the use of VIN check digit is not adopted worldwide, the check_valid test is not performed when verifing the validity of a VIN.
Functions continent, country, year and manuf parse the VIN and return the values. year returns a positive integer, while the others return a string with their name.
>>> vp.country(vin)
'United States'
>>> vp.year(vin)
2008
>>> vp.manuf(vin)
'General Motors USA'
Function parse calls all the other functions and returns the results in a dict if the provided VIN is valid.
Function online_parse queries the nhtsa api with the provided VIN. Empty values are removed from the response and the rest are returned in a python dict. No other transformations are performed on the keys or values.
Note that, unlike parse, online_parse doesn't check if the VIN is valid before sending it to the remote server.
The CHARS constant is a sorted string with all the valid characters of a VIN: A to Z, 1 to 9 and 0, except for I, O and Q.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file vin-parser-0.0.1.tar.gz.
File metadata
- Download URL: vin-parser-0.0.1.tar.gz
- Upload date:
- Size: 11.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.40.1 CPython/3.7.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a6a2f783d1db8328abc22e71c75462f74a86c30fb0df41478ce5bb79149c1938
|
|
| MD5 |
8b6ee3aaba25d23666c78e557a22d750
|
|
| BLAKE2b-256 |
79ac10f1ecddcff819f8f2d8260d4b18243aa09eb30e2f3e63a474ae894ba85d
|
File details
Details for the file vin_parser-0.0.1-py3-none-any.whl.
File metadata
- Download URL: vin_parser-0.0.1-py3-none-any.whl
- Upload date:
- Size: 11.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.40.1 CPython/3.7.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ce45ce0de447e5a1edb3400766dfde0816513ddca08e48c41b305e2669cc88d1
|
|
| MD5 |
486f0bd1cf863618727cac0f0fe558ac
|
|
| BLAKE2b-256 |
e540b15e3efe13279a6cc4607ed31f7564e7b094313f464769a2619c18aa80e3
|