Skip to content

dmr.py - v1.0.0

Compare
Choose a tag to compare
@j4asper j4asper released this 07 Sep 17:45
· 42 commits to main since this release

Breaking Changes:

The DMR object has been refactored, and now only contains class methods to scrape data and validate license plates. This means that this code is invalid now:

vehicle = DMR(license_plate).get_by_plate()

It should now be:

vehicle = DMR.get_by_plate(license_plate)

Same thing with get_by_plate_async.

Models added

New models have now been added and can be viewed in this folder. The base class returned from the scraper is Vehicle, that includes all the other classes and enums in it's attributes.

What's Changed

New Contributors

Full Changelog: 0.0.9...1.0.0