mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-04 14:43:01 +02:00
* Initial plan * Add Polish license plate Anki generator with bidirectional cards Co-authored-by: kuhyx <147418882+kuhyx@users.noreply.github.com> * Add comprehensive README for Polish license plates package Co-authored-by: kuhyx <147418882+kuhyx@users.noreply.github.com> * Fix license plate data: correct WT (Wawer) and WWY (Wyszków) mappings Co-authored-by: kuhyx <147418882+kuhyx@users.noreply.github.com> * Add Wikipedia scraper for automatic license plate data extraction Co-authored-by: kuhyx <147418882+kuhyx@users.noreply.github.com> * Improve fetch_license_plates: add constants and update User-Agent Co-authored-by: kuhyx <147418882+kuhyx@users.noreply.github.com> * Add caching to Wikipedia scraper to avoid unnecessary requests Co-authored-by: kuhyx <147418882+kuhyx@users.noreply.github.com> * Add error handling for cache file operations Co-authored-by: kuhyx <147418882+kuhyx@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: kuhyx <147418882+kuhyx@users.noreply.github.com>
8 lines
209 B
Python
8 lines
209 B
Python
"""Polish license plate Anki flashcard generator."""
|
|
|
|
from __future__ import annotations
|
|
|
|
__all__ = ["LICENSE_PLATE_CODES"]
|
|
|
|
from python_pkg.polish_license_plates.license_plate_data import LICENSE_PLATE_CODES
|