[tools] Rewrite Ruby scripts in Python for consistency #9791

Open
meenbeese wants to merge 1 commit from meenbeese/py-rewrite into master
meenbeese commented 2024-11-30 20:55:37 +00:00 (Migrated from github.com)
  • Rewrote the scripts in Python with same functionality
  • Relocated the scripts to be under tools/python
  • Tested them with the latest Python 3.13 version
- Rewrote the scripts in Python with same functionality - Relocated the scripts to be under `tools/python` - Tested them with the latest Python 3.13 version
rtsisyk reviewed 2024-11-30 20:55:37 +00:00
pastk reviewed 2024-12-03 12:18:09 +00:00
@ -58,9 +58,10 @@ By default, it searches `strings.txt`, to check `types_strings.txt` add a `-t` o
There are many more other options, e.g. print various translation statistics, validate and re-format translation files.
Check `tools/python/strings_utils.py -h` to see all of them.

But the script operates with string.txt...

Could you please add a comment to the script describing what exactly does it check?
I've tried to make some changes to the UI search categories in categories.txt but couldn't make the script fail.

But the script operates with `string.txt`... Could you please add a comment to the script describing what exactly does it check? I've tried to make some changes to the UI search categories in categories.txt but couldn't make the script fail.
meenbeese (Migrated from github.com) reviewed 2024-12-03 18:39:27 +00:00
pastk reviewed 2024-12-03 18:58:49 +00:00
meenbeese (Migrated from github.com) reviewed 2024-12-03 19:08:44 +00:00
meenbeese (Migrated from github.com) reviewed 2024-12-03 19:22:34 +00:00
@ -58,9 +58,10 @@ By default, it searches `strings.txt`, to check `types_strings.txt` add a `-t` o
There are many more other options, e.g. print various translation statistics, validate and re-format translation files.
Check `tools/python/strings_utils.py -h` to see all of them.
meenbeese (Migrated from github.com) commented 2024-12-03 19:22:33 +00:00

Added a comment in the script and updated the documentation.

Added a comment in the script and updated the documentation.
pastk reviewed 2024-12-03 20:15:13 +00:00
meenbeese (Migrated from github.com) reviewed 2024-12-04 03:34:58 +00:00
strump reviewed 2024-12-04 09:55:02 +00:00
@ -0,0 +46,4 @@
return [cat.strip().strip('"') for cat in raw_categories.split(",")]
def compare_categories(string_cats, search_cats, cpp_cats):

Please add type annotations like you did in omim_parsers.py

Please add type annotations like you did in omim_parsers.py
@ -0,0 +53,4 @@
for category_name in search_cats.keys():
if category_name not in string_cats:
missing_categories.append(category_name)

You can simplify this code by using set collection. For example:

missing_categories = search_cats.keys() - set(string_cats)
You can simplify this code by using `set` collection. For example: ```python missing_categories = search_cats.keys() - set(string_cats) ```
@ -0,0 +57,4 @@
for cpp_cat in cpp_cats:
if cpp_cat not in search_cats:
extra_categories.append(cpp_cat)

You can simplify this code by using set collection. For example:

extra_categories = set(cpp_cats) - set(search_cats)
You can simplify this code by using `set` collection. For example: ```python extra_categories = set(cpp_cats) - set(search_cats) ```
@ -0,0 +36,4 @@
continue
# Match a new category
category_match = self.category().match(line)

Small optimization here: no need to call self.category() for every line.

Please create new variable at the start of parse_file(...) method and put there result of self.category()
For example:

category_regex = self.category()
with open(...):
    ...
    category_match = category_regex.match(line)
Small optimization here: no need to call `self.category()` for every line. Please create new variable at the start of `parse_file(...)` method and put there result of `self.category()` For example: ```python category_regex = self.category() with open(...): ... category_match = category_regex.match(line) ```
@ -0,0 +52,4 @@
return result
def category(self) -> re.Pattern:

Let's rename method from category(self) to category_re(self).

Let's rename method from `category(self)` to `category_re(self)`.
pastk requested changes 2024-12-10 15:17:22 +00:00
pastk left a comment
Member

As commented above need to fix the check logic..

As commented above need to fix the check logic..
This repo is archived. You cannot comment on pull requests.
No reviewers
No labels
Accessibility
Accessibility
Address
Address
Android
Android
Android Auto
Android Auto
Android Automotive (AAOS)
Android Automotive (AAOS)
API
API
AppGallery
AppGallery
AppStore
AppStore
Battery and Performance
Battery and Performance
Blocker
Blocker
Bookmarks and Tracks
Bookmarks and Tracks
Borders
Borders
Bug
Bug
Build
Build
CarPlay
CarPlay
Classificator
Classificator
Community
Community
Core
Core
CrashReports
CrashReports
Cycling
Cycling
Desktop
Desktop
DevEx
DevEx
DevOps
DevOps
dev_sandbox
dev_sandbox
Directions
Directions
Documentation
Documentation
Downloader
Downloader
Drape
Drape
Driving
Driving
Duplicate
Duplicate
Editor
Editor
Elevation
Elevation
Enhancement
Enhancement
Epic
Epic
External Map Datasets
External Map Datasets
F-Droid
F-Droid
Fonts
Fonts
Frequently User Reported
Frequently User Reported
Fund
Fund
Generator
Generator
Good first issue
Good first issue
Google Play
Google Play
GPS
GPS
GSoC
GSoC
iCloud
iCloud
Icons
Icons
iOS
iOS
Legal
Legal
Linux Desktop
Linux Desktop
Linux packaging
Linux packaging
Linux Phone
Linux Phone
Mac OS
Mac OS
Map Data
Map Data
Metro
Metro
Navigation
Navigation
Need Feedback
Need Feedback
Night Mode
Night Mode
NLnet 2024-06-281
NLnet 2024-06-281
No Feature Parity
No Feature Parity
Opening Hours
Opening Hours
Outdoors
Outdoors
POI Info
POI Info
Privacy
Privacy
Public Transport
Public Transport
Raw Idea
Raw Idea
Refactoring
Refactoring
Regional
Regional
Regression
Regression
Releases
Releases
RoboTest
RoboTest
Route Planning
Route Planning
Routing
Routing
Ruler
Ruler
Search
Search
Security
Security
Styles
Styles
Tests
Tests
Track Recording
Track Recording
Translations
Translations
TTS
TTS
UI
UI
UX
UX
Walk Navigation
Walk Navigation
Watches
Watches
Web
Web
Wikipedia
Wikipedia
Windows
Windows
Won't fix
Won't fix
World Map
World Map
No milestone
No project
No assignees
4 participants
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: organicmaps/organicmaps-tmp#9791
No description provided.