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....
- Host: GitHub
- URL: https://github.com/reljicd/python-playground
- Owner: reljicd
- Created: 2017-11-22T19:52:54.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-16T18:36:43.000Z (over 7 years ago)
- Last Synced: 2025-07-18T04:30:16.585Z (5 months ago)
- Topics: algorithm, algorithms, challenges, pytest, python, python3, test
- Language: Python
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```