This repository displays the benefits of using Python and the Jupyter Notebook in a financial statement audit.
If you haven't already installed Python 3 and Jupyter, the easiest way to install both is by using Anaconda.
TODO: Write usage instructions
- How to reshape SAP Data for your audit
- How to reshape Quickbooks General Ledger Data for your audit
- How to split a DataFrame (csv, xlsx, other) using pandas and groupby
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Add your changes:
git add *
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
TODO: Write history
** Consider adding an init method to Test_Procedures, to reduce data entry:
def __init__(self, GL_Detail, Log_File=None, JE_Column=None, Output=None):
# Checks to make sure data is valid
assert JE_Column in GL_Detail.columns
self.GL_Detail = GL_Detail
...
def run():
# Execute all procedures in module
TODO: Write credits
Apache 2.0