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.
- Displays daily earnings summary in the console.
- Utilizes text-to-speech functionality for an interactive experience, and generates an audio
.mp3
file.
The Go version of the program uses the following external packages:
- github.com/faiface/beep: Audio playback and MP3 decoding library for Go.
The Python version of the program uses the following external library:
- gtts: Google Text-to-Speech library for Python.
-
Ensure you have Go installed on your machine.
-
Run the following commands in the terminal:
go run main.go
-
The program will generate a daily earnings summary and play the audio using the default system player.
-
Ensure you have Python installed on your machine.
-
Install the required library by running:
pip install gtts
-
Run the following command in the terminal:
python earn.py
-
The program will generate a daily earnings summary and play the audio using the default system player.