Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 1.01 KB

README.md

File metadata and controls

37 lines (23 loc) · 1.01 KB

CSV Processing Exericse (Monthly Sales Reporting)

A command-line Python exercise which processes and synthesizes monthly sales report CSV files.

Installation

First, "fork" this upstream repository under your own control.

Then download your forked version of this repository using the GitHub.com online interface or the Git command-line interface. If you are using command-line Git, you can download it by "cloning" it:

git clone https://github.com/YOUR_USERNAME/monthly-sales-reporting-py.git

After downloading your forked repository, navigate into its root directory:

cd path/to/monthly-sales-reporting-py/

NOTE: all commands in this document assume you are running them from this root directory.

Usage

Run the application:

# For Homebrew-installed Python 3.x on Mac OS:
python3 sales_report.py

# All others:
python sales_report.py

Students, please pay attention to the license terms.