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
- Host: GitHub
- URL: https://github.com/gakurualex/jar
- Owner: GakuruAlex
- License: mit
- Created: 2025-01-23T15:40:59.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-01-23T16:47:09.000Z (12 months ago)
- Last Synced: 2025-01-23T17:23:12.409Z (12 months ago)
- Topics: cs50p, oops-in-python, pytest, python3
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)