Metadata-Version: 1.1
Name: PyRDW
Version: 1.0b
Summary: PyRDW gives a basic way of fetching licensenumber-data from the RDW, the dutch department of road transport.
Home-page: http://github.com/rense/pyrdw
Author: Rense VanderHoek
Author-email: vanderhoek@gmail.com
License: MIT
Description: PyRDW
        =====
        
        PyRDW gives a basic way of fetching licensenumber-data from the RDW, the dutch department of road transport.
        Keys in data returned (by the RDW) are in dutch, unfortunately.
        
        See the RDW for data-documentation:
        
        https://www.rdw.nl/opendata/Paginas/handleidingen.aspx?path=Portal/OpenData
        
        Regular expressions copied from:
        
        http://blog.kenteken.tv/2011/05/06/code-snippets-formatteren-rdw-kenteken/
        
        
        
        ###Usage
        
        
        ```
        >>> from pyrdw.license_number import LicenseNumber
        >>>
        >>> license_number = LicenseNumber('8tgj72')
        >>> license_number.formatted
        '8-TGJ-72'
        >>> license_number.data['Merk']
        u'FERRARI'
        >>> license_number.data['Handelsbenaming']
        u'458'
        >>> license_number.data['Aantalzitplaatsen']
        2
        >>> license_number.data['BPM']
        50193
        
        ```
        
        
        ###Version-history
        
        1.0b - Basic functionality with license_number validation and an RDW call.
        
Platform: UNKNOWN
Classifier: Classifier: Development Status :: 4 - Beta
Classifier: Classifier: Intended Audience :: Developers
Classifier: Classifier: License :: OSI Approved :: MIT License
Classifier: Classifier: Natural Language :: Dutch
Classifier: Classifier: Programming Language :: Python :: 2 :: Only
