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:
py
vehicle = DMR(license_plate).get_by_plate()
It should now be:
py
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](https://github.com/j4asper/dmr.py/tree/main/dmr/models). The base class returned from the scraper is Vehicle, that includes all the other classes and enums in it's attributes.
What's Changed
* Bump pydantic from 2.1.1 to 2.2.1 by dependabot in https://github.com/j4asper/dmr.py/pull/4
* Bump pydantic from 2.2.1 to 2.3.0 by dependabot in https://github.com/j4asper/dmr.py/pull/5
* Merge v1.0.0 update by j4asper in https://github.com/j4asper/dmr.py/pull/6
New Contributors
* dependabot made their first contribution in https://github.com/j4asper/dmr.py/pull/4
* j4asper made their first contribution in https://github.com/j4asper/dmr.py/pull/6
**Full Changelog**: https://github.com/j4asper/dmr.py/compare/0.0.9...1.0.0