/python-playground

Repo for various python scripts, exercises, challenges....

Primary LanguagePython

Python Playground

About

Repo for my experimentation with various python scripts, exercises, challenges....

Prerequisites

[Optional] Install virtual environment:

$ python -m virtualenv venv

[Optional] Activate virtual environment:

On macOS and Linux:

$ source venv/bin/activate

On Windows:

$ .\venv\Scripts\activate

Install dependencies:

$ pip install -r requirements.txt

Tests

Tests can be run by executing following command from the root of the project (dependencies for the project need to be installed, of course):

$ python -m pytest