Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 1.14 KB

README.md

File metadata and controls

25 lines (20 loc) · 1.14 KB

FinancialToolbox

This project aims to create tools to create, interact with and analyse financial data in an accessible fashion.

convertPP.py

This Python script is intended as a tool to convert Peer2Peer lending transactional data exports to a format with which the portfolio tracker PortfolioPerformance can work.

Supported platforms

The following services are supported for the time being (this is no investment advice whatsoever):

  1. Fastinvest

Prerequisites

  • Python3 is installed
  • the following packages are available:
    • xlrd
    • csv
    • sys
    • getopt

Usage

  1. print the help: convertPP.py -h
  2. yields: convertPP.py -i -o <outputfile
  3. run against the Excel file 'abc.xlsx' and store in 'abc.csv' (both in the current location of your terminal): convertPP.py -i abc.xlsx -o abc.csv

Hints

The .gitignore file specifies the directory wdir, wherein you can place personal files while working with the project. Those files will not be considered by git and hence should not make it into the git repository on GitHub.