{"id":21184497,"url":"https://github.com/mohyoo/google-multiple-images-tanslator","last_synced_at":"2026-04-16T19:32:15.393Z","repository":{"id":263319461,"uuid":"890016406","full_name":"Mohyoo/Google-Multiple-Images-Tanslator","owner":"Mohyoo","description":"Translate multiple images via google translator! for linux.","archived":false,"fork":false,"pushed_at":"2024-11-26T16:07:47.000Z","size":58,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-27T18:43:04.952Z","etag":null,"topics":["debian","imag","images","linux","python-3","translation"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Mohyoo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-11-17T19:57:27.000Z","updated_at":"2024-11-26T16:07:51.000Z","dependencies_parsed_at":"2025-01-20T05:38:50.826Z","dependency_job_id":null,"html_url":"https://github.com/Mohyoo/Google-Multiple-Images-Tanslator","commit_stats":null,"previous_names":["mohyoo/google-multipla-image-tanslator","mohyoo/google-multiple-images-tanslator"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mohyoo%2FGoogle-Multiple-Images-Tanslator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mohyoo%2FGoogle-Multiple-Images-Tanslator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mohyoo%2FGoogle-Multiple-Images-Tanslator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mohyoo%2FGoogle-Multiple-Images-Tanslator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Mohyoo","download_url":"https://codeload.github.com/Mohyoo/Google-Multiple-Images-Tanslator/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243639408,"owners_count":20323505,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["debian","imag","images","linux","python-3","translation"],"created_at":"2024-11-20T18:09:06.265Z","updated_at":"2025-12-28T19:50:21.120Z","avatar_url":"https://github.com/Mohyoo.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Description\n1) A python program that allows you to translate multiple images\nvia google translator, without wasting time in clicking \u0026 dragging; based on selenium.\n2) Still under development, please report bugs.\n3) For now, it only works on Debian; but it may work for other ditributions if you know how to install dependencies.\n\n# Requirements\n1) Python libraries: pyperclip \u0026 selenium.\n2) Linux packages: xclip, xsel \u0026 wl-clipboard.\n3) Google Chrome or Chromium.\n\n# Installation\n- There is an installer for the requirements (for Debian), but you can install them manually (better to install python libraries in a venv) \u0026 skip step (1). \u003cbr\u003e\n- Open the terminal in the program's directory and:\n1) type: ````python install_requirements.py```` (or python3), and wait.\n2) A \u003cb\u003e'venv'\u003c/b\u003e folder should appear, now before executing the program, activate the venv: ````source venv/bin/activate````\n2) Download \u0026 install google chrome: https://www.google.com/chrome/ (flatpak repository may cause issues!); or Chromium.\n\n# Examples\n-For brief instructions, type in the terminal: ````python google_translate.py -h```` \u003cbr\u003e\n### 1) Example 1:\n- This is the simplest command: \u003cbr\u003e\n````\npython google_translate.py -i images -l en_ar \u003cbr\u003e\n````\n- The argument \u003cb\u003e'-i images'\u003c/b\u003e is the folder containing the images, it must be inside the program folder, otherwise use absolute path. \u003cbr\u003e\n- The argument \u003cb\u003e'-l en_ar'\u003c/b\u003e means translating from english (en) to arabic (ar), separated with an underscore. \u003cbr\u003e\n- To find your language's shortcut, see the \u003cb\u003e'languages_list.txt'\u003c/b\u003e file. \u003cbr\u003e\n- When this command is executed, google chrome will show up \u0026 start translating on its own (it's not a virus o_o). \u003cbr\u003e \u003cbr\u003e\n\n### 2) Example 2:\n````\npython google_translate.py -i images -l en_ar -o output.txt -q 60 -k true\n````\n- The argument \u003cb\u003e'-o output.txt'\u003c/b\u003e is where your translated text will be saved, here it will be saved inside the program folder, otherwise use absolute path. \u003cbr\u003e\n- The argument \u003cb\u003e'-q 60'\u003c/b\u003e means: when the translation finishes, how much time to wait before closing the browser \u0026 exiting the program (in seconds). \u003cbr\u003e\n- The argument \u003cb\u003e'-k true'\u003c/b\u003e is an HTTP connection parameter; when true, the client binding keeps the\n same connection for every request, which \u003cb\u003emay\u003c/b\u003e speed up the process.\n\n# Exiting venv \u0026 uninstallation\n1) To deactivate the venv, simply type: ````deactivate````\n2) To remove the venv, simply delete the folder.\n3) A \u003cb\u003eselenium\u003c/b\u003e folder may be left in the \u003cb\u003e~/.cache\u003c/b\u003e directory, delete it.\n\n# What's new!\n- Errors handling.\n- No need to specify the \u003cb\u003e'-c'\u003c/b\u003e argument anymore (c: time between upload \u0026 copy).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmohyoo%2Fgoogle-multiple-images-tanslator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmohyoo%2Fgoogle-multiple-images-tanslator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmohyoo%2Fgoogle-multiple-images-tanslator/lists"}