Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 717 Bytes

README.md

File metadata and controls

27 lines (22 loc) · 717 Bytes

floss - a financial data conversion tool

  • Converts stock data from .csv and .txt files to json
  • Default refresh rate is 1 second.

Installation

Place floss.py in the root folder of your project directory.

Instructions

  1. Run the program by specifying the input path and output path. (use -s to adjust refresh rate)
  2. Request data by writing a file path to chosen input file.
  3. Retrieve data by reading from chosen output file.

Usage

python floss.py [-s speed] <input_path> <output_path>

Example Instructions

To use the default program speed.

python floss stock-data.csv output.json

To change the program speed.

python floss -s 0.5 stock-data.csv output.json