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

https://github.com/gakurualex/seasons

CS50's Introduction to Programming with Python Problem Set 8. Calculate how old a person is in minutes.
https://github.com/gakurualex/seasons

cs50problemsets datetime inflect pytest python regular-expression timedelta

Last synced: 3 months ago
JSON representation

CS50's Introduction to Programming with Python Problem Set 8. Calculate how old a person is in minutes.

Awesome Lists containing this project

README

          

# Seasons of Love #

CS50'S Introduction to Programming with Python , Problem Set 8

A program that prompts the user for their date of birth in YYYY-MM-DD format and then sings / prints how old they are in minutes, rounded to the nearest integer, using English words instead of numerals, just like the song from Rent, without any and between words.

# Prerequisite #

Clone repo

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

Change dir to repo

```bash
cd seasons
```

Create virtual env

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

Activate env

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

Install requirements

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