https://github.com/dougsoftware/bonus-analysis
Application that consumes databases in excel spreadsheet format, and analyzes the data in order to find the employee who sold the most, when found an SMS will be sent.
https://github.com/dougsoftware/bonus-analysis
Last synced: 10 months ago
JSON representation
Application that consumes databases in excel spreadsheet format, and analyzes the data in order to find the employee who sold the most, when found an SMS will be sent.
- Host: GitHub
- URL: https://github.com/dougsoftware/bonus-analysis
- Owner: dougsoftware
- License: mit
- Created: 2023-04-07T14:07:23.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-07T15:33:42.000Z (about 3 years ago)
- Last Synced: 2025-07-05T11:44:20.446Z (12 months ago)
- Language: Python
- Size: 158 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bonus-analysis
Application that consumes databases in Excel spreadsheet format, and analyzes the data in order to find the employee who sold the most, when found an SMS will be sent.
### Dependencies
- pandas
- openpyxl
- twilio
- python-dotenv
### Install dependencies
```bash
pip install pandas openpyxl twilio python-dotenv
```
### Create Twilio account
https://www.twilio.com/
### Create `.env` file
```txt
// .env
ACCOUNT_SID='YOUR TWILIO ACCOUNT SID'
AUTH_TOKEN='YOUR TWILIO AUTH TOKEN'
TWILIO_PHONE_NUMBER='YOUR TWILIO PHONE NUMBER'
MY_PHONE_NUMBER='PHONE NUMBER TO SEN MESSAGE'
```