An open API service indexing awesome lists of open source software.

https://github.com/reljicd/python-playground

Repo for various python scripts, exercises, challenges....
https://github.com/reljicd/python-playground

algorithm algorithms challenges pytest python python3 test

Last synced: 4 months ago
JSON representation

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

Awesome Lists containing this project

README

          

# Python Playground

## About

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

## Prerequisites

\[Optional\] Install virtual environment:

```bash
$ python -m virtualenv venv
```

\[Optional\] Activate virtual environment:

On macOS and Linux:
```bash
$ source venv/bin/activate
```

On Windows:
```bash
$ .\venv\Scripts\activate
```

Install dependencies:
```bash
$ 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):

```bash
$ python -m pytest
```