Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 698 Bytes

README.md

File metadata and controls

38 lines (26 loc) · 698 Bytes

Scraping Common Bot

Description

Scraping common bot python library is a project that contains selenium common functionality. The project can be used for scraping or automation testing functionalities.

Lint

pylint -f colorized src/scraping_common_bot

Build

  • Before building you need to define a git tag, that git tag will be used as version:
git tag 1.0.0
tox -e build
  • After that you can install also on local the same version:
pip install -e .
pipenv install -e .

Publish

  • To publish the package run this:
tox -e publish
tox -e publish -- --repository pypi
tox -av

More info here