{"id":16545464,"url":"https://github.com/hasansezertasan/chrome-version","last_synced_at":"2025-03-16T19:32:36.748Z","repository":{"id":193409938,"uuid":"688745880","full_name":"hasansezertasan/chrome-version","owner":"hasansezertasan","description":"Detect the version of Chrome installed on Windows, Linux, Mac. Cross-platform using Python, native OS detection.","archived":false,"fork":false,"pushed_at":"2024-10-21T18:09:39.000Z","size":686,"stargazers_count":8,"open_issues_count":6,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-10-22T09:20:42.713Z","etag":null,"topics":["chrome","cli","pypi-package","pypi-reserved","python","tutorial","used-poetry","version"],"latest_commit_sha":null,"homepage":"https://hasansezertasan.github.io/chrome-version/","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/hasansezertasan.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":["hasansezertasan"]}},"created_at":"2023-09-08T02:39:03.000Z","updated_at":"2024-05-24T13:04:10.000Z","dependencies_parsed_at":"2023-12-21T18:27:27.834Z","dependency_job_id":"64536560-7373-411f-90d8-ddbd4357dc9f","html_url":"https://github.com/hasansezertasan/chrome-version","commit_stats":{"total_commits":26,"total_committers":3,"mean_commits":8.666666666666666,"dds":0.5,"last_synced_commit":"0c4acf6faceb0114de9c09d0a91adf87a48e6132"},"previous_names":["hasansezertasan/chrome-version"],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hasansezertasan%2Fchrome-version","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hasansezertasan%2Fchrome-version/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hasansezertasan%2Fchrome-version/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hasansezertasan%2Fchrome-version/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hasansezertasan","download_url":"https://codeload.github.com/hasansezertasan/chrome-version/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":221667528,"owners_count":16860621,"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":["chrome","cli","pypi-package","pypi-reserved","python","tutorial","used-poetry","version"],"created_at":"2024-10-11T19:07:00.073Z","updated_at":"2024-10-27T11:10:57.143Z","avatar_url":"https://github.com/hasansezertasan.png","language":"Python","funding_links":["https://github.com/sponsors/hasansezertasan"],"categories":[],"sub_categories":[],"readme":"# Chrome Version\n\n[![Coverage](https://img.shields.io/codecov/c/github/hasansezertasan/chrome-version)](https://codecov.io/gh/hasansezertasan/chrome-version)\n[![PyPI - Version](https://img.shields.io/pypi/v/chrome-version.svg)](https://pypi.org/project/chrome-version)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/chrome-version.svg)](https://pypi.org/project/chrome-version)\n[![License](https://img.shields.io/github/license/hasansezertasan/chrome-version.svg)](https://github.com/hasansezertasan/chrome-version/blob/main/LICENSE)\n[![Latest Commit](https://img.shields.io/github/last-commit/hasansezertasan/chrome-version)](https://github.com/hasansezertasan/chrome-version)\n\n[![Downloads](https://pepy.tech/badge/chrome-version)](https://pepy.tech/project/chrome-version)\n[![Downloads/Month](https://pepy.tech/badge/chrome-version/month)](https://pepy.tech/project/chrome-version)\n[![Downloads/Week](https://pepy.tech/badge/chrome-version/week)](https://pepy.tech/project/chrome-version)\n\nGet the version of Chrome installed on Windows, Linux, Mac. Cross-platform using Python, native OS detection, does not require Selenium.\n\n---\n\n## Table of Contents\n\n- [Chrome Version](#chrome-version)\n  - [Table of Contents](#table-of-contents)\n  - [Installation](#installation)\n  - [Usage](#usage)\n  - [Motivation](#motivation)\n  - [Features](#features)\n  - [Author](#author)\n  - [Disclaimer](#disclaimer)\n  - [License](#license)\n\n## Installation\n\n``` bash\npip install chrome-version\n```\n\n## Usage\n\nModule:\n\n```python\nimport chrome_version\nprint(chrome_version.get_chrome_version())\n# '103.0.5060.114'\n```\n\nCLI:\n\n```bash\nchrome-version\n103.0.5060.114\n```\n\n## Motivation\n\nTL;DR I don't want to copy and paste it again...\n\nAt first,\n\nI needed to get the Chrome version for a project I was working on, which was using [Undetected Chromedriver][untedected-chromedriver]. I found the gist below.\n\nWhen I used it in a variaty of projects, I decided to turn it into a module so I'll be free of copy/paste. It only have one functionality: getting the chrome version.\n\nThen,\n\nI decided to use it to learn more about:\n\n- Using [Poetry](https://python-poetry.org/) for packaging and dependency management.\n- Using scripts for CLI.\n- Versioning.\n- License management.\n- Documentation.\n- Publishing a module on PyPI.\n- Using GitHub Actions to automate the publishing process.\n- ...\n\nFinally,\n\nNow it's kind of a playground for me to learn more...\n\nOne other thing is that it's educational: A simple module is a good practice for me to learn how to build modules and publish them on PyPI and show others how easy it is.\n\n## Features\n\n- Cross-platform\n- No external dependencies\n- CLI\n- Module\n\n## Author\n\n- [Hasan Sezer Tasan](https://www.github.com/hasansezertasan), It's me :wave:\n- [Kory Becker](https://github.com/primaryobjects), owner of the original script.\n\n## Disclaimer\n\nBased on [chrome-version](https://gist.github.com/primaryobjects/d5346bf7a173dbded1a70375ff7461b4) by [Kory Becker](https://github.com/primaryobjects).\n\nThis package provides a CLI wrapper for the original project. All credit reserved to the author of the original code.\n\n## License\n\n`chrome-version` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.\n\n\u003c!-- Links --\u003e\n[untedected-chromedriver]: https://github.com/ultrafunkamsterdam/undetected-chromedriver\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhasansezertasan%2Fchrome-version","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhasansezertasan%2Fchrome-version","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhasansezertasan%2Fchrome-version/lists"}