Skip to content
This repository has been archived by the owner on Oct 13, 2023. It is now read-only.

alex7c4/tasks

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Different tasks.


Place to publish tasks execution.

  • other - Some random tasks.
  • task_1 - Script to calculate quality of work of a classifier.
  • task_2 - Test triangle.
  • task_3 - Verification of a web site with Selenium.

Preparations for Ubuntu 16:

sudo apt-get update
sudo apt-get install python-pip python-dev build-essential
sudo pip install -U pip setuptools virtualenv
virtualenv --clear .venv && source .venv/bin/activate
pip install -U -r requirements.txt

Preparations for Windows:

1. Download latest Python 2.x from www.python.org.
2. During installation enable action 'Add python.exe to Path'.
3. In CMD:
> python -m pip install -U pip setuptools virtualenv
> virtualenv --clear .venv
> .venv\Scripts\activate
> pip install -U -r requirements.txt

If you need proxy for CMD:
set http_proxy=http://<proxy_IP>:<proxy_port>
set https_proxy=http://<proxy_IP>:<proxy_port>

To run only Code Style checks:

flake8 tasks/
pylint tasks/

Releases

No releases published

Packages

No packages published

Languages