Have you searched if there an existing feature request for this?
Feature description
Is your feature request related to a problem? Please describe.
Currently, there is no way to quickly check the installed version of Scrapling from the command line. Users have to resort to pip show scrapling or Python one-liners like python -c "import scrapling; print(scrapling.__version__)". This is inconvenient, especially when debugging, reporting bugs, or writing documentation that references a specific version.
Describe the solution you'd like
Add a --version flag to the CLI that prints the current Scrapling version and exits. For example:
$ scrapling --version
Scrapling, version 0.4.8
Have you searched if there an existing feature request for this?
Feature description
Is your feature request related to a problem? Please describe.
Currently, there is no way to quickly check the installed version of Scrapling from the command line. Users have to resort to
pip show scraplingor Python one-liners likepython -c "import scrapling; print(scrapling.__version__)". This is inconvenient, especially when debugging, reporting bugs, or writing documentation that references a specific version.Describe the solution you'd like
Add a
--versionflag to the CLI that prints the current Scrapling version and exits. For example: