hasansezertasan / chrome-version

Detect the version of Chrome installed on Windows, Linux, Mac. Cross-platform using Python, native OS detection.

Home Page:https://hasansezertasan.github.io/chrome-version/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Chrome Version

Coverage PyPI - Version PyPI - Python Version License Latest Commit

Downloads Downloads/Month Downloads/Week

Get the version of Chrome installed on Windows, Linux, Mac. Cross-platform using Python, native OS detection, does not require Selenium.


Table of Contents

Installation

pip install chrome-version

Usage

Module:

import chrome_version
print(chrome_version.get_chrome_version())
# '103.0.5060.114'

CLI:

chrome-version
103.0.5060.114

Motivation

TL;DR I don't want to copy and paste it again...

At first,

I needed to get the Chrome version for a project I was working on, which was using Undetected Chromedriver. I found the gist below.

When 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.

Then,

I decided to use it to learn more about:

  • Using Poetry for packaging and dependency management.
  • Using scripts for CLI.
  • Versioning.
  • License management.
  • Documentation.
  • Publishing a module on PyPI.
  • Using GitHub Actions to automate the publishing process.
  • ...

Finally,

Now it's kind of a playground for me to learn more...

One 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.

Features

  • Cross-platform
  • No external dependencies
  • CLI
  • Module

Author

Disclaimer

Based on chrome-version by Kory Becker.

This package provides a CLI wrapper for the original project. All credit reserved to the author of the original code.

License

chrome-version is distributed under the terms of the MIT license.

About

Detect the version of Chrome installed on Windows, Linux, Mac. Cross-platform using Python, native OS detection.

https://hasansezertasan.github.io/chrome-version/

License:MIT License


Languages

Language:Python 100.0%