Skip to content

Latest commit

 

History

History
50 lines (30 loc) · 1.35 KB

README.md

File metadata and controls

50 lines (30 loc) · 1.35 KB

Earnings Tracker

This project is a simple earnings tracker program in both Go and Python. It generates an earnings summary and includes text-to-speech functionality for an interactive experience.

Features
  • Displays daily earnings summary in the console.
  • Utilizes text-to-speech functionality for an interactive experience, and generates an audio .mp3 file.
Go Version

The Go version of the program uses the following external packages:

Python Version

The Python version of the program uses the following external library:

  • gtts: Google Text-to-Speech library for Python.

How to Run

Go program
  1. Ensure you have Go installed on your machine.

  2. Run the following commands in the terminal:

    go run main.go
  3. The program will generate a daily earnings summary and play the audio using the default system player.

Python program
  1. Ensure you have Python installed on your machine.

  2. Install the required library by running:

    pip install gtts
  3. Run the following command in the terminal:

    python earn.py
  4. The program will generate a daily earnings summary and play the audio using the default system player.