Skip to content

Software developed to: Read sales tables; Check if the sales target has been reached; Identify the salesperson who has reached the target; Send an SMS informing that the target has been reached.

License

Notifications You must be signed in to change notification settings

LucasReb/sales-goal

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

47 Commits
 
 
 
 
 
 
 
 

Repository files navigation


Sales Goal

Sales Goal

Status: Finished ✅

Software designed to read sales tables, check if it has reached the sales goal, identify the salesperson who hit the goal and send a SMS notifying that it has reached the target.


License MIT

Technologies Used:

Technology Python Openpyxl Pandas Twilio
Version 3.9.6 3.0.7 1.2.4 6.63.0

How to run the application:

  1. Install all dependencies;

  2. Add your sales sheets for each month;

    1

  3. Create a free Twilio account;

  4. Get your account_sid, auth_token and your trial phone number;

    # Your Account SID from twilio.com/console
    account_sid = "W"
    
    # Your Auth Token from twilio.com/console
    auth_token = "X"
    
    # Trial phone number
    from_="Z",
    
  5. add your phone number to receive the SMS;

    # Your phone number
    to='Y',
    
  6. Update the sales target value in code;

    if (sales_table['Sales'] > 55000).any():
        seller = sales_table.loc[sales_table['Sales'] > 55000, "Seller"].values[0]
        sales = sales_table.loc[sales_table['Sales'] > 55000, "Sales"].values[0]
    
  7. Run.

SMS Template:

  • The software identifies and shows through SMS the salesperson who reached the goal and also how much he made in sales

git twilio message sales goal

License

This project is licensed under the MIT License - see the LICENSE page for details.

About

Software developed to: Read sales tables; Check if the sales target has been reached; Identify the salesperson who has reached the target; Send an SMS informing that the target has been reached.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages