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

https://github.com/gakurualex/jar

CS50's Introduction to Programming with Python, Problem Set 8, on OOP. Cookie Jar
https://github.com/gakurualex/jar

cs50p oops-in-python pytest python3

Last synced: 6 months ago
JSON representation

CS50's Introduction to Programming with Python, Problem Set 8, on OOP. Cookie Jar

Awesome Lists containing this project

README

          

# Cookie Jar #

Introduction to Programming with Python Problem set 8 on OOP.

[Solution readme](JAR.md)

## Prerequisite ##

Clone repo

```bash
git clone https://github.com/GakuruAlex/jar.git
```

Change directory to project dir

```bash
cd jar
```

Create virtual env

```bash
python3 -m venv envname
```

Activate env (Linux)

```bash
source envname/bin/activate
```

Install requirements

```bash
pip install -r requirements.txt
```

## Usage ##

Run program

```bash
python3 jar.py
```

Running tests

```bash
pytest -v
```

## Author ##

[GakuruAlex](https://github.com/GakuruAlex)

## License ##

[License](LICENSE)